From 25c50cbb13690d950915ccd33c805568fce47729 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 f03417f8..7ee1bb54 100644 --- a/grammar.js +++ b/grammar.js @@ -137,7 +137,6 @@ module.exports = grammar({ $.macro_invocation, $.macro_definition, $.empty_statement, - $.attribute_item, $.inner_attribute_item, $.mod_item, $.foreign_mod_item, @@ -269,6 +268,7 @@ module.exports = grammar({ ), mod_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), 'mod', field('name', $.identifier), @@ -279,6 +279,7 @@ module.exports = grammar({ ), foreign_mod_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), $.extern_modifier, choice( @@ -294,6 +295,7 @@ module.exports = grammar({ ), struct_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), 'struct', field('name', $._type_identifier), @@ -313,6 +315,7 @@ module.exports = grammar({ ), union_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), 'union', field('name', $._type_identifier), @@ -322,6 +325,7 @@ module.exports = grammar({ ), enum_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), 'enum', field('name', $._type_identifier), @@ -376,6 +380,7 @@ module.exports = grammar({ ), extern_crate_declaration: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), 'extern', $.crate, @@ -388,6 +393,7 @@ module.exports = grammar({ ), const_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), 'const', field('name', $.identifier), @@ -403,6 +409,7 @@ module.exports = grammar({ ), static_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), 'static', @@ -421,6 +428,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', @@ -489,6 +499,7 @@ module.exports = grammar({ ), impl_item: $ => seq( + repeat($.attribute_item), optional('unsafe'), 'impl', field('type_parameters', optional($.type_parameters)), @@ -507,6 +518,7 @@ module.exports = grammar({ ), trait_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), optional('unsafe'), 'trait', @@ -518,6 +530,7 @@ module.exports = grammar({ ), associated_type: $ => seq( + repeat($.attribute_item), 'type', field('name', $._type_identifier), field('type_parameters', optional($.type_parameters)), @@ -598,6 +611,7 @@ module.exports = grammar({ )), let_declaration: $ => seq( + repeat($.attribute_item), 'let', optional($.mutable_specifier), field('pattern', $._pattern), @@ -617,6 +631,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 d254ba18..23b08399 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -1234,41 +1234,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 @@ -1277,7 +1277,7 @@ mod macos_only {} arguments: (token_tree (identifier) (identifier)))) - (attribute_item + (inner_attribute_item (attribute (scoped_identifier path: (identifier) @@ -1358,25 +1358,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))) @@ -1447,13 +1447,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 9a51d0adf1e9eb75989ca00b1b1595ed6318988a Mon Sep 17 00:00:00 2001 From: Antonin Delpeuch Date: Wed, 19 Mar 2025 10:58:13 +0100 Subject: [PATCH 2/2] Run tree-sitter generate --- src/grammar.json | 116 +- src/node-types.json | 80 +- src/parser.c | 248575 +++++++++++++++++++++++------------------ 3 files changed, 137295 insertions(+), 111476 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 53e0fd72..92a5004d 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -89,10 +89,6 @@ "type": "SYMBOL", "name": "empty_statement" }, - { - "type": "SYMBOL", - "name": "attribute_item" - }, { "type": "SYMBOL", "name": "inner_attribute_item" @@ -1241,6 +1237,13 @@ "mod_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -1287,6 +1290,13 @@ "foreign_mod_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -1345,6 +1355,13 @@ "struct_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -1453,6 +1470,13 @@ "union_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -1518,6 +1542,13 @@ "enum_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -1973,6 +2004,13 @@ "extern_crate_declaration": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -2035,6 +2073,13 @@ "const_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -2105,6 +2150,13 @@ "static_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -2199,6 +2251,13 @@ "type_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -2284,6 +2343,13 @@ "function_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -2403,6 +2469,13 @@ "function_signature_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -2745,6 +2818,13 @@ "impl_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -2869,6 +2949,13 @@ "trait_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -2962,6 +3049,13 @@ "associated_type": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "STRING", "value": "type" @@ -3399,6 +3493,13 @@ "let_declaration": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "STRING", "value": "let" @@ -3507,6 +3608,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 0ef0838c..76425ddd 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 @@ -658,9 +654,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "where_clause", "named": true @@ -1393,9 +1393,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "visibility_modifier", "named": true @@ -1576,6 +1580,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "visibility_modifier", "named": true @@ -1700,6 +1708,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "crate", "named": true @@ -1994,6 +2006,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "extern_modifier", "named": true @@ -2073,6 +2089,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "function_modifiers", "named": true @@ -2156,6 +2176,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "function_modifiers", "named": true @@ -2496,9 +2520,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "where_clause", "named": true @@ -2647,9 +2675,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "mutable_specifier", "named": true @@ -2983,9 +3015,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "visibility_modifier", "named": true @@ -3731,6 +3767,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "mutable_specifier", "named": true @@ -3838,6 +3878,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "visibility_modifier", "named": true @@ -4193,6 +4237,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "visibility_modifier", "named": true @@ -4457,6 +4505,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "visibility_modifier", "named": true @@ -4589,6 +4641,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "visibility_modifier", "named": true @@ -4742,9 +4798,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 ba87a65c..19179e2c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* Automatically generated by tree-sitter v0.25.2 (6e0618704ad758ba2ea5822faa80bcd36fbeba3d) */ +/* Automatically generated by tree-sitter v0.25.3 */ #include "tree_sitter/parser.h" @@ -6,18 +6,18 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 3785 -#define LARGE_STATE_COUNT 1054 +#define LANGUAGE_VERSION 15 +#define STATE_COUNT 4307 +#define LARGE_STATE_COUNT 1208 #define SYMBOL_COUNT 349 #define ALIAS_COUNT 4 #define TOKEN_COUNT 155 #define EXTERNAL_TOKEN_COUNT 10 #define FIELD_COUNT 31 -#define MAX_ALIAS_SEQUENCE_LENGTH 10 +#define MAX_ALIAS_SEQUENCE_LENGTH 11 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 293 -#define SUPERTYPE_COUNT 0 +#define PRODUCTION_ID_COUNT 358 +#define SUPERTYPE_COUNT 5 enum ts_symbol_identifiers { sym_identifier = 1, @@ -342,9 +342,9 @@ enum ts_symbol_identifiers { aux_sym_token_tree_pattern_repeat1 = 320, aux_sym_token_tree_repeat1 = 321, aux_sym__non_special_token_repeat1 = 322, - aux_sym_declaration_list_repeat1 = 323, - aux_sym_enum_variant_list_repeat1 = 324, - aux_sym_enum_variant_list_repeat2 = 325, + aux_sym_mod_item_repeat1 = 323, + aux_sym_declaration_list_repeat1 = 324, + aux_sym_enum_variant_list_repeat1 = 325, aux_sym_field_declaration_list_repeat1 = 326, aux_sym_ordered_field_declaration_list_repeat1 = 327, aux_sym_function_modifiers_repeat1 = 328, @@ -698,9 +698,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", @@ -1054,9 +1054,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, @@ -2384,15 +2384,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, }, @@ -2726,142 +2726,207 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [153] = {.index = 203, .length = 2}, [154] = {.index = 205, .length = 1}, [155] = {.index = 206, .length = 2}, - [156] = {.index = 112, .length = 1}, - [157] = {.index = 208, .length = 2}, - [158] = {.index = 210, .length = 2}, - [159] = {.index = 212, .length = 1}, - [161] = {.index = 213, .length = 2}, - [162] = {.index = 215, .length = 3}, - [163] = {.index = 215, .length = 3}, - [164] = {.index = 218, .length = 2}, - [165] = {.index = 220, .length = 4}, - [166] = {.index = 224, .length = 3}, - [167] = {.index = 227, .length = 4}, - [168] = {.index = 231, .length = 2}, - [169] = {.index = 233, .length = 3}, - [170] = {.index = 231, .length = 2}, - [171] = {.index = 233, .length = 3}, - [172] = {.index = 236, .length = 3}, - [173] = {.index = 239, .length = 3}, - [174] = {.index = 242, .length = 3}, - [175] = {.index = 245, .length = 4}, - [176] = {.index = 242, .length = 3}, - [177] = {.index = 245, .length = 4}, - [178] = {.index = 239, .length = 3}, - [179] = {.index = 249, .length = 2}, - [180] = {.index = 251, .length = 2}, - [181] = {.index = 253, .length = 2}, - [182] = {.index = 255, .length = 2}, - [183] = {.index = 257, .length = 1}, - [184] = {.index = 258, .length = 2}, - [185] = {.index = 260, .length = 3}, - [186] = {.index = 263, .length = 2}, - [187] = {.index = 265, .length = 2}, - [188] = {.index = 206, .length = 2}, - [189] = {.index = 267, .length = 4}, - [190] = {.index = 271, .length = 2}, - [191] = {.index = 273, .length = 3}, - [192] = {.index = 276, .length = 3}, - [193] = {.index = 279, .length = 3}, - [194] = {.index = 282, .length = 3}, - [195] = {.index = 285, .length = 4}, - [196] = {.index = 289, .length = 2}, - [197] = {.index = 291, .length = 2}, - [198] = {.index = 291, .length = 2}, - [199] = {.index = 293, .length = 3}, - [200] = {.index = 296, .length = 4}, - [201] = {.index = 300, .length = 3}, - [202] = {.index = 258, .length = 2}, - [203] = {.index = 303, .length = 2}, - [204] = {.index = 305, .length = 3}, - [205] = {.index = 308, .length = 3}, - [206] = {.index = 311, .length = 2}, - [207] = {.index = 313, .length = 3}, - [208] = {.index = 206, .length = 2}, - [209] = {.index = 316, .length = 3}, - [210] = {.index = 319, .length = 2}, - [211] = {.index = 321, .length = 2}, - [212] = {.index = 323, .length = 3}, - [213] = {.index = 326, .length = 3}, - [214] = {.index = 329, .length = 2}, - [215] = {.index = 331, .length = 4}, - [216] = {.index = 335, .length = 5}, - [217] = {.index = 340, .length = 4}, - [218] = {.index = 344, .length = 3}, - [219] = {.index = 344, .length = 3}, - [220] = {.index = 347, .length = 3}, - [221] = {.index = 350, .length = 4}, - [222] = {.index = 347, .length = 3}, - [223] = {.index = 350, .length = 4}, - [224] = {.index = 354, .length = 4}, - [225] = {.index = 354, .length = 4}, - [226] = {.index = 358, .length = 3}, - [227] = {.index = 361, .length = 3}, - [228] = {.index = 364, .length = 3}, - [229] = {.index = 367, .length = 2}, - [230] = {.index = 369, .length = 2}, - [231] = {.index = 129, .length = 2}, - [232] = {.index = 371, .length = 3}, - [233] = {.index = 374, .length = 2}, - [234] = {.index = 376, .length = 3}, - [235] = {.index = 374, .length = 2}, - [236] = {.index = 376, .length = 3}, - [237] = {.index = 379, .length = 3}, - [238] = {.index = 382, .length = 4}, + [156] = {.index = 208, .length = 2}, + [157] = {.index = 200, .length = 2}, + [158] = {.index = 202, .length = 1}, + [159] = {.index = 210, .length = 1}, + [160] = {.index = 211, .length = 1}, + [161] = {.index = 212, .length = 2}, + [162] = {.index = 112, .length = 1}, + [163] = {.index = 214, .length = 2}, + [164] = {.index = 216, .length = 2}, + [165] = {.index = 218, .length = 1}, + [167] = {.index = 219, .length = 2}, + [168] = {.index = 221, .length = 3}, + [169] = {.index = 221, .length = 3}, + [170] = {.index = 224, .length = 2}, + [171] = {.index = 226, .length = 4}, + [172] = {.index = 230, .length = 3}, + [173] = {.index = 233, .length = 4}, + [174] = {.index = 237, .length = 2}, + [175] = {.index = 239, .length = 3}, + [176] = {.index = 237, .length = 2}, + [177] = {.index = 239, .length = 3}, + [178] = {.index = 242, .length = 3}, + [179] = {.index = 245, .length = 3}, + [180] = {.index = 248, .length = 3}, + [181] = {.index = 251, .length = 4}, + [182] = {.index = 248, .length = 3}, + [183] = {.index = 251, .length = 4}, + [184] = {.index = 245, .length = 3}, + [185] = {.index = 255, .length = 2}, + [186] = {.index = 257, .length = 2}, + [187] = {.index = 259, .length = 2}, + [188] = {.index = 261, .length = 2}, + [189] = {.index = 263, .length = 1}, + [190] = {.index = 264, .length = 2}, + [191] = {.index = 266, .length = 3}, + [192] = {.index = 269, .length = 2}, + [193] = {.index = 271, .length = 2}, + [194] = {.index = 212, .length = 2}, + [195] = {.index = 273, .length = 4}, + [196] = {.index = 277, .length = 2}, + [197] = {.index = 279, .length = 3}, + [198] = {.index = 282, .length = 3}, + [199] = {.index = 285, .length = 3}, + [200] = {.index = 288, .length = 3}, + [201] = {.index = 291, .length = 4}, + [202] = {.index = 295, .length = 2}, + [203] = {.index = 297, .length = 2}, + [204] = {.index = 297, .length = 2}, + [205] = {.index = 299, .length = 3}, + [206] = {.index = 302, .length = 4}, + [207] = {.index = 306, .length = 3}, + [208] = {.index = 264, .length = 2}, + [209] = {.index = 309, .length = 2}, + [210] = {.index = 311, .length = 3}, + [211] = {.index = 314, .length = 3}, + [212] = {.index = 317, .length = 2}, + [213] = {.index = 319, .length = 3}, + [214] = {.index = 322, .length = 3}, + [215] = {.index = 325, .length = 2}, + [216] = {.index = 327, .length = 3}, + [217] = {.index = 330, .length = 2}, + [218] = {.index = 332, .length = 2}, + [219] = {.index = 334, .length = 2}, + [220] = {.index = 336, .length = 1}, + [221] = {.index = 212, .length = 2}, + [222] = {.index = 337, .length = 3}, + [223] = {.index = 340, .length = 2}, + [224] = {.index = 342, .length = 2}, + [225] = {.index = 344, .length = 3}, + [226] = {.index = 347, .length = 3}, + [227] = {.index = 350, .length = 2}, + [228] = {.index = 352, .length = 4}, + [229] = {.index = 356, .length = 5}, + [230] = {.index = 361, .length = 4}, + [231] = {.index = 365, .length = 3}, + [232] = {.index = 365, .length = 3}, + [233] = {.index = 368, .length = 3}, + [234] = {.index = 371, .length = 4}, + [235] = {.index = 368, .length = 3}, + [236] = {.index = 371, .length = 4}, + [237] = {.index = 375, .length = 4}, + [238] = {.index = 375, .length = 4}, [239] = {.index = 379, .length = 3}, - [240] = {.index = 382, .length = 4}, - [241] = {.index = 386, .length = 4}, - [242] = {.index = 390, .length = 4}, - [243] = {.index = 394, .length = 3}, - [244] = {.index = 397, .length = 4}, - [245] = {.index = 401, .length = 2}, - [246] = {.index = 403, .length = 3}, - [247] = {.index = 406, .length = 3}, - [248] = {.index = 409, .length = 3}, - [249] = {.index = 412, .length = 4}, - [250] = {.index = 416, .length = 2}, - [251] = {.index = 418, .length = 3}, - [252] = {.index = 421, .length = 4}, - [253] = {.index = 425, .length = 3}, - [254] = {.index = 428, .length = 3}, - [255] = {.index = 431, .length = 2}, - [256] = {.index = 433, .length = 3}, - [257] = {.index = 436, .length = 5}, - [258] = {.index = 441, .length = 4}, - [259] = {.index = 441, .length = 4}, - [260] = {.index = 445, .length = 3}, - [261] = {.index = 448, .length = 3}, - [262] = {.index = 451, .length = 3}, - [263] = {.index = 454, .length = 3}, - [264] = {.index = 457, .length = 2}, - [265] = {.index = 459, .length = 3}, - [266] = {.index = 459, .length = 3}, - [267] = {.index = 462, .length = 3}, - [268] = {.index = 465, .length = 4}, - [269] = {.index = 462, .length = 3}, - [270] = {.index = 465, .length = 4}, - [271] = {.index = 469, .length = 4}, - [272] = {.index = 469, .length = 4}, - [273] = {.index = 473, .length = 4}, - [274] = {.index = 477, .length = 5}, - [275] = {.index = 482, .length = 4}, - [276] = {.index = 486, .length = 2}, - [277] = {.index = 488, .length = 3}, - [278] = {.index = 491, .length = 4}, - [279] = {.index = 495, .length = 4}, - [280] = {.index = 499, .length = 3}, - [281] = {.index = 502, .length = 4}, - [282] = {.index = 506, .length = 4}, - [283] = {.index = 510, .length = 3}, - [284] = {.index = 513, .length = 4}, - [285] = {.index = 513, .length = 4}, - [286] = {.index = 517, .length = 5}, - [287] = {.index = 522, .length = 4}, - [288] = {.index = 526, .length = 5}, - [289] = {.index = 531, .length = 4}, - [290] = {.index = 535, .length = 4}, - [291] = {.index = 539, .length = 3}, - [292] = {.index = 542, .length = 5}, + [240] = {.index = 382, .length = 3}, + [241] = {.index = 385, .length = 3}, + [242] = {.index = 388, .length = 2}, + [243] = {.index = 390, .length = 2}, + [244] = {.index = 129, .length = 2}, + [245] = {.index = 392, .length = 3}, + [246] = {.index = 395, .length = 2}, + [247] = {.index = 397, .length = 3}, + [248] = {.index = 395, .length = 2}, + [249] = {.index = 397, .length = 3}, + [250] = {.index = 400, .length = 3}, + [251] = {.index = 403, .length = 4}, + [252] = {.index = 400, .length = 3}, + [253] = {.index = 403, .length = 4}, + [254] = {.index = 407, .length = 4}, + [255] = {.index = 411, .length = 4}, + [256] = {.index = 415, .length = 3}, + [257] = {.index = 418, .length = 4}, + [258] = {.index = 422, .length = 2}, + [259] = {.index = 424, .length = 3}, + [260] = {.index = 427, .length = 3}, + [261] = {.index = 430, .length = 3}, + [262] = {.index = 433, .length = 4}, + [263] = {.index = 437, .length = 2}, + [264] = {.index = 439, .length = 3}, + [265] = {.index = 442, .length = 4}, + [266] = {.index = 446, .length = 3}, + [267] = {.index = 449, .length = 3}, + [268] = {.index = 452, .length = 2}, + [269] = {.index = 454, .length = 2}, + [270] = {.index = 456, .length = 2}, + [271] = {.index = 458, .length = 3}, + [272] = {.index = 388, .length = 2}, + [273] = {.index = 461, .length = 2}, + [274] = {.index = 463, .length = 3}, + [275] = {.index = 466, .length = 3}, + [276] = {.index = 469, .length = 2}, + [277] = {.index = 471, .length = 3}, + [278] = {.index = 474, .length = 2}, + [279] = {.index = 476, .length = 3}, + [280] = {.index = 479, .length = 5}, + [281] = {.index = 484, .length = 4}, + [282] = {.index = 484, .length = 4}, + [283] = {.index = 488, .length = 3}, + [284] = {.index = 491, .length = 3}, + [285] = {.index = 494, .length = 3}, + [286] = {.index = 497, .length = 3}, + [287] = {.index = 500, .length = 2}, + [288] = {.index = 502, .length = 3}, + [289] = {.index = 502, .length = 3}, + [290] = {.index = 505, .length = 3}, + [291] = {.index = 508, .length = 4}, + [292] = {.index = 505, .length = 3}, + [293] = {.index = 508, .length = 4}, + [294] = {.index = 512, .length = 4}, + [295] = {.index = 512, .length = 4}, + [296] = {.index = 516, .length = 4}, + [297] = {.index = 520, .length = 5}, + [298] = {.index = 525, .length = 4}, + [299] = {.index = 529, .length = 2}, + [300] = {.index = 531, .length = 3}, + [301] = {.index = 534, .length = 4}, + [302] = {.index = 538, .length = 4}, + [303] = {.index = 542, .length = 3}, + [304] = {.index = 545, .length = 4}, + [305] = {.index = 549, .length = 2}, + [306] = {.index = 551, .length = 3}, + [307] = {.index = 549, .length = 2}, + [308] = {.index = 551, .length = 3}, + [309] = {.index = 554, .length = 3}, + [310] = {.index = 557, .length = 4}, + [311] = {.index = 554, .length = 3}, + [312] = {.index = 557, .length = 4}, + [313] = {.index = 561, .length = 2}, + [314] = {.index = 563, .length = 3}, + [315] = {.index = 566, .length = 3}, + [316] = {.index = 569, .length = 3}, + [317] = {.index = 572, .length = 4}, + [318] = {.index = 576, .length = 2}, + [319] = {.index = 578, .length = 3}, + [320] = {.index = 581, .length = 4}, + [321] = {.index = 585, .length = 3}, + [322] = {.index = 588, .length = 4}, + [323] = {.index = 592, .length = 3}, + [324] = {.index = 595, .length = 4}, + [325] = {.index = 595, .length = 4}, + [326] = {.index = 599, .length = 5}, + [327] = {.index = 604, .length = 4}, + [328] = {.index = 608, .length = 5}, + [329] = {.index = 613, .length = 4}, + [330] = {.index = 617, .length = 3}, + [331] = {.index = 620, .length = 3}, + [332] = {.index = 623, .length = 3}, + [333] = {.index = 626, .length = 3}, + [334] = {.index = 626, .length = 3}, + [335] = {.index = 629, .length = 3}, + [336] = {.index = 632, .length = 4}, + [337] = {.index = 629, .length = 3}, + [338] = {.index = 632, .length = 4}, + [339] = {.index = 636, .length = 4}, + [340] = {.index = 636, .length = 4}, + [341] = {.index = 640, .length = 2}, + [342] = {.index = 642, .length = 3}, + [343] = {.index = 645, .length = 4}, + [344] = {.index = 649, .length = 4}, + [345] = {.index = 653, .length = 3}, + [346] = {.index = 656, .length = 4}, + [347] = {.index = 660, .length = 4}, + [348] = {.index = 664, .length = 3}, + [349] = {.index = 667, .length = 5}, + [350] = {.index = 672, .length = 4}, + [351] = {.index = 672, .length = 4}, + [352] = {.index = 676, .length = 4}, + [353] = {.index = 680, .length = 5}, + [354] = {.index = 685, .length = 4}, + [355] = {.index = 689, .length = 4}, + [356] = {.index = 693, .length = 3}, + [357] = {.index = 696, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3177,459 +3242,666 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 4}, {field_condition, 3}, [205] = - {field_length, 4}, + {field_pattern, 3}, [206] = + {field_bounds, 3}, + {field_name, 2}, + [208] = + {field_body, 4}, + {field_type, 3}, + [210] = + {field_argument, 3}, + [211] = + {field_length, 4}, + [212] = {field_name, 0}, {field_type, 2}, - [208] = + [214] = {field_name, 0}, {field_pattern, 2}, - [210] = + [216] = {field_element, 1}, {field_length, 3}, - [212] = + [218] = {field_pattern, 0}, - [213] = + [219] = {field_parameters, 2}, {field_return_type, 4}, - [215] = + [221] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [218] = + [224] = {field_name, 0}, {field_value, 2}, - [220] = + [226] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [224] = + [230] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [227] = + [233] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [231] = + [237] = {field_trait, 2}, {field_type, 4}, - [233] = + [239] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [236] = + [242] = {field_bounds, 1}, {field_default_type, 3}, {field_name, 0}, - [239] = + [245] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [242] = + [248] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [245] = + [251] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [249] = + [255] = {field_pattern, 2}, {field_type, 4}, - [251] = + [257] = {field_pattern, 2}, {field_value, 4}, - [253] = + [259] = {field_alternative, 4}, {field_pattern, 2}, - [255] = + [261] = {field_pattern, 0}, {field_value, 2}, - [257] = + [263] = {field_condition, 2}, - [258] = + [264] = {field_name, 2}, {field_type, 4}, - [260] = + [266] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 4}, - [263] = + [269] = {field_type, 1}, {field_type, 2, .inherited = true}, - [265] = + [271] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [267] = + [273] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [271] = + [277] = {field_name, 1}, {field_type, 4}, - [273] = + [279] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [276] = + [282] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [279] = + [285] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [282] = + [288] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [285] = + [291] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [289] = + [295] = {field_alias, 4}, {field_name, 2}, - [291] = + [297] = {field_field, 1}, {field_value, 3}, - [293] = + [299] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [296] = + [302] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [300] = + [306] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [303] = + [309] = {field_body, 5}, {field_name, 3}, - [305] = + [311] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [308] = + [314] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [311] = + [317] = {field_name, 3}, {field_parameters, 4}, - [313] = + [319] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [316] = + [322] = + {field_bounds, 4}, + {field_name, 2}, + {field_type_parameters, 3}, + [325] = + {field_type, 4}, + {field_type_parameters, 3}, + [327] = + {field_body, 5}, + {field_type, 4}, + {field_type_parameters, 3}, + [330] = + {field_body, 5}, + {field_type, 3}, + [332] = + {field_name, 3}, + {field_type_parameters, 4}, + [334] = + {field_body, 5}, + {field_name, 4}, + [336] = + {field_name, 4}, + [337] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [319] = + [340] = {field_name, 1}, {field_pattern, 3}, - [321] = + [342] = {field_parameters, 3}, {field_return_type, 5}, - [323] = + [344] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [326] = + [347] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [329] = + [350] = {field_name, 1}, {field_value, 3}, - [331] = + [352] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [335] = + [356] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [340] = + [361] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [344] = + [365] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [347] = + [368] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [350] = + [371] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [354] = + [375] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [358] = + [379] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [361] = + [382] = {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, - [364] = + [385] = {field_alternative, 5}, {field_pattern, 1}, {field_value, 3}, - [367] = + [388] = {field_name, 3}, {field_type, 5}, - [369] = + [390] = {field_type, 2}, {field_type, 3, .inherited = true}, - [371] = + [392] = {field_name, 1}, {field_type, 5}, {field_type_parameters, 2}, - [374] = + [395] = {field_trait, 3}, {field_type, 5}, - [376] = + [397] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, - [379] = + [400] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [382] = + [403] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [386] = + [407] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [390] = + [411] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [394] = + [415] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [397] = + [418] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [401] = + [422] = {field_name, 2}, {field_type, 5}, - [403] = + [424] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [406] = + [427] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [409] = + [430] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [412] = + [433] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [416] = + [437] = {field_alias, 5}, {field_name, 3}, - [418] = + [439] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [421] = + [442] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [425] = + [446] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [428] = + [449] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [431] = + [452] = + {field_pattern, 3}, + {field_type, 5}, + [454] = + {field_pattern, 3}, + {field_value, 5}, + [456] = + {field_alternative, 5}, + {field_pattern, 3}, + [458] = + {field_body, 6}, + {field_type, 4}, + {field_type_parameters, 3}, + [461] = + {field_body, 6}, + {field_name, 4}, + [463] = + {field_body, 6}, + {field_bounds, 5}, + {field_name, 4}, + [466] = + {field_body, 6}, + {field_name, 4}, + {field_type_parameters, 5}, + [469] = + {field_name, 4}, + {field_parameters, 5}, + [471] = + {field_body, 6}, + {field_name, 4}, + {field_parameters, 5}, + [474] = {field_name, 2}, {field_pattern, 4}, - [433] = + [476] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [436] = + [479] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [441] = + [484] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [445] = + [488] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [448] = + [491] = {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, - [451] = + [494] = {field_alternative, 6}, {field_pattern, 2}, {field_value, 4}, - [454] = + [497] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [457] = + [500] = {field_type, 3}, {field_type, 4, .inherited = true}, - [459] = + [502] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, - [462] = + [505] = {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [465] = + [508] = {field_body, 7}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [469] = + [512] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [473] = + [516] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [477] = + [520] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [482] = + [525] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [486] = + [529] = {field_name, 4}, {field_type, 6}, - [488] = + [531] = {field_name, 2}, {field_type, 6}, {field_type_parameters, 3}, - [491] = + [534] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [495] = + [538] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [499] = + [542] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [502] = + [545] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [506] = + [549] = + {field_trait, 4}, + {field_type, 6}, + [551] = + {field_body, 7}, + {field_trait, 4}, + {field_type, 6}, + [554] = + {field_trait, 4}, + {field_type, 6}, + {field_type_parameters, 3}, + [557] = + {field_body, 7}, + {field_trait, 4}, + {field_type, 6}, + {field_type_parameters, 3}, + [561] = + {field_name, 3}, + {field_type, 6}, + [563] = + {field_name, 3}, + {field_type, 6}, + {field_type_parameters, 4}, + [566] = + {field_body, 7}, + {field_bounds, 5}, + {field_name, 4}, + [569] = + {field_body, 7}, + {field_name, 4}, + {field_type_parameters, 5}, + [572] = + {field_body, 7}, + {field_bounds, 6}, + {field_name, 4}, + {field_type_parameters, 5}, + [576] = + {field_alias, 6}, + {field_name, 4}, + [578] = + {field_name, 4}, + {field_parameters, 6}, + {field_type_parameters, 5}, + [581] = + {field_body, 7}, + {field_name, 4}, + {field_parameters, 6}, + {field_type_parameters, 5}, + [585] = + {field_body, 7}, + {field_name, 4}, + {field_parameters, 5}, + [588] = {field_alternative, 7}, {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [510] = + [592] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [513] = + [595] = {field_body, 8}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [517] = + [599] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [522] = + [604] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [526] = + [608] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [531] = + [613] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [535] = + [617] = + {field_pattern, 3}, + {field_type, 5}, + {field_value, 7}, + [620] = + {field_alternative, 7}, + {field_pattern, 3}, + {field_type, 5}, + [623] = + {field_alternative, 7}, + {field_pattern, 3}, + {field_value, 5}, + [626] = + {field_body, 8}, + {field_trait, 4}, + {field_type, 6}, + [629] = + {field_trait, 5}, + {field_type, 7}, + {field_type_parameters, 3}, + [632] = + {field_body, 8}, + {field_trait, 5}, + {field_type, 7}, + {field_type_parameters, 3}, + [636] = + {field_body, 8}, + {field_trait, 4}, + {field_type, 6}, + {field_type_parameters, 3}, + [640] = + {field_name, 5}, + {field_type, 7}, + [642] = + {field_name, 3}, + {field_type, 7}, + {field_type_parameters, 4}, + [645] = + {field_body, 8}, + {field_bounds, 6}, + {field_name, 4}, + {field_type_parameters, 5}, + [649] = + {field_body, 8}, + {field_name, 4}, + {field_parameters, 6}, + {field_type_parameters, 5}, + [653] = + {field_name, 4}, + {field_parameters, 5}, + {field_return_type, 7}, + [656] = + {field_body, 8}, + {field_name, 4}, + {field_parameters, 5}, + {field_return_type, 7}, + [660] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [539] = + [664] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [542] = + [667] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, + [672] = + {field_body, 9}, + {field_trait, 5}, + {field_type, 7}, + {field_type_parameters, 3}, + [676] = + {field_name, 4}, + {field_parameters, 6}, + {field_return_type, 8}, + {field_type_parameters, 5}, + [680] = + {field_body, 9}, + {field_name, 4}, + {field_parameters, 6}, + {field_return_type, 8}, + {field_type_parameters, 5}, + [685] = + {field_body, 9}, + {field_name, 4}, + {field_parameters, 5}, + {field_return_type, 7}, + [689] = + {field_alternative, 9}, + {field_pattern, 3}, + {field_type, 5}, + {field_value, 7}, + [693] = + {field_name, 5}, + {field_type, 7}, + {field_value, 9}, + [696] = + {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] = { @@ -3824,155 +4096,230 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [3] = alias_sym_type_identifier, }, [155] = { + [2] = alias_sym_type_identifier, + }, + [158] = { + [3] = alias_sym_type_identifier, + }, + [161] = { [0] = alias_sym_type_identifier, }, - [156] = { + [162] = { [2] = alias_sym_shorthand_field_identifier, }, - [157] = { + [163] = { [0] = alias_sym_field_identifier, }, - [160] = { + [166] = { [1] = alias_sym_type_identifier, }, - [162] = { + [168] = { [1] = alias_sym_type_identifier, }, - [168] = { + [174] = { [2] = alias_sym_type_identifier, }, - [169] = { + [175] = { [2] = alias_sym_type_identifier, }, - [172] = { + [178] = { [0] = alias_sym_type_identifier, }, - [173] = { + [179] = { [1] = alias_sym_type_identifier, }, - [174] = { + [180] = { [2] = alias_sym_type_identifier, }, - [175] = { + [181] = { [2] = alias_sym_type_identifier, }, - [188] = { + [194] = { [0] = alias_sym_field_identifier, }, - [189] = { + [195] = { [1] = alias_sym_type_identifier, }, - [190] = { + [196] = { [1] = alias_sym_type_identifier, }, - [191] = { + [197] = { [1] = alias_sym_type_identifier, }, - [193] = { + [199] = { [2] = alias_sym_type_identifier, }, - [194] = { + [200] = { [2] = alias_sym_type_identifier, }, - [195] = { + [201] = { [2] = alias_sym_type_identifier, }, - [198] = { + [204] = { [1] = alias_sym_field_identifier, }, - [202] = { + [208] = { [2] = alias_sym_type_identifier, }, - [203] = { + [209] = { [3] = alias_sym_type_identifier, }, - [204] = { + [210] = { [3] = alias_sym_type_identifier, }, - [205] = { + [211] = { [3] = alias_sym_type_identifier, }, - [209] = { + [214] = { + [2] = alias_sym_type_identifier, + }, + [218] = { + [3] = alias_sym_type_identifier, + }, + [219] = { + [4] = alias_sym_type_identifier, + }, + [222] = { [0] = alias_sym_type_identifier, }, - [210] = { + [223] = { [1] = alias_sym_field_identifier, }, - [218] = { + [231] = { [2] = alias_sym_type_identifier, }, - [220] = { + [233] = { [3] = alias_sym_type_identifier, }, - [221] = { + [234] = { [3] = alias_sym_type_identifier, }, - [224] = { + [237] = { [2] = alias_sym_type_identifier, }, - [231] = { + [244] = { [1] = alias_sym_field_identifier, }, - [232] = { + [245] = { [1] = alias_sym_type_identifier, }, - [233] = { + [246] = { [3] = alias_sym_type_identifier, }, - [234] = { + [247] = { [3] = alias_sym_type_identifier, }, - [237] = { + [250] = { [3] = alias_sym_type_identifier, }, - [238] = { + [251] = { [3] = alias_sym_type_identifier, }, - [241] = { + [254] = { [2] = alias_sym_type_identifier, }, - [245] = { + [258] = { [2] = alias_sym_type_identifier, }, - [246] = { + [259] = { [2] = alias_sym_type_identifier, }, - [247] = { + [260] = { [3] = alias_sym_type_identifier, }, - [248] = { + [261] = { [3] = alias_sym_type_identifier, }, - [249] = { + [262] = { [3] = alias_sym_type_identifier, }, - [255] = { + [272] = { + [3] = alias_sym_type_identifier, + }, + [273] = { + [4] = alias_sym_type_identifier, + }, + [274] = { + [4] = alias_sym_type_identifier, + }, + [275] = { + [4] = alias_sym_type_identifier, + }, + [278] = { [2] = alias_sym_field_identifier, }, - [258] = { + [281] = { [3] = alias_sym_type_identifier, }, - [265] = { + [288] = { [3] = alias_sym_type_identifier, }, - [267] = { + [290] = { [4] = alias_sym_type_identifier, }, - [268] = { + [291] = { [4] = alias_sym_type_identifier, }, - [271] = { + [294] = { [3] = alias_sym_type_identifier, }, - [277] = { + [300] = { [2] = alias_sym_type_identifier, }, - [278] = { + [301] = { + [3] = alias_sym_type_identifier, + }, + [305] = { + [4] = alias_sym_type_identifier, + }, + [306] = { + [4] = alias_sym_type_identifier, + }, + [309] = { + [4] = alias_sym_type_identifier, + }, + [310] = { + [4] = alias_sym_type_identifier, + }, + [313] = { + [3] = alias_sym_type_identifier, + }, + [314] = { + [3] = alias_sym_type_identifier, + }, + [315] = { + [4] = alias_sym_type_identifier, + }, + [316] = { + [4] = alias_sym_type_identifier, + }, + [317] = { + [4] = alias_sym_type_identifier, + }, + [324] = { + [4] = alias_sym_type_identifier, + }, + [333] = { + [4] = alias_sym_type_identifier, + }, + [335] = { + [5] = alias_sym_type_identifier, + }, + [336] = { + [5] = alias_sym_type_identifier, + }, + [339] = { + [4] = alias_sym_type_identifier, + }, + [342] = { [3] = alias_sym_type_identifier, }, - [284] = { + [343] = { [4] = alias_sym_type_identifier, }, + [350] = { + [5] = alias_sym_type_identifier, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -3995,142 +4342,142 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 8, - [9] = 3, - [10] = 5, - [11] = 11, - [12] = 11, - [13] = 6, - [14] = 8, - [15] = 5, - [16] = 11, - [17] = 6, - [18] = 3, - [19] = 5, - [20] = 11, - [21] = 6, - [22] = 3, - [23] = 5, - [24] = 11, - [25] = 6, - [26] = 3, - [27] = 5, - [28] = 11, - [29] = 6, - [30] = 3, - [31] = 5, - [32] = 11, - [33] = 6, - [34] = 3, + [9] = 9, + [10] = 2, + [11] = 5, + [12] = 7, + [13] = 8, + [14] = 9, + [15] = 2, + [16] = 5, + [17] = 9, + [18] = 9, + [19] = 2, + [20] = 5, + [21] = 8, + [22] = 9, + [23] = 2, + [24] = 5, + [25] = 8, + [26] = 9, + [27] = 2, + [28] = 5, + [29] = 8, + [30] = 9, + [31] = 2, + [32] = 5, + [33] = 8, + [34] = 8, [35] = 35, [36] = 36, [37] = 37, [38] = 38, [39] = 39, - [40] = 39, - [41] = 41, - [42] = 41, + [40] = 38, + [41] = 36, + [42] = 42, [43] = 35, - [44] = 41, - [45] = 39, - [46] = 35, - [47] = 38, - [48] = 36, - [49] = 37, - [50] = 35, - [51] = 39, - [52] = 41, - [53] = 41, - [54] = 39, - [55] = 38, - [56] = 36, - [57] = 41, - [58] = 39, - [59] = 41, - [60] = 39, - [61] = 41, - [62] = 39, - [63] = 37, - [64] = 37, - [65] = 38, + [44] = 37, + [45] = 36, + [46] = 38, + [47] = 36, + [48] = 42, + [49] = 39, + [50] = 38, + [51] = 35, + [52] = 35, + [53] = 39, + [54] = 38, + [55] = 36, + [56] = 37, + [57] = 39, + [58] = 38, + [59] = 36, + [60] = 42, + [61] = 37, + [62] = 38, + [63] = 36, + [64] = 38, + [65] = 42, [66] = 36, [67] = 67, [68] = 68, [69] = 69, - [70] = 70, - [71] = 68, - [72] = 69, + [70] = 68, + [71] = 71, + [72] = 72, [73] = 73, [74] = 74, - [75] = 73, - [76] = 76, + [75] = 72, + [76] = 73, [77] = 74, [78] = 78, [79] = 79, - [80] = 76, + [80] = 71, [81] = 81, [82] = 82, - [83] = 70, + [83] = 69, [84] = 84, [85] = 85, [86] = 86, [87] = 87, [88] = 88, - [89] = 89, - [90] = 84, + [89] = 87, + [90] = 88, [91] = 91, - [92] = 91, + [92] = 92, [93] = 93, [94] = 94, - [95] = 95, - [96] = 95, + [95] = 84, + [96] = 96, [97] = 97, - [98] = 84, - [99] = 97, - [100] = 95, - [101] = 97, - [102] = 91, + [98] = 91, + [99] = 99, + [100] = 84, + [101] = 91, + [102] = 92, [103] = 93, - [104] = 94, - [105] = 105, - [106] = 95, + [104] = 91, + [105] = 84, + [106] = 96, [107] = 97, - [108] = 105, - [109] = 85, - [110] = 86, - [111] = 84, - [112] = 91, + [108] = 108, + [109] = 93, + [110] = 96, + [111] = 91, + [112] = 92, [113] = 93, - [114] = 94, - [115] = 87, - [116] = 95, + [114] = 97, + [115] = 84, + [116] = 96, [117] = 97, - [118] = 84, - [119] = 88, - [120] = 89, - [121] = 121, - [122] = 91, + [118] = 92, + [119] = 119, + [120] = 84, + [121] = 91, + [122] = 92, [123] = 93, - [124] = 94, - [125] = 93, - [126] = 95, + [124] = 96, + [125] = 97, + [126] = 96, [127] = 97, - [128] = 91, - [129] = 129, - [130] = 94, - [131] = 93, - [132] = 94, - [133] = 84, + [128] = 108, + [129] = 85, + [130] = 93, + [131] = 86, + [132] = 119, + [133] = 92, [134] = 134, [135] = 135, [136] = 136, [137] = 137, [138] = 135, [139] = 139, - [140] = 134, + [140] = 139, [141] = 141, - [142] = 141, + [142] = 134, [143] = 143, - [144] = 139, + [144] = 143, [145] = 145, [146] = 146, [147] = 147, @@ -4143,111 +4490,111 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [154] = 154, [155] = 155, [156] = 156, - [157] = 145, + [157] = 157, [158] = 158, [159] = 159, [160] = 160, - [161] = 158, - [162] = 162, + [161] = 148, + [162] = 137, [163] = 163, [164] = 164, [165] = 165, - [166] = 160, + [166] = 149, [167] = 167, [168] = 168, [169] = 169, [170] = 170, [171] = 171, - [172] = 143, - [173] = 173, - [174] = 174, + [172] = 172, + [173] = 153, + [174] = 154, [175] = 175, - [176] = 173, + [176] = 176, [177] = 177, [178] = 178, - [179] = 162, - [180] = 164, + [179] = 179, + [180] = 180, [181] = 181, - [182] = 182, - [183] = 183, + [182] = 150, + [183] = 163, [184] = 184, - [185] = 171, - [186] = 175, - [187] = 153, - [188] = 168, - [189] = 189, - [190] = 189, - [191] = 153, - [192] = 168, - [193] = 189, - [194] = 153, - [195] = 168, - [196] = 189, - [197] = 197, + [185] = 185, + [186] = 160, + [187] = 147, + [188] = 188, + [189] = 159, + [190] = 160, + [191] = 147, + [192] = 178, + [193] = 159, + [194] = 160, + [195] = 147, + [196] = 159, + [197] = 172, [198] = 198, [199] = 199, [200] = 200, [201] = 201, - [202] = 170, - [203] = 203, - [204] = 177, - [205] = 147, - [206] = 149, - [207] = 151, - [208] = 152, + [202] = 199, + [203] = 170, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 164, + [208] = 171, [209] = 209, - [210] = 210, - [211] = 211, - [212] = 199, - [213] = 213, - [214] = 213, + [210] = 145, + [211] = 151, + [212] = 168, + [213] = 206, + [214] = 214, [215] = 215, [216] = 216, [217] = 217, - [218] = 218, - [219] = 219, - [220] = 219, - [221] = 221, - [222] = 222, - [223] = 216, - [224] = 215, - [225] = 221, + [218] = 215, + [219] = 217, + [220] = 216, + [221] = 215, + [222] = 217, + [223] = 223, + [224] = 224, + [225] = 225, [226] = 226, - [227] = 226, - [228] = 216, - [229] = 229, - [230] = 216, + [227] = 227, + [228] = 224, + [229] = 225, + [230] = 230, [231] = 231, [232] = 217, - [233] = 218, - [234] = 234, - [235] = 231, - [236] = 231, - [237] = 229, - [238] = 229, - [239] = 239, + [233] = 223, + [234] = 226, + [235] = 223, + [236] = 227, + [237] = 216, + [238] = 215, + [239] = 231, [240] = 240, - [241] = 239, - [242] = 240, - [243] = 231, - [244] = 234, - [245] = 216, - [246] = 219, - [247] = 234, - [248] = 229, - [249] = 219, + [241] = 241, + [242] = 217, + [243] = 215, + [244] = 227, + [245] = 223, + [246] = 246, + [247] = 230, + [248] = 240, + [249] = 216, [250] = 231, - [251] = 226, - [252] = 229, + [251] = 241, + [252] = 216, [253] = 253, [254] = 254, [255] = 255, - [256] = 253, + [256] = 254, [257] = 255, - [258] = 253, - [259] = 254, - [260] = 254, - [261] = 255, + [258] = 255, + [259] = 253, + [260] = 253, + [261] = 254, [262] = 262, [263] = 263, [264] = 264, @@ -4261,17 +4608,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [272] = 272, [273] = 273, [274] = 274, - [275] = 263, + [275] = 275, [276] = 276, [277] = 277, [278] = 278, [279] = 279, [280] = 280, [281] = 281, - [282] = 282, + [282] = 275, [283] = 283, [284] = 284, - [285] = 285, + [285] = 262, [286] = 286, [287] = 287, [288] = 288, @@ -4279,122 +4626,122 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [290] = 290, [291] = 291, [292] = 292, - [293] = 293, - [294] = 294, + [293] = 265, + [294] = 270, [295] = 295, [296] = 296, [297] = 297, - [298] = 298, - [299] = 290, - [300] = 300, - [301] = 265, - [302] = 266, - [303] = 270, - [304] = 274, - [305] = 276, - [306] = 277, - [307] = 278, - [308] = 279, - [309] = 280, - [310] = 281, - [311] = 282, - [312] = 289, - [313] = 296, - [314] = 314, + [298] = 271, + [299] = 288, + [300] = 267, + [301] = 266, + [302] = 292, + [303] = 295, + [304] = 304, + [305] = 305, + [306] = 266, + [307] = 297, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 267, + [313] = 313, + [314] = 275, [315] = 315, - [316] = 316, - [317] = 300, - [318] = 300, + [316] = 272, + [317] = 277, + [318] = 279, [319] = 319, - [320] = 265, - [321] = 266, - [322] = 270, - [323] = 274, - [324] = 276, - [325] = 277, - [326] = 278, - [327] = 279, - [328] = 280, - [329] = 281, - [330] = 282, - [331] = 296, - [332] = 332, - [333] = 300, - [334] = 265, - [335] = 266, - [336] = 270, - [337] = 274, - [338] = 276, - [339] = 277, - [340] = 278, - [341] = 279, - [342] = 280, - [343] = 281, - [344] = 282, - [345] = 289, - [346] = 296, - [347] = 289, + [320] = 272, + [321] = 277, + [322] = 279, + [323] = 280, + [324] = 291, + [325] = 265, + [326] = 297, + [327] = 271, + [328] = 288, + [329] = 292, + [330] = 295, + [331] = 331, + [332] = 297, + [333] = 311, + [334] = 334, + [335] = 335, + [336] = 280, + [337] = 266, + [338] = 305, + [339] = 297, + [340] = 311, + [341] = 341, + [342] = 342, + [343] = 291, + [344] = 344, + [345] = 345, + [346] = 297, + [347] = 347, [348] = 348, - [349] = 289, - [350] = 289, - [351] = 289, - [352] = 290, + [349] = 349, + [350] = 267, + [351] = 297, + [352] = 352, [353] = 353, - [354] = 354, - [355] = 355, - [356] = 354, - [357] = 357, - [358] = 358, - [359] = 290, - [360] = 354, - [361] = 314, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 315, - [366] = 262, - [367] = 291, - [368] = 316, - [369] = 332, - [370] = 353, - [371] = 355, - [372] = 362, - [373] = 264, - [374] = 268, - [375] = 271, - [376] = 263, - [377] = 285, - [378] = 287, - [379] = 288, - [380] = 295, - [381] = 298, - [382] = 315, - [383] = 316, - [384] = 355, - [385] = 263, - [386] = 315, - [387] = 316, - [388] = 289, - [389] = 389, + [354] = 272, + [355] = 277, + [356] = 279, + [357] = 342, + [358] = 280, + [359] = 344, + [360] = 331, + [361] = 291, + [362] = 347, + [363] = 315, + [364] = 265, + [365] = 270, + [366] = 273, + [367] = 274, + [368] = 308, + [369] = 353, + [370] = 268, + [371] = 334, + [372] = 304, + [373] = 309, + [374] = 352, + [375] = 263, + [376] = 264, + [377] = 283, + [378] = 284, + [379] = 311, + [380] = 290, + [381] = 296, + [382] = 271, + [383] = 342, + [384] = 288, + [385] = 292, + [386] = 347, + [387] = 295, + [388] = 274, + [389] = 304, [390] = 390, - [391] = 391, - [392] = 392, - [393] = 393, + [391] = 342, + [392] = 297, + [393] = 347, [394] = 394, - [395] = 395, - [396] = 396, + [395] = 304, + [396] = 270, [397] = 397, [398] = 398, [399] = 399, [400] = 400, - [401] = 200, + [401] = 401, [402] = 402, [403] = 403, [404] = 404, [405] = 405, - [406] = 406, - [407] = 394, - [408] = 198, + [406] = 198, + [407] = 403, + [408] = 408, [409] = 409, [410] = 410, [411] = 411, @@ -4405,94 +4752,94 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [416] = 416, [417] = 417, [418] = 418, - [419] = 394, + [419] = 419, [420] = 420, - [421] = 421, + [421] = 200, [422] = 422, - [423] = 416, + [423] = 423, [424] = 424, [425] = 425, [426] = 426, [427] = 427, - [428] = 425, + [428] = 428, [429] = 429, - [430] = 429, - [431] = 429, - [432] = 426, - [433] = 427, - [434] = 426, - [435] = 435, - [436] = 435, + [430] = 403, + [431] = 408, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 433, + [436] = 436, [437] = 437, - [438] = 438, - [439] = 439, - [440] = 440, - [441] = 439, - [442] = 442, - [443] = 442, - [444] = 439, - [445] = 440, - [446] = 440, - [447] = 442, - [448] = 440, - [449] = 442, - [450] = 439, - [451] = 451, - [452] = 451, - [453] = 453, - [454] = 451, - [455] = 451, - [456] = 456, - [457] = 456, - [458] = 456, - [459] = 319, - [460] = 456, - [461] = 392, - [462] = 462, - [463] = 389, - [464] = 390, - [465] = 391, - [466] = 462, - [467] = 393, - [468] = 462, - [469] = 462, - [470] = 421, - [471] = 471, - [472] = 472, + [438] = 436, + [439] = 437, + [440] = 433, + [441] = 434, + [442] = 434, + [443] = 443, + [444] = 443, + [445] = 445, + [446] = 446, + [447] = 447, + [448] = 448, + [449] = 447, + [450] = 448, + [451] = 447, + [452] = 452, + [453] = 448, + [454] = 452, + [455] = 447, + [456] = 452, + [457] = 448, + [458] = 452, + [459] = 459, + [460] = 460, + [461] = 460, + [462] = 460, + [463] = 460, + [464] = 394, + [465] = 465, + [466] = 465, + [467] = 465, + [468] = 465, + [469] = 397, + [470] = 398, + [471] = 399, + [472] = 400, [473] = 473, - [474] = 399, - [475] = 405, - [476] = 397, - [477] = 420, - [478] = 400, - [479] = 414, - [480] = 415, - [481] = 410, - [482] = 413, - [483] = 418, - [484] = 412, - [485] = 409, - [486] = 406, - [487] = 395, - [488] = 411, - [489] = 403, - [490] = 398, - [491] = 422, - [492] = 492, - [493] = 492, - [494] = 494, - [495] = 495, - [496] = 496, - [497] = 497, + [474] = 473, + [475] = 401, + [476] = 473, + [477] = 473, + [478] = 478, + [479] = 422, + [480] = 424, + [481] = 425, + [482] = 429, + [483] = 404, + [484] = 415, + [485] = 402, + [486] = 423, + [487] = 420, + [488] = 426, + [489] = 409, + [490] = 405, + [491] = 411, + [492] = 412, + [493] = 493, + [494] = 414, + [495] = 417, + [496] = 419, + [497] = 410, [498] = 498, - [499] = 499, + [499] = 413, [500] = 500, [501] = 501, [502] = 502, - [503] = 503, + [503] = 502, [504] = 504, - [505] = 505, - [506] = 506, + [505] = 504, + [506] = 501, [507] = 507, [508] = 508, [509] = 509, @@ -4617,7 +4964,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [628] = 628, [629] = 629, [630] = 630, - [631] = 391, + [631] = 631, [632] = 632, [633] = 633, [634] = 634, @@ -4630,13 +4977,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [641] = 641, [642] = 642, [643] = 643, - [644] = 393, + [644] = 644, [645] = 645, [646] = 646, - [647] = 392, + [647] = 647, [648] = 648, - [649] = 389, - [650] = 390, + [649] = 649, + [650] = 650, [651] = 651, [652] = 652, [653] = 653, @@ -4658,21 +5005,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [669] = 669, [670] = 670, [671] = 671, - [672] = 584, + [672] = 672, [673] = 673, [674] = 674, [675] = 675, - [676] = 664, + [676] = 676, [677] = 677, [678] = 678, [679] = 679, - [680] = 679, + [680] = 680, [681] = 681, [682] = 682, [683] = 683, [684] = 684, [685] = 685, - [686] = 589, + [686] = 686, [687] = 687, [688] = 688, [689] = 689, @@ -4700,7 +5047,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [711] = 711, [712] = 712, [713] = 713, - [714] = 714, + [714] = 401, [715] = 715, [716] = 716, [717] = 717, @@ -4711,14 +5058,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [722] = 722, [723] = 723, [724] = 724, - [725] = 725, + [725] = 400, [726] = 726, [727] = 727, - [728] = 728, + [728] = 397, [729] = 729, [730] = 730, - [731] = 731, - [732] = 732, + [731] = 398, + [732] = 399, [733] = 733, [734] = 734, [735] = 735, @@ -4757,7 +5104,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [768] = 768, [769] = 769, [770] = 770, - [771] = 771, + [771] = 508, [772] = 772, [773] = 773, [774] = 774, @@ -4769,7 +5116,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [780] = 780, [781] = 781, [782] = 782, - [783] = 783, + [783] = 717, [784] = 784, [785] = 785, [786] = 786, @@ -4779,29 +5126,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [790] = 790, [791] = 791, [792] = 792, - [793] = 792, + [793] = 793, [794] = 794, [795] = 795, [796] = 796, [797] = 797, - [798] = 796, - [799] = 795, + [798] = 798, + [799] = 799, [800] = 800, [801] = 801, [802] = 802, - [803] = 800, + [803] = 803, [804] = 804, [805] = 805, - [806] = 802, + [806] = 806, [807] = 807, [808] = 808, [809] = 809, [810] = 810, - [811] = 801, + [811] = 811, [812] = 812, - [813] = 805, - [814] = 807, - [815] = 809, + [813] = 813, + [814] = 814, + [815] = 815, [816] = 816, [817] = 817, [818] = 818, @@ -4815,73 +5162,73 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [826] = 826, [827] = 827, [828] = 828, - [829] = 822, + [829] = 829, [830] = 830, [831] = 831, [832] = 832, - [833] = 819, - [834] = 817, - [835] = 818, - [836] = 826, - [837] = 816, - [838] = 820, - [839] = 824, - [840] = 825, + [833] = 833, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 840, [841] = 841, - [842] = 831, - [843] = 823, - [844] = 819, - [845] = 823, - [846] = 819, - [847] = 823, - [848] = 841, + [842] = 842, + [843] = 843, + [844] = 844, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 848, [849] = 849, - [850] = 849, - [851] = 849, - [852] = 849, + [850] = 850, + [851] = 851, + [852] = 852, [853] = 853, - [854] = 849, + [854] = 854, [855] = 855, [856] = 856, [857] = 857, [858] = 858, [859] = 859, - [860] = 859, + [860] = 860, [861] = 861, - [862] = 857, + [862] = 862, [863] = 863, - [864] = 863, - [865] = 859, - [866] = 855, + [864] = 864, + [865] = 865, + [866] = 866, [867] = 867, [868] = 868, - [869] = 867, - [870] = 859, + [869] = 869, + [870] = 870, [871] = 871, - [872] = 867, - [873] = 856, + [872] = 872, + [873] = 873, [874] = 874, - [875] = 863, - [876] = 859, + [875] = 875, + [876] = 876, [877] = 877, - [878] = 863, - [879] = 856, - [880] = 863, + [878] = 878, + [879] = 879, + [880] = 880, [881] = 881, [882] = 882, [883] = 883, [884] = 884, - [885] = 882, + [885] = 885, [886] = 886, [887] = 887, [888] = 888, - [889] = 884, + [889] = 889, [890] = 890, [891] = 891, [892] = 892, [893] = 893, [894] = 894, - [895] = 891, + [895] = 895, [896] = 896, [897] = 897, [898] = 898, @@ -4895,189 +5242,189 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [906] = 906, [907] = 907, [908] = 908, - [909] = 909, + [909] = 907, [910] = 910, [911] = 911, [912] = 912, - [913] = 888, - [914] = 883, - [915] = 915, + [913] = 910, + [914] = 914, + [915] = 914, [916] = 916, [917] = 917, [918] = 918, - [919] = 882, + [919] = 917, [920] = 920, [921] = 921, [922] = 922, - [923] = 923, - [924] = 906, - [925] = 925, - [926] = 888, - [927] = 927, + [923] = 920, + [924] = 924, + [925] = 916, + [926] = 926, + [927] = 926, [928] = 928, - [929] = 929, - [930] = 907, - [931] = 931, + [929] = 928, + [930] = 930, + [931] = 921, [932] = 932, [933] = 933, [934] = 934, - [935] = 882, - [936] = 887, - [937] = 884, - [938] = 894, - [939] = 891, + [935] = 935, + [936] = 936, + [937] = 937, + [938] = 938, + [939] = 935, [940] = 940, - [941] = 941, - [942] = 908, - [943] = 911, + [941] = 932, + [942] = 942, + [943] = 943, [944] = 944, - [945] = 928, - [946] = 946, + [945] = 943, + [946] = 934, [947] = 947, - [948] = 948, + [948] = 936, [949] = 949, [950] = 950, [951] = 951, - [952] = 952, - [953] = 899, - [954] = 887, - [955] = 955, - [956] = 908, - [957] = 957, - [958] = 911, - [959] = 941, - [960] = 922, - [961] = 923, - [962] = 901, - [963] = 957, - [964] = 922, - [965] = 923, - [966] = 888, - [967] = 967, - [968] = 900, - [969] = 881, - [970] = 952, - [971] = 971, - [972] = 971, - [973] = 973, - [974] = 974, + [952] = 947, + [953] = 950, + [954] = 954, + [955] = 942, + [956] = 951, + [957] = 933, + [958] = 958, + [959] = 959, + [960] = 959, + [961] = 961, + [962] = 938, + [963] = 944, + [964] = 933, + [965] = 944, + [966] = 933, + [967] = 944, + [968] = 954, + [969] = 969, + [970] = 970, + [971] = 969, + [972] = 969, + [973] = 969, + [974] = 969, [975] = 975, [976] = 976, - [977] = 922, - [978] = 973, - [979] = 906, - [980] = 882, - [981] = 884, - [982] = 887, - [983] = 883, - [984] = 884, - [985] = 894, - [986] = 891, - [987] = 910, - [988] = 917, - [989] = 918, - [990] = 921, - [991] = 925, - [992] = 929, - [993] = 923, - [994] = 994, - [995] = 932, - [996] = 933, - [997] = 944, - [998] = 946, - [999] = 976, - [1000] = 1000, - [1001] = 908, - [1002] = 911, - [1003] = 928, + [977] = 977, + [978] = 978, + [979] = 979, + [980] = 980, + [981] = 981, + [982] = 982, + [983] = 981, + [984] = 984, + [985] = 985, + [986] = 980, + [987] = 979, + [988] = 988, + [989] = 988, + [990] = 980, + [991] = 984, + [992] = 981, + [993] = 979, + [994] = 980, + [995] = 995, + [996] = 979, + [997] = 979, + [998] = 985, + [999] = 980, + [1000] = 976, + [1001] = 984, + [1002] = 1002, + [1003] = 1003, [1004] = 1004, - [1005] = 904, - [1006] = 912, - [1007] = 886, - [1008] = 907, - [1009] = 950, - [1010] = 949, - [1011] = 897, - [1012] = 898, - [1013] = 902, - [1014] = 903, - [1015] = 909, + [1005] = 1005, + [1006] = 1006, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 1011, + [1012] = 1012, + [1013] = 1013, + [1014] = 1014, + [1015] = 1015, [1016] = 1016, - [1017] = 931, + [1017] = 1017, [1018] = 1018, - [1019] = 949, + [1019] = 1019, [1020] = 1020, - [1021] = 1016, - [1022] = 994, - [1023] = 1004, + [1021] = 1021, + [1022] = 1022, + [1023] = 1023, [1024] = 1024, [1025] = 1025, [1026] = 1026, - [1027] = 890, - [1028] = 896, - [1029] = 916, - [1030] = 1024, - [1031] = 928, + [1027] = 1027, + [1028] = 1012, + [1029] = 1029, + [1030] = 1030, + [1031] = 1031, [1032] = 1032, - [1033] = 967, - [1034] = 957, - [1035] = 1026, - [1036] = 1036, - [1037] = 974, - [1038] = 922, - [1039] = 1000, - [1040] = 923, - [1041] = 949, - [1042] = 975, - [1043] = 906, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, + [1036] = 1008, + [1037] = 1009, + [1038] = 1010, + [1039] = 1012, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, + [1043] = 1043, [1044] = 1044, - [1045] = 907, - [1046] = 894, - [1047] = 1018, - [1048] = 883, - [1049] = 1049, + [1045] = 1045, + [1046] = 1008, + [1047] = 1009, + [1048] = 1010, + [1049] = 1026, [1050] = 1050, - [1051] = 691, + [1051] = 1027, [1052] = 1052, [1053] = 1053, [1054] = 1054, - [1055] = 691, - [1056] = 1056, + [1055] = 1055, + [1056] = 1031, [1057] = 1057, - [1058] = 1058, + [1058] = 1029, [1059] = 1059, [1060] = 1060, [1061] = 1061, [1062] = 1062, [1063] = 1063, [1064] = 1064, - [1065] = 390, - [1066] = 200, - [1067] = 393, - [1068] = 404, - [1069] = 389, - [1070] = 402, - [1071] = 392, + [1065] = 1065, + [1066] = 1004, + [1067] = 1032, + [1068] = 1068, + [1069] = 1069, + [1070] = 1070, + [1071] = 1003, [1072] = 1072, - [1073] = 391, - [1074] = 198, - [1075] = 753, - [1076] = 1076, - [1077] = 1077, - [1078] = 1078, - [1079] = 1049, - [1080] = 1080, - [1081] = 694, - [1082] = 1082, - [1083] = 514, + [1073] = 1073, + [1074] = 1033, + [1075] = 1075, + [1076] = 1034, + [1077] = 1026, + [1078] = 1027, + [1079] = 1035, + [1080] = 1029, + [1081] = 1081, + [1082] = 1004, + [1083] = 1083, [1084] = 1084, - [1085] = 1085, + [1085] = 1068, [1086] = 1086, [1087] = 1087, - [1088] = 1088, - [1089] = 634, - [1090] = 1090, - [1091] = 724, + [1088] = 1031, + [1089] = 1073, + [1090] = 1033, + [1091] = 1091, [1092] = 1092, [1093] = 1093, [1094] = 1094, @@ -5089,1534 +5436,1534 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1100] = 1100, [1101] = 1101, [1102] = 1102, - [1103] = 1103, - [1104] = 1060, + [1103] = 1068, + [1104] = 1104, [1105] = 1105, [1106] = 1106, - [1107] = 1107, - [1108] = 1108, + [1107] = 1004, + [1108] = 1068, [1109] = 1109, - [1110] = 1110, + [1110] = 1073, [1111] = 1111, - [1112] = 435, + [1112] = 1112, [1113] = 1113, - [1114] = 685, - [1115] = 1050, - [1116] = 1057, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, [1117] = 1117, [1118] = 1118, [1119] = 1119, - [1120] = 583, - [1121] = 585, - [1122] = 1059, - [1123] = 1123, - [1124] = 1058, - [1125] = 1125, - [1126] = 1126, - [1127] = 1056, - [1128] = 1128, - [1129] = 1129, - [1130] = 1130, - [1131] = 1131, - [1132] = 1132, - [1133] = 588, - [1134] = 319, - [1135] = 607, - [1136] = 609, - [1137] = 616, - [1138] = 629, - [1139] = 630, - [1140] = 633, - [1141] = 643, - [1142] = 646, - [1143] = 648, - [1144] = 651, - [1145] = 653, - [1146] = 663, - [1147] = 666, - [1148] = 667, - [1149] = 673, - [1150] = 674, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 699, - [1157] = 700, - [1158] = 701, - [1159] = 702, - [1160] = 704, - [1161] = 711, - [1162] = 712, - [1163] = 713, - [1164] = 714, - [1165] = 715, - [1166] = 725, - [1167] = 726, - [1168] = 727, - [1169] = 728, - [1170] = 729, - [1171] = 730, - [1172] = 731, - [1173] = 732, - [1174] = 733, - [1175] = 734, - [1176] = 735, - [1177] = 736, - [1178] = 737, - [1179] = 738, - [1180] = 739, - [1181] = 740, - [1182] = 744, - [1183] = 751, - [1184] = 763, - [1185] = 765, - [1186] = 768, - [1187] = 773, - [1188] = 777, - [1189] = 780, - [1190] = 597, - [1191] = 687, - [1192] = 1192, - [1193] = 1193, - [1194] = 1194, - [1195] = 1195, - [1196] = 569, - [1197] = 570, - [1198] = 587, - [1199] = 591, - [1200] = 592, - [1201] = 593, - [1202] = 595, - [1203] = 596, - [1204] = 598, - [1205] = 599, - [1206] = 601, - [1207] = 622, - [1208] = 625, - [1209] = 626, - [1210] = 628, - [1211] = 661, - [1212] = 684, - [1213] = 689, - [1214] = 697, - [1215] = 746, - [1216] = 748, - [1217] = 750, - [1218] = 499, - [1219] = 500, - [1220] = 501, - [1221] = 512, - [1222] = 534, - [1223] = 556, - [1224] = 561, - [1225] = 562, - [1226] = 563, - [1227] = 564, - [1228] = 565, - [1229] = 566, - [1230] = 567, - [1231] = 568, - [1232] = 571, - [1233] = 572, - [1234] = 573, - [1235] = 574, - [1236] = 575, - [1237] = 576, - [1238] = 577, - [1239] = 578, - [1240] = 579, - [1241] = 580, - [1242] = 581, - [1243] = 582, - [1244] = 590, - [1245] = 594, + [1120] = 1120, + [1121] = 1026, + [1122] = 1027, + [1123] = 1081, + [1124] = 1029, + [1125] = 1014, + [1126] = 1120, + [1127] = 1127, + [1128] = 1026, + [1129] = 1027, + [1130] = 1063, + [1131] = 1093, + [1132] = 1095, + [1133] = 1096, + [1134] = 1111, + [1135] = 1113, + [1136] = 1136, + [1137] = 1007, + [1138] = 1031, + [1139] = 1032, + [1140] = 1073, + [1141] = 1033, + [1142] = 1034, + [1143] = 1035, + [1144] = 1094, + [1145] = 1097, + [1146] = 1098, + [1147] = 1104, + [1148] = 1106, + [1149] = 1109, + [1150] = 1114, + [1151] = 1115, + [1152] = 1005, + [1153] = 1011, + [1154] = 1018, + [1155] = 1021, + [1156] = 1030, + [1157] = 1008, + [1158] = 1009, + [1159] = 1010, + [1160] = 1055, + [1161] = 1064, + [1162] = 1065, + [1163] = 1086, + [1164] = 1099, + [1165] = 1101, + [1166] = 1102, + [1167] = 1167, + [1168] = 1105, + [1169] = 1112, + [1170] = 1117, + [1171] = 1118, + [1172] = 1127, + [1173] = 1006, + [1174] = 1013, + [1175] = 1012, + [1176] = 1044, + [1177] = 1045, + [1178] = 1050, + [1179] = 1054, + [1180] = 1057, + [1181] = 1062, + [1182] = 1069, + [1183] = 1070, + [1184] = 1072, + [1185] = 1075, + [1186] = 1083, + [1187] = 1084, + [1188] = 1015, + [1189] = 1016, + [1190] = 1017, + [1191] = 1020, + [1192] = 1022, + [1193] = 1025, + [1194] = 1053, + [1195] = 1031, + [1196] = 1081, + [1197] = 1032, + [1198] = 1033, + [1199] = 1034, + [1200] = 1035, + [1201] = 1136, + [1202] = 1167, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, + [1206] = 1206, + [1207] = 1207, + [1208] = 1208, + [1209] = 1205, + [1210] = 1210, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 1215, + [1216] = 1216, + [1217] = 1217, + [1218] = 428, + [1219] = 200, + [1220] = 198, + [1221] = 401, + [1222] = 400, + [1223] = 398, + [1224] = 397, + [1225] = 418, + [1226] = 399, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, + [1230] = 1230, + [1231] = 740, + [1232] = 1232, + [1233] = 1233, + [1234] = 659, + [1235] = 1235, + [1236] = 866, + [1237] = 1237, + [1238] = 1238, + [1239] = 1239, + [1240] = 532, + [1241] = 1241, + [1242] = 758, + [1243] = 1243, + [1244] = 1244, + [1245] = 1245, [1246] = 1246, [1247] = 1247, - [1248] = 600, - [1249] = 602, - [1250] = 603, - [1251] = 604, - [1252] = 605, - [1253] = 606, - [1254] = 608, - [1255] = 610, - [1256] = 611, - [1257] = 612, - [1258] = 613, - [1259] = 614, - [1260] = 615, - [1261] = 617, - [1262] = 618, - [1263] = 619, - [1264] = 620, - [1265] = 621, - [1266] = 623, - [1267] = 624, - [1268] = 632, - [1269] = 635, - [1270] = 636, - [1271] = 637, - [1272] = 781, - [1273] = 639, - [1274] = 640, - [1275] = 641, - [1276] = 1276, - [1277] = 645, - [1278] = 652, - [1279] = 654, - [1280] = 494, - [1281] = 656, - [1282] = 657, - [1283] = 658, - [1284] = 659, - [1285] = 660, - [1286] = 662, - [1287] = 665, - [1288] = 668, - [1289] = 669, - [1290] = 670, - [1291] = 675, - [1292] = 677, - [1293] = 678, - [1294] = 681, - [1295] = 682, - [1296] = 683, - [1297] = 690, - [1298] = 692, - [1299] = 1299, - [1300] = 1300, - [1301] = 695, - [1302] = 696, - [1303] = 698, - [1304] = 703, - [1305] = 705, - [1306] = 706, - [1307] = 707, - [1308] = 708, - [1309] = 709, - [1310] = 710, - [1311] = 716, - [1312] = 717, - [1313] = 718, - [1314] = 719, - [1315] = 721, - [1316] = 722, - [1317] = 723, - [1318] = 741, - [1319] = 742, - [1320] = 743, - [1321] = 745, - [1322] = 749, - [1323] = 752, - [1324] = 754, - [1325] = 755, - [1326] = 756, - [1327] = 757, - [1328] = 758, - [1329] = 759, - [1330] = 760, - [1331] = 761, - [1332] = 762, - [1333] = 764, - [1334] = 766, - [1335] = 767, - [1336] = 769, - [1337] = 770, - [1338] = 771, - [1339] = 772, - [1340] = 774, - [1341] = 775, - [1342] = 776, - [1343] = 778, - [1344] = 779, - [1345] = 655, - [1346] = 638, - [1347] = 671, - [1348] = 495, - [1349] = 496, - [1350] = 497, - [1351] = 498, - [1352] = 1352, - [1353] = 1353, - [1354] = 502, - [1355] = 503, - [1356] = 504, - [1357] = 505, - [1358] = 506, - [1359] = 507, - [1360] = 508, - [1361] = 509, - [1362] = 510, - [1363] = 511, - [1364] = 513, - [1365] = 515, - [1366] = 516, - [1367] = 517, - [1368] = 518, - [1369] = 519, - [1370] = 520, - [1371] = 521, - [1372] = 522, - [1373] = 523, - [1374] = 524, - [1375] = 525, - [1376] = 526, - [1377] = 527, - [1378] = 528, - [1379] = 529, - [1380] = 530, - [1381] = 531, - [1382] = 532, - [1383] = 533, - [1384] = 535, - [1385] = 536, - [1386] = 537, - [1387] = 538, - [1388] = 539, - [1389] = 540, - [1390] = 541, - [1391] = 542, - [1392] = 543, - [1393] = 544, - [1394] = 545, - [1395] = 546, - [1396] = 547, - [1397] = 548, - [1398] = 549, - [1399] = 550, - [1400] = 551, - [1401] = 552, - [1402] = 553, - [1403] = 554, - [1404] = 555, - [1405] = 557, - [1406] = 558, - [1407] = 559, - [1408] = 560, - [1409] = 1409, - [1410] = 691, - [1411] = 569, + [1248] = 1248, + [1249] = 1249, + [1250] = 1203, + [1251] = 1251, + [1252] = 1252, + [1253] = 1253, + [1254] = 1254, + [1255] = 1255, + [1256] = 1256, + [1257] = 1257, + [1258] = 760, + [1259] = 815, + [1260] = 818, + [1261] = 819, + [1262] = 826, + [1263] = 827, + [1264] = 828, + [1265] = 829, + [1266] = 830, + [1267] = 831, + [1268] = 832, + [1269] = 833, + [1270] = 835, + [1271] = 855, + [1272] = 858, + [1273] = 860, + [1274] = 865, + [1275] = 882, + [1276] = 885, + [1277] = 886, + [1278] = 891, + [1279] = 894, + [1280] = 509, + [1281] = 510, + [1282] = 511, + [1283] = 512, + [1284] = 513, + [1285] = 514, + [1286] = 515, + [1287] = 516, + [1288] = 517, + [1289] = 518, + [1290] = 519, + [1291] = 671, + [1292] = 1292, + [1293] = 1293, + [1294] = 520, + [1295] = 521, + [1296] = 522, + [1297] = 753, + [1298] = 524, + [1299] = 525, + [1300] = 526, + [1301] = 527, + [1302] = 528, + [1303] = 529, + [1304] = 531, + [1305] = 672, + [1306] = 533, + [1307] = 534, + [1308] = 535, + [1309] = 536, + [1310] = 537, + [1311] = 538, + [1312] = 539, + [1313] = 540, + [1314] = 541, + [1315] = 542, + [1316] = 543, + [1317] = 544, + [1318] = 545, + [1319] = 546, + [1320] = 547, + [1321] = 548, + [1322] = 549, + [1323] = 550, + [1324] = 551, + [1325] = 553, + [1326] = 554, + [1327] = 555, + [1328] = 556, + [1329] = 557, + [1330] = 558, + [1331] = 559, + [1332] = 560, + [1333] = 561, + [1334] = 562, + [1335] = 563, + [1336] = 564, + [1337] = 565, + [1338] = 566, + [1339] = 567, + [1340] = 568, + [1341] = 569, + [1342] = 570, + [1343] = 571, + [1344] = 572, + [1345] = 573, + [1346] = 574, + [1347] = 575, + [1348] = 576, + [1349] = 577, + [1350] = 578, + [1351] = 579, + [1352] = 580, + [1353] = 582, + [1354] = 583, + [1355] = 584, + [1356] = 585, + [1357] = 586, + [1358] = 587, + [1359] = 588, + [1360] = 589, + [1361] = 590, + [1362] = 591, + [1363] = 592, + [1364] = 593, + [1365] = 594, + [1366] = 595, + [1367] = 596, + [1368] = 597, + [1369] = 598, + [1370] = 599, + [1371] = 600, + [1372] = 601, + [1373] = 602, + [1374] = 603, + [1375] = 604, + [1376] = 605, + [1377] = 606, + [1378] = 607, + [1379] = 608, + [1380] = 609, + [1381] = 610, + [1382] = 611, + [1383] = 613, + [1384] = 614, + [1385] = 615, + [1386] = 616, + [1387] = 617, + [1388] = 618, + [1389] = 619, + [1390] = 620, + [1391] = 623, + [1392] = 624, + [1393] = 625, + [1394] = 626, + [1395] = 627, + [1396] = 628, + [1397] = 629, + [1398] = 630, + [1399] = 631, + [1400] = 632, + [1401] = 633, + [1402] = 634, + [1403] = 635, + [1404] = 636, + [1405] = 637, + [1406] = 638, + [1407] = 639, + [1408] = 673, + [1409] = 674, + [1410] = 1410, + [1411] = 754, [1412] = 1412, - [1413] = 1413, - [1414] = 691, - [1415] = 691, + [1413] = 675, + [1414] = 676, + [1415] = 681, [1416] = 1416, - [1417] = 1060, - [1418] = 1418, - [1419] = 642, - [1420] = 1060, - [1421] = 1421, - [1422] = 1422, - [1423] = 1423, - [1424] = 147, - [1425] = 1425, - [1426] = 1426, - [1427] = 1427, - [1428] = 1428, - [1429] = 198, - [1430] = 1430, - [1431] = 1431, - [1432] = 1432, + [1417] = 685, + [1418] = 686, + [1419] = 756, + [1420] = 1420, + [1421] = 757, + [1422] = 687, + [1423] = 688, + [1424] = 689, + [1425] = 690, + [1426] = 762, + [1427] = 691, + [1428] = 693, + [1429] = 694, + [1430] = 695, + [1431] = 709, + [1432] = 711, [1433] = 1433, - [1434] = 1434, + [1434] = 654, [1435] = 1435, - [1436] = 415, + [1436] = 660, [1437] = 1437, - [1438] = 1438, - [1439] = 1439, - [1440] = 1440, - [1441] = 390, + [1438] = 661, + [1439] = 722, + [1440] = 763, + [1441] = 1441, [1442] = 1442, [1443] = 1443, - [1444] = 1444, - [1445] = 1445, - [1446] = 391, + [1444] = 784, + [1445] = 663, + [1446] = 664, [1447] = 1447, - [1448] = 1448, - [1449] = 1449, - [1450] = 1450, - [1451] = 421, - [1452] = 410, - [1453] = 411, - [1454] = 412, - [1455] = 1455, - [1456] = 1456, - [1457] = 409, - [1458] = 1458, - [1459] = 1459, - [1460] = 397, - [1461] = 1461, - [1462] = 1462, - [1463] = 1463, - [1464] = 398, - [1465] = 1465, - [1466] = 1466, - [1467] = 200, - [1468] = 393, - [1469] = 1469, - [1470] = 418, - [1471] = 406, - [1472] = 1472, + [1448] = 665, + [1449] = 722, + [1450] = 723, + [1451] = 729, + [1452] = 733, + [1453] = 734, + [1454] = 1205, + [1455] = 736, + [1456] = 737, + [1457] = 738, + [1458] = 741, + [1459] = 742, + [1460] = 743, + [1461] = 744, + [1462] = 745, + [1463] = 746, + [1464] = 747, + [1465] = 749, + [1466] = 750, + [1467] = 1467, + [1468] = 755, + [1469] = 666, + [1470] = 759, + [1471] = 653, + [1472] = 761, [1473] = 1473, - [1474] = 1474, - [1475] = 1475, - [1476] = 1476, - [1477] = 1477, - [1478] = 395, - [1479] = 413, - [1480] = 1480, - [1481] = 1481, - [1482] = 1482, - [1483] = 1483, - [1484] = 152, - [1485] = 1485, - [1486] = 399, - [1487] = 404, - [1488] = 1488, - [1489] = 405, - [1490] = 1490, - [1491] = 170, - [1492] = 1492, - [1493] = 420, - [1494] = 1494, - [1495] = 1495, - [1496] = 400, - [1497] = 402, - [1498] = 389, - [1499] = 403, - [1500] = 1500, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, - [1506] = 1506, + [1474] = 764, + [1475] = 765, + [1476] = 766, + [1477] = 767, + [1478] = 768, + [1479] = 785, + [1480] = 769, + [1481] = 770, + [1482] = 772, + [1483] = 773, + [1484] = 774, + [1485] = 775, + [1486] = 776, + [1487] = 777, + [1488] = 778, + [1489] = 779, + [1490] = 782, + [1491] = 786, + [1492] = 787, + [1493] = 788, + [1494] = 789, + [1495] = 790, + [1496] = 791, + [1497] = 792, + [1498] = 795, + [1499] = 796, + [1500] = 797, + [1501] = 798, + [1502] = 802, + [1503] = 804, + [1504] = 805, + [1505] = 806, + [1506] = 807, [1507] = 1507, - [1508] = 1508, - [1509] = 392, - [1510] = 1510, - [1511] = 1511, - [1512] = 1512, - [1513] = 149, - [1514] = 1514, - [1515] = 1515, - [1516] = 1516, - [1517] = 1517, - [1518] = 1518, - [1519] = 1519, - [1520] = 1520, - [1521] = 1521, + [1508] = 809, + [1509] = 810, + [1510] = 811, + [1511] = 793, + [1512] = 812, + [1513] = 1513, + [1514] = 813, + [1515] = 443, + [1516] = 814, + [1517] = 816, + [1518] = 817, + [1519] = 667, + [1520] = 821, + [1521] = 825, [1522] = 1522, - [1523] = 1523, - [1524] = 1524, + [1523] = 794, + [1524] = 870, [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 1528, - [1529] = 1529, - [1530] = 1530, + [1526] = 799, + [1527] = 1215, + [1528] = 1215, + [1529] = 1212, + [1530] = 668, [1531] = 1531, - [1532] = 1532, - [1533] = 151, + [1532] = 836, + [1533] = 1533, [1534] = 1534, - [1535] = 1535, - [1536] = 422, - [1537] = 1537, - [1538] = 1538, - [1539] = 414, - [1540] = 1540, - [1541] = 1540, - [1542] = 1060, - [1543] = 1060, - [1544] = 1544, - [1545] = 1545, - [1546] = 1540, - [1547] = 1540, - [1548] = 1548, - [1549] = 1549, - [1550] = 1550, - [1551] = 1551, - [1552] = 1062, - [1553] = 1063, - [1554] = 1061, - [1555] = 1555, + [1535] = 838, + [1536] = 839, + [1537] = 840, + [1538] = 841, + [1539] = 1539, + [1540] = 801, + [1541] = 1541, + [1542] = 724, + [1543] = 752, + [1544] = 842, + [1545] = 843, + [1546] = 844, + [1547] = 845, + [1548] = 846, + [1549] = 847, + [1550] = 848, + [1551] = 849, + [1552] = 1211, + [1553] = 1553, + [1554] = 850, + [1555] = 1213, [1556] = 1556, [1557] = 1557, - [1558] = 1558, - [1559] = 1559, - [1560] = 1560, + [1558] = 851, + [1559] = 852, + [1560] = 1210, [1561] = 1561, - [1562] = 1562, + [1562] = 853, [1563] = 1563, - [1564] = 1100, - [1565] = 1565, + [1564] = 854, + [1565] = 856, [1566] = 1566, - [1567] = 1567, - [1568] = 1568, - [1569] = 1566, - [1570] = 1570, - [1571] = 1571, + [1567] = 857, + [1568] = 808, + [1569] = 1569, + [1570] = 863, + [1571] = 669, [1572] = 1572, - [1573] = 1573, - [1574] = 1574, - [1575] = 1565, - [1576] = 1576, - [1577] = 1570, + [1573] = 867, + [1574] = 713, + [1575] = 868, + [1576] = 869, + [1577] = 507, [1578] = 1578, - [1579] = 1579, - [1580] = 1580, - [1581] = 1581, - [1582] = 1100, - [1583] = 1100, - [1584] = 1072, - [1585] = 1585, - [1586] = 1080, - [1587] = 1105, - [1588] = 1107, - [1589] = 1531, - [1590] = 1276, - [1591] = 1084, - [1592] = 1105, - [1593] = 1276, - [1594] = 1078, - [1595] = 1508, - [1596] = 1082, - [1597] = 1087, - [1598] = 1085, - [1599] = 1110, - [1600] = 1086, - [1601] = 1531, - [1602] = 1110, - [1603] = 1090, - [1604] = 1107, - [1605] = 1605, - [1606] = 1409, - [1607] = 1605, - [1608] = 1409, - [1609] = 1430, - [1610] = 1610, - [1611] = 1246, - [1612] = 1299, - [1613] = 1352, - [1614] = 1614, - [1615] = 319, - [1616] = 1488, - [1617] = 1092, - [1618] = 1094, - [1619] = 1619, - [1620] = 1531, - [1621] = 1192, - [1622] = 1610, - [1623] = 1508, - [1624] = 1614, - [1625] = 1619, - [1626] = 1610, - [1627] = 1614, - [1628] = 1610, - [1629] = 1614, - [1630] = 1545, - [1631] = 1544, - [1632] = 1093, - [1633] = 1488, - [1634] = 1605, - [1635] = 1097, - [1636] = 1430, + [1579] = 871, + [1580] = 394, + [1581] = 872, + [1582] = 873, + [1583] = 874, + [1584] = 727, + [1585] = 875, + [1586] = 876, + [1587] = 877, + [1588] = 878, + [1589] = 730, + [1590] = 748, + [1591] = 780, + [1592] = 781, + [1593] = 879, + [1594] = 800, + [1595] = 880, + [1596] = 881, + [1597] = 883, + [1598] = 884, + [1599] = 887, + [1600] = 888, + [1601] = 889, + [1602] = 890, + [1603] = 892, + [1604] = 893, + [1605] = 895, + [1606] = 803, + [1607] = 820, + [1608] = 896, + [1609] = 897, + [1610] = 679, + [1611] = 692, + [1612] = 726, + [1613] = 859, + [1614] = 530, + [1615] = 552, + [1616] = 581, + [1617] = 822, + [1618] = 612, + [1619] = 621, + [1620] = 622, + [1621] = 823, + [1622] = 640, + [1623] = 824, + [1624] = 641, + [1625] = 642, + [1626] = 644, + [1627] = 649, + [1628] = 655, + [1629] = 656, + [1630] = 657, + [1631] = 662, + [1632] = 683, + [1633] = 684, + [1634] = 1634, + [1635] = 837, + [1636] = 862, [1637] = 1637, - [1638] = 1605, - [1639] = 1637, - [1640] = 1418, - [1641] = 1300, - [1642] = 1109, - [1643] = 1123, - [1644] = 1193, - [1645] = 1416, - [1646] = 1125, - [1647] = 1571, - [1648] = 1573, - [1649] = 1555, - [1650] = 1563, - [1651] = 1353, - [1652] = 1108, - [1653] = 1545, - [1654] = 1654, + [1638] = 864, + [1639] = 696, + [1640] = 697, + [1641] = 698, + [1642] = 699, + [1643] = 700, + [1644] = 701, + [1645] = 702, + [1646] = 703, + [1647] = 680, + [1648] = 704, + [1649] = 682, + [1650] = 705, + [1651] = 706, + [1652] = 707, + [1653] = 708, + [1654] = 710, [1655] = 1655, - [1656] = 1656, - [1657] = 1117, + [1656] = 712, + [1657] = 715, [1658] = 1658, - [1659] = 1126, - [1660] = 1194, - [1661] = 1247, - [1662] = 1128, - [1663] = 1580, - [1664] = 1658, - [1665] = 1568, - [1666] = 1129, - [1667] = 1549, - [1668] = 1579, - [1669] = 1130, - [1670] = 1548, - [1671] = 1131, - [1672] = 1560, - [1673] = 1132, - [1674] = 1655, - [1675] = 1574, - [1676] = 1118, - [1677] = 1677, - [1678] = 1678, - [1679] = 1119, - [1680] = 1551, - [1681] = 1654, - [1682] = 1576, - [1683] = 391, - [1684] = 1557, - [1685] = 393, - [1686] = 392, - [1687] = 1558, - [1688] = 1572, - [1689] = 1544, - [1690] = 389, - [1691] = 390, - [1692] = 1151, - [1693] = 1578, - [1694] = 1152, - [1695] = 1195, - [1696] = 1153, - [1697] = 1154, - [1698] = 1155, - [1699] = 1567, - [1700] = 1550, - [1701] = 1701, - [1702] = 1448, - [1703] = 1524, - [1704] = 1449, + [1659] = 716, + [1660] = 718, + [1661] = 719, + [1662] = 720, + [1663] = 1663, + [1664] = 1664, + [1665] = 1665, + [1666] = 721, + [1667] = 735, + [1668] = 739, + [1669] = 643, + [1670] = 645, + [1671] = 646, + [1672] = 670, + [1673] = 647, + [1674] = 751, + [1675] = 648, + [1676] = 650, + [1677] = 651, + [1678] = 652, + [1679] = 523, + [1680] = 1680, + [1681] = 1681, + [1682] = 1682, + [1683] = 1683, + [1684] = 1684, + [1685] = 1685, + [1686] = 1686, + [1687] = 1687, + [1688] = 1688, + [1689] = 1689, + [1690] = 1690, + [1691] = 1691, + [1692] = 1692, + [1693] = 164, + [1694] = 1694, + [1695] = 1695, + [1696] = 1696, + [1697] = 1697, + [1698] = 1698, + [1699] = 429, + [1700] = 1700, + [1701] = 1215, + [1702] = 415, + [1703] = 418, + [1704] = 1704, [1705] = 1705, - [1706] = 1473, - [1707] = 1707, - [1708] = 1574, - [1709] = 1485, - [1710] = 1537, - [1711] = 1515, - [1712] = 1480, - [1713] = 1474, - [1714] = 1475, - [1715] = 1056, - [1716] = 1490, - [1717] = 1481, - [1718] = 1422, - [1719] = 1434, - [1720] = 1483, - [1721] = 1492, - [1722] = 1447, - [1723] = 1568, - [1724] = 1572, - [1725] = 1495, - [1726] = 1726, - [1727] = 1576, - [1728] = 1578, - [1729] = 1579, - [1730] = 1580, - [1731] = 1549, - [1732] = 1550, - [1733] = 1548, - [1734] = 1551, - [1735] = 1557, - [1736] = 1558, - [1737] = 1567, - [1738] = 1738, + [1706] = 1706, + [1707] = 420, + [1708] = 1708, + [1709] = 1709, + [1710] = 1710, + [1711] = 1711, + [1712] = 1712, + [1713] = 1713, + [1714] = 1714, + [1715] = 404, + [1716] = 1716, + [1717] = 1717, + [1718] = 398, + [1719] = 425, + [1720] = 1720, + [1721] = 402, + [1722] = 1722, + [1723] = 1723, + [1724] = 1724, + [1725] = 413, + [1726] = 170, + [1727] = 1727, + [1728] = 1728, + [1729] = 1729, + [1730] = 1730, + [1731] = 1731, + [1732] = 1732, + [1733] = 1733, + [1734] = 1734, + [1735] = 1735, + [1736] = 200, + [1737] = 399, + [1738] = 411, [1739] = 1739, - [1740] = 1516, - [1741] = 1520, - [1742] = 1571, - [1743] = 1423, + [1740] = 1740, + [1741] = 1741, + [1742] = 1742, + [1743] = 1743, [1744] = 1744, - [1745] = 1426, - [1746] = 1512, - [1747] = 1433, - [1748] = 1560, - [1749] = 1455, - [1750] = 1573, - [1751] = 1458, - [1752] = 1427, - [1753] = 1459, - [1754] = 1431, - [1755] = 1461, - [1756] = 1462, - [1757] = 1428, - [1758] = 1463, + [1745] = 1745, + [1746] = 1746, + [1747] = 1747, + [1748] = 400, + [1749] = 1749, + [1750] = 1750, + [1751] = 426, + [1752] = 145, + [1753] = 428, + [1754] = 1754, + [1755] = 1755, + [1756] = 1756, + [1757] = 401, + [1758] = 1758, [1759] = 1759, - [1760] = 1432, - [1761] = 1465, - [1762] = 1435, - [1763] = 1763, - [1764] = 1438, - [1765] = 1500, - [1766] = 1501, - [1767] = 1502, - [1768] = 1503, - [1769] = 1504, - [1770] = 1505, - [1771] = 1506, - [1772] = 1772, - [1773] = 1442, - [1774] = 1443, - [1775] = 1444, - [1776] = 1555, - [1777] = 435, - [1778] = 410, - [1779] = 412, - [1780] = 409, - [1781] = 397, - [1782] = 398, - [1783] = 1563, - [1784] = 1574, + [1760] = 1760, + [1761] = 1761, + [1762] = 422, + [1763] = 423, + [1764] = 1764, + [1765] = 1765, + [1766] = 1766, + [1767] = 1767, + [1768] = 1768, + [1769] = 168, + [1770] = 1770, + [1771] = 397, + [1772] = 1204, + [1773] = 1205, + [1774] = 1774, + [1775] = 1775, + [1776] = 405, + [1777] = 1777, + [1778] = 1778, + [1779] = 1779, + [1780] = 1780, + [1781] = 1781, + [1782] = 409, + [1783] = 171, + [1784] = 1784, [1785] = 1785, - [1786] = 1476, - [1787] = 399, - [1788] = 1568, - [1789] = 405, - [1790] = 1425, - [1791] = 420, - [1792] = 1572, - [1793] = 400, - [1794] = 1576, - [1795] = 1578, - [1796] = 1579, - [1797] = 1580, - [1798] = 1549, - [1799] = 1550, - [1800] = 1548, - [1801] = 1551, - [1802] = 1557, - [1803] = 1558, - [1804] = 1567, - [1805] = 1526, - [1806] = 1421, - [1807] = 414, - [1808] = 415, - [1809] = 1560, - [1810] = 421, - [1811] = 1456, - [1812] = 1507, - [1813] = 418, - [1814] = 406, - [1815] = 395, - [1816] = 403, - [1817] = 422, - [1818] = 413, - [1819] = 170, - [1820] = 147, - [1821] = 411, - [1822] = 149, - [1823] = 1514, - [1824] = 1574, - [1825] = 151, - [1826] = 404, - [1827] = 1827, - [1828] = 1572, - [1829] = 152, - [1830] = 402, - [1831] = 1560, - [1832] = 1518, - [1833] = 1523, - [1834] = 1525, - [1835] = 198, - [1836] = 200, - [1837] = 1530, - [1838] = 1437, - [1839] = 1494, - [1840] = 1532, - [1841] = 1534, - [1842] = 1535, - [1843] = 1827, - [1844] = 1439, - [1845] = 1772, - [1846] = 1440, - [1847] = 1445, - [1848] = 1848, - [1849] = 1744, - [1850] = 1538, - [1851] = 1851, - [1852] = 1852, - [1853] = 1853, - [1854] = 1854, - [1855] = 1855, - [1856] = 1510, - [1857] = 1785, - [1858] = 1511, - [1859] = 1859, - [1860] = 1860, - [1861] = 1861, - [1862] = 1862, - [1863] = 1738, - [1864] = 1862, - [1865] = 1865, - [1866] = 1772, - [1867] = 1853, - [1868] = 1571, - [1869] = 1573, - [1870] = 1744, - [1871] = 1555, - [1872] = 1563, - [1873] = 1852, - [1874] = 1859, - [1875] = 1701, - [1876] = 1876, - [1877] = 1859, - [1878] = 1862, - [1879] = 1772, - [1880] = 1744, - [1881] = 1852, - [1882] = 1517, - [1883] = 1860, - [1884] = 1859, - [1885] = 1862, - [1886] = 1450, - [1887] = 1772, - [1888] = 1852, - [1889] = 1859, - [1890] = 1862, - [1891] = 1772, - [1892] = 1852, - [1893] = 1859, - [1894] = 1862, - [1895] = 1772, - [1896] = 1852, - [1897] = 1859, - [1898] = 1862, - [1899] = 1899, - [1900] = 1900, - [1901] = 1901, - [1902] = 1519, - [1903] = 1521, - [1904] = 1522, - [1905] = 1466, - [1906] = 1527, + [1786] = 410, + [1787] = 414, + [1788] = 1788, + [1789] = 1789, + [1790] = 417, + [1791] = 419, + [1792] = 424, + [1793] = 1793, + [1794] = 1794, + [1795] = 198, + [1796] = 1796, + [1797] = 1797, + [1798] = 1798, + [1799] = 412, + [1800] = 1800, + [1801] = 1801, + [1802] = 1802, + [1803] = 1802, + [1804] = 1215, + [1805] = 1805, + [1806] = 1802, + [1807] = 1215, + [1808] = 1808, + [1809] = 1802, + [1810] = 1810, + [1811] = 1811, + [1812] = 1812, + [1813] = 1813, + [1814] = 1246, + [1815] = 1815, + [1816] = 1217, + [1817] = 1817, + [1818] = 1818, + [1819] = 1819, + [1820] = 1214, + [1821] = 1821, + [1822] = 1822, + [1823] = 1823, + [1824] = 1824, + [1825] = 1825, + [1826] = 1826, + [1827] = 1811, + [1828] = 1828, + [1829] = 1829, + [1830] = 1830, + [1831] = 1831, + [1832] = 1832, + [1833] = 1216, + [1834] = 1824, + [1835] = 1835, + [1836] = 1836, + [1837] = 1837, + [1838] = 1838, + [1839] = 1839, + [1840] = 1840, + [1841] = 1826, + [1842] = 1842, + [1843] = 1843, + [1844] = 1246, + [1845] = 1228, + [1846] = 1846, + [1847] = 1246, + [1848] = 1697, + [1849] = 1734, + [1850] = 1507, + [1851] = 1416, + [1852] = 1410, + [1853] = 1420, + [1854] = 1697, + [1855] = 1238, + [1856] = 1507, + [1857] = 1416, + [1858] = 1241, + [1859] = 1244, + [1860] = 1410, + [1861] = 1420, + [1862] = 1239, + [1863] = 1235, + [1864] = 1230, + [1865] = 1232, + [1866] = 1229, + [1867] = 1867, + [1868] = 1709, + [1869] = 1869, + [1870] = 1870, + [1871] = 1578, + [1872] = 1697, + [1873] = 1254, + [1874] = 1734, + [1875] = 1248, + [1876] = 1578, + [1877] = 1247, + [1878] = 1788, + [1879] = 1249, + [1880] = 1709, + [1881] = 1433, + [1882] = 1882, + [1883] = 1869, + [1884] = 1634, + [1885] = 1292, + [1886] = 394, + [1887] = 1869, + [1888] = 1888, + [1889] = 1788, + [1890] = 1867, + [1891] = 1870, + [1892] = 1882, + [1893] = 1888, + [1894] = 1882, + [1895] = 1888, + [1896] = 1882, + [1897] = 1888, + [1898] = 1808, + [1899] = 1805, + [1900] = 1869, + [1901] = 1522, + [1902] = 1829, + [1903] = 1572, + [1904] = 1441, + [1905] = 1442, + [1906] = 1813, [1907] = 1907, - [1908] = 1528, - [1909] = 1529, - [1910] = 1852, - [1911] = 1469, - [1912] = 1865, - [1913] = 1472, - [1914] = 1914, - [1915] = 1861, - [1916] = 1477, - [1917] = 1917, - [1918] = 1918, - [1919] = 1919, - [1920] = 1917, - [1921] = 1921, - [1922] = 1922, - [1923] = 1763, - [1924] = 1924, - [1925] = 1925, + [1908] = 1837, + [1909] = 1909, + [1910] = 1655, + [1911] = 1658, + [1912] = 1663, + [1913] = 1664, + [1914] = 1665, + [1915] = 1840, + [1916] = 1435, + [1917] = 1437, + [1918] = 1835, + [1919] = 1447, + [1920] = 1810, + [1921] = 1525, + [1922] = 1836, + [1923] = 1637, + [1924] = 1531, + [1925] = 1293, [1926] = 1926, - [1927] = 1707, - [1928] = 1928, - [1929] = 1929, - [1930] = 1919, - [1931] = 1931, - [1932] = 1932, - [1933] = 1928, - [1934] = 1907, - [1935] = 1935, - [1936] = 1936, - [1937] = 1937, - [1938] = 1931, - [1939] = 1939, - [1940] = 1940, - [1941] = 1931, - [1942] = 1937, - [1943] = 1943, - [1944] = 1924, - [1945] = 1945, - [1946] = 1922, - [1947] = 1932, - [1948] = 1925, - [1949] = 1949, - [1950] = 1926, - [1951] = 1921, - [1952] = 1918, - [1953] = 1936, - [1954] = 1954, - [1955] = 1955, - [1956] = 1956, - [1957] = 1955, - [1958] = 1958, - [1959] = 1954, - [1960] = 1958, - [1961] = 1956, - [1962] = 1962, - [1963] = 1963, + [1927] = 1927, + [1928] = 1533, + [1929] = 1534, + [1930] = 1828, + [1931] = 400, + [1932] = 397, + [1933] = 398, + [1934] = 399, + [1935] = 1823, + [1936] = 1832, + [1937] = 1805, + [1938] = 1467, + [1939] = 1443, + [1940] = 1812, + [1941] = 1819, + [1942] = 1815, + [1943] = 1838, + [1944] = 1821, + [1945] = 1818, + [1946] = 1926, + [1947] = 1947, + [1948] = 1822, + [1949] = 1907, + [1950] = 1950, + [1951] = 1553, + [1952] = 1947, + [1953] = 1556, + [1954] = 1557, + [1955] = 1561, + [1956] = 1563, + [1957] = 1808, + [1958] = 1566, + [1959] = 1825, + [1960] = 1843, + [1961] = 1569, + [1962] = 401, + [1963] = 1780, [1964] = 1964, [1965] = 1965, - [1966] = 1966, - [1967] = 1965, - [1968] = 1966, - [1969] = 1966, - [1970] = 1965, - [1971] = 1965, - [1972] = 1965, - [1973] = 1965, - [1974] = 1974, - [1975] = 1974, - [1976] = 149, - [1977] = 152, - [1978] = 1078, - [1979] = 1082, - [1980] = 1084, - [1981] = 1080, - [1982] = 1982, - [1983] = 1063, - [1984] = 1192, - [1985] = 1352, - [1986] = 1246, - [1987] = 1080, - [1988] = 1084, - [1989] = 1082, - [1990] = 1078, - [1991] = 1061, - [1992] = 1299, - [1993] = 1062, - [1994] = 1994, - [1995] = 1093, - [1996] = 1097, - [1997] = 1092, - [1998] = 1151, - [1999] = 1072, - [2000] = 1094, - [2001] = 2001, + [1966] = 1796, + [1967] = 1683, + [1968] = 1800, + [1969] = 1730, + [1970] = 1712, + [1971] = 1739, + [1972] = 1741, + [1973] = 1704, + [1974] = 1710, + [1975] = 1711, + [1976] = 1724, + [1977] = 1760, + [1978] = 1747, + [1979] = 1979, + [1980] = 1686, + [1981] = 1698, + [1982] = 1727, + [1983] = 1983, + [1984] = 1720, + [1985] = 1749, + [1986] = 1986, + [1987] = 1690, + [1988] = 1732, + [1989] = 1733, + [1990] = 1990, + [1991] = 1991, + [1992] = 1992, + [1993] = 1993, + [1994] = 1774, + [1995] = 1995, + [1996] = 1996, + [1997] = 1997, + [1998] = 1767, + [1999] = 1770, + [2000] = 1819, + [2001] = 1815, [2002] = 2002, - [2003] = 1123, + [2003] = 1843, [2004] = 2004, - [2005] = 2002, - [2006] = 1125, - [2007] = 1085, - [2008] = 1126, - [2009] = 1087, - [2010] = 1086, - [2011] = 1090, - [2012] = 1247, - [2013] = 1562, - [2014] = 2014, - [2015] = 1130, - [2016] = 1300, - [2017] = 2014, - [2018] = 200, - [2019] = 1194, - [2020] = 404, - [2021] = 1117, - [2022] = 402, - [2023] = 1353, - [2024] = 1119, - [2025] = 1193, - [2026] = 1129, - [2027] = 1152, - [2028] = 2004, - [2029] = 2014, - [2030] = 198, - [2031] = 1118, - [2032] = 2032, - [2033] = 1462, - [2034] = 1442, - [2035] = 1443, - [2036] = 1444, - [2037] = 1500, - [2038] = 1501, - [2039] = 1559, - [2040] = 1556, - [2041] = 2041, - [2042] = 1516, - [2043] = 1561, - [2044] = 1502, - [2045] = 1503, - [2046] = 1504, - [2047] = 1505, - [2048] = 1449, - [2049] = 2004, - [2050] = 1474, - [2051] = 1423, - [2052] = 1475, - [2053] = 1476, - [2054] = 1426, - [2055] = 2055, - [2056] = 1481, - [2057] = 1520, - [2058] = 1526, - [2059] = 1421, - [2060] = 1483, - [2061] = 1455, - [2062] = 1456, - [2063] = 1458, - [2064] = 1459, - [2065] = 1461, - [2066] = 1507, - [2067] = 1463, - [2068] = 1465, - [2069] = 1448, - [2070] = 1506, - [2071] = 1132, - [2072] = 147, - [2073] = 2073, - [2074] = 2074, - [2075] = 151, - [2076] = 1155, - [2077] = 1153, - [2078] = 2078, - [2079] = 1131, - [2080] = 1128, - [2081] = 1154, - [2082] = 1195, - [2083] = 1080, - [2084] = 2084, - [2085] = 1082, - [2086] = 1078, - [2087] = 2087, - [2088] = 1084, - [2089] = 1082, - [2090] = 1084, - [2091] = 1080, - [2092] = 1082, - [2093] = 1080, - [2094] = 1078, - [2095] = 1084, - [2096] = 2096, - [2097] = 1982, - [2098] = 1078, - [2099] = 2099, - [2100] = 2100, - [2101] = 2101, - [2102] = 2102, - [2103] = 2103, - [2104] = 2100, - [2105] = 2105, - [2106] = 2105, - [2107] = 2103, - [2108] = 2108, - [2109] = 2109, - [2110] = 392, - [2111] = 2111, - [2112] = 2112, - [2113] = 2113, - [2114] = 2114, - [2115] = 1062, - [2116] = 2116, + [2005] = 1755, + [2006] = 1838, + [2007] = 1821, + [2008] = 1687, + [2009] = 1688, + [2010] = 1210, + [2011] = 2011, + [2012] = 1692, + [2013] = 1746, + [2014] = 1695, + [2015] = 1684, + [2016] = 1714, + [2017] = 1723, + [2018] = 2018, + [2019] = 1829, + [2020] = 1832, + [2021] = 1768, + [2022] = 1706, + [2023] = 1798, + [2024] = 1825, + [2025] = 1828, + [2026] = 1837, + [2027] = 1835, + [2028] = 1810, + [2029] = 1836, + [2030] = 1823, + [2031] = 1812, + [2032] = 1818, + [2033] = 1822, + [2034] = 1813, + [2035] = 1745, + [2036] = 2036, + [2037] = 1777, + [2038] = 1778, + [2039] = 1785, + [2040] = 1700, + [2041] = 1789, + [2042] = 1840, + [2043] = 1775, + [2044] = 1793, + [2045] = 1797, + [2046] = 1685, + [2047] = 1694, + [2048] = 1705, + [2049] = 2049, + [2050] = 1728, + [2051] = 1743, + [2052] = 1744, + [2053] = 2053, + [2054] = 1801, + [2055] = 1750, + [2056] = 1754, + [2057] = 1764, + [2058] = 1766, + [2059] = 1758, + [2060] = 1759, + [2061] = 1761, + [2062] = 1794, + [2063] = 443, + [2064] = 405, + [2065] = 410, + [2066] = 414, + [2067] = 417, + [2068] = 419, + [2069] = 2069, + [2070] = 2070, + [2071] = 1843, + [2072] = 1682, + [2073] = 1689, + [2074] = 415, + [2075] = 1829, + [2076] = 420, + [2077] = 402, + [2078] = 1832, + [2079] = 426, + [2080] = 1825, + [2081] = 1828, + [2082] = 1837, + [2083] = 1835, + [2084] = 1810, + [2085] = 1836, + [2086] = 1823, + [2087] = 1812, + [2088] = 1818, + [2089] = 1822, + [2090] = 1813, + [2091] = 1779, + [2092] = 412, + [2093] = 411, + [2094] = 1840, + [2095] = 1781, + [2096] = 1681, + [2097] = 422, + [2098] = 423, + [2099] = 424, + [2100] = 425, + [2101] = 429, + [2102] = 404, + [2103] = 164, + [2104] = 168, + [2105] = 409, + [2106] = 170, + [2107] = 1843, + [2108] = 171, + [2109] = 418, + [2110] = 1832, + [2111] = 145, + [2112] = 428, + [2113] = 1840, + [2114] = 1784, + [2115] = 198, + [2116] = 200, [2117] = 2117, - [2118] = 2118, + [2118] = 1691, [2119] = 2119, - [2120] = 2120, + [2120] = 1742, [2121] = 2121, - [2122] = 2117, - [2123] = 391, - [2124] = 2124, - [2125] = 1061, - [2126] = 2126, - [2127] = 1078, + [2122] = 2122, + [2123] = 2119, + [2124] = 1713, + [2125] = 2049, + [2126] = 1722, + [2127] = 1986, [2128] = 2128, - [2129] = 2121, - [2130] = 2130, - [2131] = 2131, - [2132] = 1082, - [2133] = 389, - [2134] = 2134, - [2135] = 2001, - [2136] = 2136, - [2137] = 1084, - [2138] = 2138, - [2139] = 2139, - [2140] = 390, - [2141] = 2141, - [2142] = 2141, + [2129] = 1717, + [2130] = 2128, + [2131] = 1696, + [2132] = 2036, + [2133] = 2053, + [2134] = 1965, + [2135] = 1680, + [2136] = 1983, + [2137] = 1993, + [2138] = 1996, + [2139] = 2002, + [2140] = 1756, + [2141] = 2117, + [2142] = 2142, [2143] = 2143, - [2144] = 2144, - [2145] = 2145, - [2146] = 1080, - [2147] = 2144, - [2148] = 2128, - [2149] = 2118, - [2150] = 2143, - [2151] = 2151, - [2152] = 393, - [2153] = 2120, - [2154] = 1063, - [2155] = 2114, - [2156] = 2156, - [2157] = 2157, - [2158] = 2158, - [2159] = 2159, - [2160] = 2160, - [2161] = 2161, - [2162] = 2158, - [2163] = 2163, - [2164] = 2164, - [2165] = 411, - [2166] = 2164, - [2167] = 2167, - [2168] = 2168, - [2169] = 2169, - [2170] = 2170, - [2171] = 2171, - [2172] = 2172, - [2173] = 2173, - [2174] = 2174, - [2175] = 2175, - [2176] = 2176, - [2177] = 2177, - [2178] = 2178, - [2179] = 2179, + [2144] = 1964, + [2145] = 1708, + [2146] = 2146, + [2147] = 2119, + [2148] = 1819, + [2149] = 1815, + [2150] = 2049, + [2151] = 1838, + [2152] = 1821, + [2153] = 1986, + [2154] = 1735, + [2155] = 2053, + [2156] = 1993, + [2157] = 2143, + [2158] = 1716, + [2159] = 2119, + [2160] = 2049, + [2161] = 1986, + [2162] = 2162, + [2163] = 1729, + [2164] = 2053, + [2165] = 1993, + [2166] = 1731, + [2167] = 2119, + [2168] = 1986, + [2169] = 2053, + [2170] = 1993, + [2171] = 2119, + [2172] = 1986, + [2173] = 2053, + [2174] = 1993, + [2175] = 2119, + [2176] = 1986, + [2177] = 2053, + [2178] = 1993, + [2179] = 1765, [2180] = 2180, - [2181] = 2181, - [2182] = 2182, + [2181] = 2121, + [2182] = 413, [2183] = 2183, [2184] = 2184, [2185] = 2185, - [2186] = 1072, + [2186] = 2186, [2187] = 2187, [2188] = 2188, [2189] = 2189, - [2190] = 2190, - [2191] = 2191, + [2190] = 2185, + [2191] = 1995, [2192] = 2192, - [2193] = 2001, + [2193] = 2193, [2194] = 2194, - [2195] = 2160, - [2196] = 2196, - [2197] = 2172, - [2198] = 2172, + [2195] = 2195, + [2196] = 2192, + [2197] = 2197, + [2198] = 2193, [2199] = 2199, - [2200] = 2032, - [2201] = 2168, - [2202] = 2001, - [2203] = 2172, + [2200] = 2122, + [2201] = 2184, + [2202] = 2202, + [2203] = 2197, [2204] = 2204, - [2205] = 2205, - [2206] = 2206, - [2207] = 2207, + [2205] = 2188, + [2206] = 1979, + [2207] = 2183, [2208] = 2208, [2209] = 2209, - [2210] = 2172, + [2210] = 2199, [2211] = 2211, - [2212] = 2001, + [2212] = 2212, [2213] = 2213, [2214] = 2214, - [2215] = 2215, - [2216] = 1085, + [2215] = 2211, + [2216] = 2202, [2217] = 2217, - [2218] = 1093, - [2219] = 1097, + [2218] = 2214, + [2219] = 2217, [2220] = 2220, - [2221] = 2213, - [2222] = 2222, - [2223] = 2220, - [2224] = 2224, - [2225] = 2225, + [2221] = 2212, + [2222] = 2204, + [2223] = 2213, + [2224] = 2189, + [2225] = 2192, [2226] = 2226, - [2227] = 2225, - [2228] = 2225, - [2229] = 1086, + [2227] = 2226, + [2228] = 2228, + [2229] = 2229, [2230] = 2230, - [2231] = 2220, + [2231] = 2231, [2232] = 2232, - [2233] = 1094, - [2234] = 2217, - [2235] = 1090, - [2236] = 2236, - [2237] = 1087, - [2238] = 2214, - [2239] = 2032, + [2233] = 2230, + [2234] = 2228, + [2235] = 2232, + [2236] = 2231, + [2237] = 2229, + [2238] = 2238, + [2239] = 2239, [2240] = 2240, [2241] = 2241, - [2242] = 2242, - [2243] = 2241, - [2244] = 2215, - [2245] = 2245, - [2246] = 2246, - [2247] = 2245, - [2248] = 2248, - [2249] = 2032, - [2250] = 2250, - [2251] = 2236, - [2252] = 2252, - [2253] = 2226, - [2254] = 2254, - [2255] = 2255, - [2256] = 2232, - [2257] = 2255, - [2258] = 2252, - [2259] = 2246, - [2260] = 1092, - [2261] = 2250, - [2262] = 2254, - [2263] = 2263, - [2264] = 2264, - [2265] = 2265, - [2266] = 2266, - [2267] = 2267, - [2268] = 2268, - [2269] = 2269, - [2270] = 2270, - [2271] = 2269, - [2272] = 2272, - [2273] = 2266, - [2274] = 2274, - [2275] = 2275, - [2276] = 2276, + [2242] = 2241, + [2243] = 2243, + [2244] = 2243, + [2245] = 2243, + [2246] = 2243, + [2247] = 2241, + [2248] = 2243, + [2249] = 2249, + [2250] = 2249, + [2251] = 2251, + [2252] = 2251, + [2253] = 1203, + [2254] = 1204, + [2255] = 1205, + [2256] = 145, + [2257] = 170, + [2258] = 1235, + [2259] = 2259, + [2260] = 1230, + [2261] = 1232, + [2262] = 1229, + [2263] = 1216, + [2264] = 1292, + [2265] = 1235, + [2266] = 1634, + [2267] = 1433, + [2268] = 1229, + [2269] = 1230, + [2270] = 1522, + [2271] = 1232, + [2272] = 1214, + [2273] = 1217, + [2274] = 1248, + [2275] = 1655, + [2276] = 1247, [2277] = 2277, - [2278] = 2278, - [2279] = 2279, - [2280] = 2280, - [2281] = 2277, - [2282] = 2282, + [2278] = 1254, + [2279] = 1249, + [2280] = 1228, + [2281] = 1244, + [2282] = 1556, [2283] = 2283, - [2284] = 2282, - [2285] = 2264, + [2284] = 2284, + [2285] = 1553, [2286] = 2286, - [2287] = 2287, - [2288] = 2288, - [2289] = 2289, - [2290] = 2290, - [2291] = 2291, - [2292] = 2292, - [2293] = 2289, - [2294] = 2280, - [2295] = 2295, - [2296] = 2283, - [2297] = 2297, - [2298] = 2291, - [2299] = 2299, - [2300] = 2263, - [2301] = 2286, - [2302] = 2302, - [2303] = 2290, - [2304] = 2292, - [2305] = 2305, - [2306] = 2272, - [2307] = 2295, - [2308] = 2308, - [2309] = 2032, - [2310] = 2305, - [2311] = 2268, - [2312] = 2275, - [2313] = 2313, - [2314] = 2302, - [2315] = 2267, - [2316] = 2316, - [2317] = 2317, - [2318] = 2318, - [2319] = 2319, - [2320] = 2320, + [2287] = 2286, + [2288] = 2283, + [2289] = 1239, + [2290] = 1238, + [2291] = 1241, + [2292] = 1557, + [2293] = 2293, + [2294] = 1525, + [2295] = 1435, + [2296] = 418, + [2297] = 428, + [2298] = 1531, + [2299] = 1658, + [2300] = 2300, + [2301] = 1839, + [2302] = 1293, + [2303] = 1637, + [2304] = 2304, + [2305] = 2300, + [2306] = 2293, + [2307] = 200, + [2308] = 2300, + [2309] = 1533, + [2310] = 198, + [2311] = 1437, + [2312] = 1563, + [2313] = 1566, + [2314] = 1534, + [2315] = 1688, + [2316] = 1754, + [2317] = 1764, + [2318] = 1831, + [2319] = 1766, + [2320] = 1728, [2321] = 2321, - [2322] = 2322, - [2323] = 2322, - [2324] = 2324, - [2325] = 2325, - [2326] = 2326, - [2327] = 2327, - [2328] = 2317, - [2329] = 2329, - [2330] = 2330, - [2331] = 2331, - [2332] = 2318, - [2333] = 2333, - [2334] = 2320, - [2335] = 2321, - [2336] = 2336, - [2337] = 2337, + [2322] = 1793, + [2323] = 1817, + [2324] = 1797, + [2325] = 1687, + [2326] = 1777, + [2327] = 1778, + [2328] = 1779, + [2329] = 1780, + [2330] = 1692, + [2331] = 1758, + [2332] = 2293, + [2333] = 1830, + [2334] = 1785, + [2335] = 2335, + [2336] = 1789, + [2337] = 1781, [2338] = 2338, - [2339] = 2339, - [2340] = 2340, - [2341] = 2324, - [2342] = 2342, - [2343] = 2078, - [2344] = 2344, - [2345] = 2331, - [2346] = 2346, - [2347] = 2347, - [2348] = 2348, - [2349] = 2349, - [2350] = 2329, - [2351] = 2351, - [2352] = 2337, - [2353] = 2353, - [2354] = 2324, - [2355] = 2355, - [2356] = 2346, + [2339] = 1694, + [2340] = 1695, + [2341] = 1759, + [2342] = 1775, + [2343] = 1761, + [2344] = 1743, + [2345] = 1744, + [2346] = 1681, + [2347] = 1705, + [2348] = 1767, + [2349] = 1770, + [2350] = 1801, + [2351] = 1750, + [2352] = 1689, + [2353] = 1685, + [2354] = 1663, + [2355] = 1664, + [2356] = 1665, [2357] = 2357, - [2358] = 2319, - [2359] = 2359, - [2360] = 2360, - [2361] = 2361, - [2362] = 2340, - [2363] = 2349, - [2364] = 2336, - [2365] = 2342, - [2366] = 2347, - [2367] = 2351, - [2368] = 2368, - [2369] = 2326, - [2370] = 2353, - [2371] = 2371, - [2372] = 2333, - [2373] = 2357, - [2374] = 2359, - [2375] = 2375, - [2376] = 2376, + [2358] = 2358, + [2359] = 1447, + [2360] = 171, + [2361] = 168, + [2362] = 2362, + [2363] = 1561, + [2364] = 1569, + [2365] = 1572, + [2366] = 1235, + [2367] = 1235, + [2368] = 1232, + [2369] = 1229, + [2370] = 1230, + [2371] = 1230, + [2372] = 1232, + [2373] = 1235, + [2374] = 1229, + [2375] = 1232, + [2376] = 1229, [2377] = 2377, - [2378] = 2378, + [2378] = 1230, [2379] = 2379, - [2380] = 2380, - [2381] = 147, - [2382] = 2378, + [2380] = 2259, + [2381] = 2381, + [2382] = 2382, [2383] = 2383, - [2384] = 149, - [2385] = 2377, - [2386] = 151, + [2384] = 2384, + [2385] = 2382, + [2386] = 2386, [2387] = 2387, - [2388] = 2388, - [2389] = 2389, - [2390] = 1195, + [2388] = 2386, + [2389] = 2384, + [2390] = 2390, [2391] = 2391, - [2392] = 2380, - [2393] = 2379, - [2394] = 2087, - [2395] = 2395, + [2392] = 2392, + [2393] = 2393, + [2394] = 2394, + [2395] = 1216, [2396] = 2396, - [2397] = 1128, - [2398] = 2383, - [2399] = 2399, - [2400] = 2400, + [2397] = 2397, + [2398] = 401, + [2399] = 1217, + [2400] = 397, [2401] = 2401, - [2402] = 2402, + [2402] = 2284, [2403] = 2403, [2404] = 2404, - [2405] = 2405, + [2405] = 1214, [2406] = 2406, [2407] = 2407, [2408] = 2408, - [2409] = 2376, - [2410] = 2410, - [2411] = 2411, + [2409] = 2409, + [2410] = 2397, + [2411] = 2392, [2412] = 2412, - [2413] = 2410, - [2414] = 2411, - [2415] = 152, - [2416] = 2416, - [2417] = 2417, - [2418] = 2379, + [2413] = 398, + [2414] = 2414, + [2415] = 2415, + [2416] = 2393, + [2417] = 400, + [2418] = 2418, [2419] = 2419, [2420] = 2420, [2421] = 2421, [2422] = 2422, [2423] = 2423, [2424] = 2424, - [2425] = 2425, - [2426] = 2383, - [2427] = 2375, - [2428] = 2420, - [2429] = 2404, - [2430] = 2074, + [2425] = 2420, + [2426] = 2408, + [2427] = 2415, + [2428] = 2409, + [2429] = 2429, + [2430] = 2421, [2431] = 2431, - [2432] = 2416, + [2432] = 1235, [2433] = 2433, - [2434] = 2399, - [2435] = 2433, - [2436] = 2407, - [2437] = 2417, - [2438] = 2423, - [2439] = 2439, - [2440] = 2440, - [2441] = 1132, + [2434] = 1230, + [2435] = 2435, + [2436] = 2436, + [2437] = 2431, + [2438] = 399, + [2439] = 1232, + [2440] = 1229, + [2441] = 2422, [2442] = 2442, [2443] = 2443, - [2444] = 2444, - [2445] = 2431, + [2444] = 2414, + [2445] = 2443, [2446] = 2446, - [2447] = 2388, - [2448] = 2439, - [2449] = 1153, - [2450] = 2425, - [2451] = 2380, - [2452] = 2433, - [2453] = 2402, - [2454] = 2444, - [2455] = 2387, - [2456] = 2395, - [2457] = 2412, - [2458] = 2443, + [2447] = 1228, + [2448] = 2284, + [2449] = 2449, + [2450] = 2450, + [2451] = 2451, + [2452] = 2452, + [2453] = 2446, + [2454] = 2454, + [2455] = 2449, + [2456] = 2454, + [2457] = 2457, + [2458] = 2458, [2459] = 2459, - [2460] = 2422, - [2461] = 2396, - [2462] = 1131, - [2463] = 2389, - [2464] = 2383, - [2465] = 2096, - [2466] = 2421, - [2467] = 2424, - [2468] = 1154, + [2460] = 2460, + [2461] = 2461, + [2462] = 2452, + [2463] = 2463, + [2464] = 2464, + [2465] = 2465, + [2466] = 2466, + [2467] = 2467, + [2468] = 2468, [2469] = 2469, - [2470] = 1155, - [2471] = 2401, - [2472] = 2419, - [2473] = 2406, - [2474] = 2380, - [2475] = 2442, - [2476] = 2476, + [2470] = 2470, + [2471] = 2471, + [2472] = 2472, + [2473] = 2473, + [2474] = 2474, + [2475] = 2475, + [2476] = 2457, [2477] = 2477, [2478] = 2478, [2479] = 2479, [2480] = 2480, - [2481] = 2481, + [2481] = 409, [2482] = 2482, - [2483] = 1056, + [2483] = 2483, [2484] = 2484, [2485] = 2485, [2486] = 2486, [2487] = 2487, - [2488] = 1102, + [2488] = 2488, [2489] = 2489, [2490] = 2490, - [2491] = 1192, - [2492] = 1246, - [2493] = 1299, - [2494] = 2494, - [2495] = 1352, + [2491] = 2491, + [2492] = 2492, + [2493] = 2446, + [2494] = 2304, + [2495] = 2495, [2496] = 2496, [2497] = 2497, - [2498] = 2498, - [2499] = 2499, - [2500] = 2500, + [2498] = 2284, + [2499] = 2446, + [2500] = 2446, [2501] = 2501, - [2502] = 2502, - [2503] = 2503, + [2502] = 2501, + [2503] = 1238, [2504] = 2504, [2505] = 2505, - [2506] = 2506, + [2506] = 1244, [2507] = 2507, - [2508] = 1099, + [2508] = 2508, [2509] = 2509, [2510] = 2510, - [2511] = 2511, - [2512] = 2512, - [2513] = 2498, + [2511] = 1254, + [2512] = 2508, + [2513] = 2513, [2514] = 2514, [2515] = 2515, - [2516] = 2516, - [2517] = 2512, + [2516] = 2508, + [2517] = 2517, [2518] = 2518, - [2519] = 2487, - [2520] = 2516, - [2521] = 2478, - [2522] = 2522, - [2523] = 2499, + [2519] = 2304, + [2520] = 2514, + [2521] = 2521, + [2522] = 2509, + [2523] = 2523, [2524] = 2524, - [2525] = 1103, - [2526] = 2526, - [2527] = 2527, + [2525] = 2525, + [2526] = 2507, + [2527] = 2284, [2528] = 2528, - [2529] = 2514, - [2530] = 2515, + [2529] = 1241, + [2530] = 2530, [2531] = 2531, - [2532] = 2532, - [2533] = 2518, - [2534] = 2528, + [2532] = 1248, + [2533] = 1247, + [2534] = 1249, [2535] = 2535, - [2536] = 2536, - [2537] = 2532, - [2538] = 2489, - [2539] = 2494, - [2540] = 2503, - [2541] = 2507, - [2542] = 2498, - [2543] = 2515, - [2544] = 2516, - [2545] = 2478, + [2536] = 2510, + [2537] = 2537, + [2538] = 2524, + [2539] = 2535, + [2540] = 2515, + [2541] = 2541, + [2542] = 2513, + [2543] = 2537, + [2544] = 2544, + [2545] = 2545, [2546] = 2546, - [2547] = 2526, - [2548] = 2548, - [2549] = 2516, - [2550] = 2535, - [2551] = 2551, - [2552] = 2552, - [2553] = 2553, - [2554] = 2554, - [2555] = 2479, - [2556] = 2556, - [2557] = 2557, - [2558] = 2526, - [2559] = 2509, + [2547] = 2505, + [2548] = 2304, + [2549] = 2525, + [2550] = 2550, + [2551] = 2545, + [2552] = 2541, + [2553] = 2510, + [2554] = 2550, + [2555] = 2504, + [2556] = 2528, + [2557] = 1239, + [2558] = 2518, + [2559] = 2530, [2560] = 2560, - [2561] = 2099, + [2561] = 2561, [2562] = 2562, - [2563] = 2102, + [2563] = 2563, [2564] = 2564, [2565] = 2565, [2566] = 2566, [2567] = 2567, - [2568] = 2527, - [2569] = 2531, - [2570] = 2478, - [2571] = 2510, + [2568] = 2568, + [2569] = 2569, + [2570] = 2570, + [2571] = 2571, [2572] = 2572, [2573] = 2573, - [2574] = 2507, - [2575] = 2510, - [2576] = 1098, + [2574] = 2563, + [2575] = 2575, + [2576] = 2576, [2577] = 2577, - [2578] = 2536, + [2578] = 2578, [2579] = 2579, - [2580] = 2579, - [2581] = 2479, - [2582] = 2522, - [2583] = 2515, - [2584] = 2477, + [2580] = 2580, + [2581] = 2567, + [2582] = 2564, + [2583] = 2565, + [2584] = 2579, [2585] = 2585, - [2586] = 2586, + [2586] = 2573, [2587] = 2587, - [2588] = 2588, - [2589] = 2589, + [2588] = 2568, + [2589] = 2569, [2590] = 2590, - [2591] = 2591, - [2592] = 2592, + [2591] = 2562, + [2592] = 2575, [2593] = 2593, [2594] = 2594, [2595] = 2595, [2596] = 2596, - [2597] = 2597, + [2597] = 2596, [2598] = 2598, [2599] = 2599, [2600] = 2600, - [2601] = 2601, - [2602] = 2602, - [2603] = 2601, + [2601] = 2560, + [2602] = 2570, + [2603] = 2603, [2604] = 2604, [2605] = 2605, - [2606] = 2606, + [2606] = 2587, [2607] = 2607, - [2608] = 2608, + [2608] = 2598, [2609] = 2609, [2610] = 2610, - [2611] = 2593, - [2612] = 2612, - [2613] = 2613, - [2614] = 2614, - [2615] = 2615, - [2616] = 2616, + [2611] = 2611, + [2612] = 2304, + [2613] = 2593, + [2614] = 2571, + [2615] = 2577, + [2616] = 2594, [2617] = 2617, - [2618] = 2592, - [2619] = 2597, - [2620] = 2607, - [2621] = 2608, - [2622] = 2622, - [2623] = 2623, - [2624] = 2624, - [2625] = 2625, - [2626] = 2589, - [2627] = 2627, + [2618] = 2618, + [2619] = 2603, + [2620] = 2595, + [2621] = 2572, + [2622] = 2576, + [2623] = 2599, + [2624] = 2578, + [2625] = 2618, + [2626] = 2626, + [2627] = 2590, [2628] = 2628, [2629] = 2629, - [2630] = 2605, + [2630] = 2630, [2631] = 2631, [2632] = 2632, [2633] = 2633, @@ -6624,1156 +6971,1806 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2635] = 2635, [2636] = 2636, [2637] = 2637, - [2638] = 2599, - [2639] = 2639, - [2640] = 2631, + [2638] = 2638, + [2639] = 2631, + [2640] = 2640, [2641] = 2641, [2642] = 2642, [2643] = 2643, - [2644] = 2627, - [2645] = 2610, - [2646] = 2616, - [2647] = 2647, - [2648] = 2642, - [2649] = 2649, - [2650] = 2635, - [2651] = 2595, - [2652] = 2652, + [2644] = 2640, + [2645] = 2645, + [2646] = 2646, + [2647] = 2641, + [2648] = 2648, + [2649] = 2633, + [2650] = 2650, + [2651] = 2651, + [2652] = 2651, [2653] = 2653, [2654] = 2654, - [2655] = 2604, - [2656] = 2606, - [2657] = 2643, + [2655] = 2655, + [2656] = 2656, + [2657] = 2357, [2658] = 2658, [2659] = 2659, [2660] = 2660, [2661] = 2661, [2662] = 2662, - [2663] = 2663, - [2664] = 2659, - [2665] = 2665, - [2666] = 2666, - [2667] = 2667, - [2668] = 2668, + [2663] = 2646, + [2664] = 2628, + [2665] = 2642, + [2666] = 2634, + [2667] = 2638, + [2668] = 2648, [2669] = 2669, [2670] = 2670, - [2671] = 2671, - [2672] = 2671, + [2671] = 2656, + [2672] = 2672, [2673] = 2673, [2674] = 2674, - [2675] = 2675, - [2676] = 2676, - [2677] = 2677, - [2678] = 2637, - [2679] = 182, - [2680] = 2680, - [2681] = 2681, - [2682] = 2112, - [2683] = 2622, - [2684] = 2124, - [2685] = 2108, - [2686] = 2136, - [2687] = 2660, - [2688] = 2662, - [2689] = 2665, - [2690] = 2690, - [2691] = 2661, - [2692] = 2674, - [2693] = 2653, - [2694] = 2639, + [2675] = 2672, + [2676] = 2673, + [2677] = 2636, + [2678] = 2659, + [2679] = 2637, + [2680] = 2632, + [2681] = 2673, + [2682] = 2629, + [2683] = 2683, + [2684] = 2674, + [2685] = 2685, + [2686] = 2635, + [2687] = 2658, + [2688] = 2670, + [2689] = 2689, + [2690] = 2645, + [2691] = 2669, + [2692] = 171, + [2693] = 2693, + [2694] = 2694, [2695] = 2695, [2696] = 2696, - [2697] = 2649, - [2698] = 2632, + [2697] = 2697, + [2698] = 2698, [2699] = 2699, - [2700] = 2633, - [2701] = 2598, - [2702] = 2599, - [2703] = 2600, + [2700] = 2700, + [2701] = 1569, + [2702] = 2702, + [2703] = 2703, [2704] = 2704, - [2705] = 2601, - [2706] = 2602, - [2707] = 2609, - [2708] = 2625, - [2709] = 2593, + [2705] = 2705, + [2706] = 2706, + [2707] = 2707, + [2708] = 2708, + [2709] = 2709, [2710] = 2710, - [2711] = 2612, - [2712] = 2613, - [2713] = 2614, - [2714] = 2592, - [2715] = 2597, - [2716] = 2607, - [2717] = 2608, - [2718] = 2623, - [2719] = 2719, - [2720] = 2589, - [2721] = 2627, - [2722] = 2628, - [2723] = 2676, - [2724] = 2631, - [2725] = 2632, - [2726] = 2633, - [2727] = 2663, - [2728] = 2641, + [2711] = 2711, + [2712] = 2712, + [2713] = 2713, + [2714] = 2714, + [2715] = 2713, + [2716] = 2716, + [2717] = 2717, + [2718] = 2718, + [2719] = 168, + [2720] = 2720, + [2721] = 170, + [2722] = 2722, + [2723] = 2702, + [2724] = 2724, + [2725] = 2717, + [2726] = 2716, + [2727] = 2717, + [2728] = 1447, [2729] = 2729, - [2730] = 2595, - [2731] = 2600, - [2732] = 2732, - [2733] = 2663, + [2730] = 2708, + [2731] = 2720, + [2732] = 2707, + [2733] = 2733, [2734] = 2734, - [2735] = 2666, - [2736] = 2667, - [2737] = 2668, + [2735] = 2735, + [2736] = 2736, + [2737] = 2703, [2738] = 2738, - [2739] = 2680, - [2740] = 2681, - [2741] = 2598, - [2742] = 2599, - [2743] = 2600, - [2744] = 2601, - [2745] = 2593, - [2746] = 2612, - [2747] = 2613, - [2748] = 2614, - [2749] = 2592, - [2750] = 2597, - [2751] = 2607, - [2752] = 2589, - [2753] = 2627, - [2754] = 2631, - [2755] = 2633, - [2756] = 2641, - [2757] = 183, - [2758] = 2663, - [2759] = 2600, - [2760] = 2601, - [2761] = 2641, - [2762] = 2612, - [2763] = 2597, - [2764] = 2607, - [2765] = 2589, - [2766] = 2627, - [2767] = 2631, - [2768] = 2633, + [2739] = 2739, + [2740] = 2718, + [2741] = 2741, + [2742] = 2742, + [2743] = 2743, + [2744] = 2744, + [2745] = 2738, + [2746] = 2746, + [2747] = 2693, + [2748] = 2381, + [2749] = 2711, + [2750] = 2729, + [2751] = 2751, + [2752] = 2704, + [2753] = 2753, + [2754] = 2754, + [2755] = 2377, + [2756] = 2756, + [2757] = 2757, + [2758] = 2758, + [2759] = 2759, + [2760] = 2760, + [2761] = 2700, + [2762] = 2760, + [2763] = 2362, + [2764] = 2764, + [2765] = 2751, + [2766] = 2766, + [2767] = 2767, + [2768] = 2768, [2769] = 2769, - [2770] = 2600, - [2771] = 2597, - [2772] = 2631, - [2773] = 2633, - [2774] = 2774, - [2775] = 2775, - [2776] = 2623, - [2777] = 2777, - [2778] = 2613, - [2779] = 2779, - [2780] = 2631, - [2781] = 2633, - [2782] = 2680, - [2783] = 2609, + [2770] = 2717, + [2771] = 2714, + [2772] = 2772, + [2773] = 2695, + [2774] = 2696, + [2775] = 2739, + [2776] = 2697, + [2777] = 2698, + [2778] = 2753, + [2779] = 2741, + [2780] = 2744, + [2781] = 2781, + [2782] = 2720, + [2783] = 145, [2784] = 2784, - [2785] = 2605, - [2786] = 2786, - [2787] = 2704, - [2788] = 2681, - [2789] = 2789, - [2790] = 2628, + [2785] = 2713, + [2786] = 2710, + [2787] = 1663, + [2788] = 2772, + [2789] = 1664, + [2790] = 1665, [2791] = 2791, - [2792] = 2614, - [2793] = 2791, - [2794] = 2131, - [2795] = 2634, - [2796] = 2139, - [2797] = 2151, - [2798] = 2798, - [2799] = 2799, - [2800] = 2800, - [2801] = 2109, - [2802] = 2666, - [2803] = 2610, - [2804] = 2616, - [2805] = 2156, - [2806] = 2667, - [2807] = 2690, - [2808] = 2668, - [2809] = 2126, - [2810] = 2145, - [2811] = 2116, - [2812] = 2699, - [2813] = 2799, - [2814] = 2729, - [2815] = 2585, - [2816] = 2816, - [2817] = 2817, - [2818] = 2800, - [2819] = 2817, - [2820] = 2784, - [2821] = 2654, - [2822] = 2609, - [2823] = 2609, + [2792] = 2754, + [2793] = 2768, + [2794] = 2791, + [2795] = 2766, + [2796] = 2712, + [2797] = 2797, + [2798] = 2784, + [2799] = 2781, + [2800] = 2733, + [2801] = 2801, + [2802] = 2734, + [2803] = 2758, + [2804] = 2804, + [2805] = 2705, + [2806] = 2764, + [2807] = 2756, + [2808] = 1572, + [2809] = 1561, + [2810] = 2706, + [2811] = 2797, + [2812] = 2746, + [2813] = 2801, + [2814] = 2720, + [2815] = 2699, + [2816] = 2742, + [2817] = 2743, + [2818] = 2722, + [2819] = 2694, + [2820] = 2751, + [2821] = 2821, + [2822] = 2822, + [2823] = 2823, [2824] = 2824, - [2825] = 2605, - [2826] = 2791, - [2827] = 2598, - [2828] = 2612, - [2829] = 2605, - [2830] = 2791, - [2831] = 2673, - [2832] = 2732, + [2825] = 2825, + [2826] = 2826, + [2827] = 2827, + [2828] = 2828, + [2829] = 2829, + [2830] = 2830, + [2831] = 2831, + [2832] = 2832, [2833] = 2833, - [2834] = 2586, - [2835] = 2789, - [2836] = 2636, - [2837] = 2629, + [2834] = 2834, + [2835] = 2835, + [2836] = 2836, + [2837] = 2837, [2838] = 2838, - [2839] = 2615, - [2840] = 2670, - [2841] = 2696, - [2842] = 2602, - [2843] = 2632, - [2844] = 2624, - [2845] = 2675, - [2846] = 2846, - [2847] = 2847, + [2839] = 2839, + [2840] = 2383, + [2841] = 2841, + [2842] = 2842, + [2843] = 2843, + [2844] = 2844, + [2845] = 2824, + [2846] = 2821, + [2847] = 2822, [2848] = 2848, [2849] = 2849, [2850] = 2850, - [2851] = 2851, - [2852] = 2176, + [2851] = 2827, + [2852] = 2852, [2853] = 2853, - [2854] = 2854, + [2854] = 1210, [2855] = 2855, - [2856] = 2856, - [2857] = 2857, - [2858] = 2194, - [2859] = 2859, - [2860] = 2199, + [2856] = 2821, + [2857] = 2849, + [2858] = 2858, + [2859] = 2849, + [2860] = 2860, [2861] = 2861, [2862] = 2862, [2863] = 2863, [2864] = 2864, [2865] = 2865, - [2866] = 2866, - [2867] = 2867, + [2866] = 1256, + [2867] = 2821, [2868] = 2868, - [2869] = 2209, - [2870] = 2157, + [2869] = 2842, + [2870] = 2823, [2871] = 2871, [2872] = 2872, - [2873] = 2190, + [2873] = 2873, [2874] = 2874, - [2875] = 2187, + [2875] = 2875, [2876] = 2876, [2877] = 2877, - [2878] = 2850, + [2878] = 2878, [2879] = 2879, [2880] = 2880, - [2881] = 2881, - [2882] = 2882, - [2883] = 2883, + [2881] = 1255, + [2882] = 2839, + [2883] = 1251, [2884] = 2884, - [2885] = 2885, - [2886] = 170, - [2887] = 2887, + [2885] = 2828, + [2886] = 2855, + [2887] = 2861, [2888] = 2888, - [2889] = 2889, - [2890] = 2879, - [2891] = 2891, - [2892] = 2884, + [2889] = 2829, + [2890] = 2832, + [2891] = 2863, + [2892] = 2835, [2893] = 2893, - [2894] = 2894, - [2895] = 2895, + [2894] = 2849, + [2895] = 2888, [2896] = 2896, - [2897] = 2851, - [2898] = 2898, - [2899] = 2899, + [2897] = 2862, + [2898] = 2836, + [2899] = 2874, [2900] = 2900, [2901] = 2901, - [2902] = 2902, + [2902] = 2853, [2903] = 2903, [2904] = 2904, [2905] = 2905, [2906] = 2906, - [2907] = 2874, - [2908] = 2908, - [2909] = 2909, + [2907] = 2907, + [2908] = 2822, + [2909] = 1433, [2910] = 2910, [2911] = 2911, - [2912] = 2912, + [2912] = 2855, [2913] = 2913, [2914] = 2914, - [2915] = 2915, - [2916] = 2916, - [2917] = 2917, + [2915] = 2843, + [2916] = 2910, + [2917] = 2837, [2918] = 2918, - [2919] = 2868, - [2920] = 2920, - [2921] = 2921, - [2922] = 2922, - [2923] = 2923, - [2924] = 2924, - [2925] = 2925, - [2926] = 2926, + [2919] = 2390, + [2920] = 2838, + [2921] = 1522, + [2922] = 2863, + [2923] = 2853, + [2924] = 2900, + [2925] = 2868, + [2926] = 2871, [2927] = 2927, [2928] = 2928, - [2929] = 2929, - [2930] = 2885, - [2931] = 2889, - [2932] = 2182, - [2933] = 2204, - [2934] = 2934, - [2935] = 2846, + [2929] = 1634, + [2930] = 2830, + [2931] = 1292, + [2932] = 2864, + [2933] = 2862, + [2934] = 1253, + [2935] = 2935, [2936] = 2936, - [2937] = 2181, - [2938] = 2938, + [2937] = 2858, + [2938] = 2841, [2939] = 2939, - [2940] = 2940, - [2941] = 2941, - [2942] = 2903, - [2943] = 2943, - [2944] = 2173, + [2940] = 2855, + [2941] = 2910, + [2942] = 2884, + [2943] = 2831, + [2944] = 2944, [2945] = 2945, - [2946] = 2180, + [2946] = 2946, [2947] = 2947, [2948] = 2948, [2949] = 2949, - [2950] = 2208, - [2951] = 2948, + [2950] = 2950, + [2951] = 2951, [2952] = 2952, [2953] = 2953, [2954] = 2954, - [2955] = 2171, + [2955] = 2955, [2956] = 2956, [2957] = 2957, [2958] = 2958, [2959] = 2959, [2960] = 2960, - [2961] = 2945, - [2962] = 2962, + [2961] = 2961, + [2962] = 2955, [2963] = 2963, - [2964] = 2943, - [2965] = 2965, - [2966] = 2920, - [2967] = 2967, + [2964] = 2964, + [2965] = 2947, + [2966] = 2966, + [2967] = 157, [2968] = 2968, [2969] = 2969, - [2970] = 2939, + [2970] = 2970, [2971] = 2971, [2972] = 2972, [2973] = 2973, - [2974] = 2936, - [2975] = 2888, - [2976] = 2976, + [2974] = 2974, + [2975] = 2975, + [2976] = 2969, [2977] = 2977, - [2978] = 2978, - [2979] = 2929, + [2978] = 2404, + [2979] = 2979, [2980] = 2980, - [2981] = 2183, - [2982] = 2853, + [2981] = 2963, + [2982] = 2982, [2983] = 2983, - [2984] = 2871, - [2985] = 2985, + [2984] = 2959, + [2985] = 2971, [2986] = 2986, - [2987] = 2987, - [2988] = 2978, - [2989] = 2989, - [2990] = 2167, - [2991] = 2877, - [2992] = 2992, - [2993] = 2855, - [2994] = 2994, - [2995] = 2859, - [2996] = 2862, - [2997] = 2863, + [2987] = 2950, + [2988] = 2951, + [2989] = 2406, + [2990] = 2955, + [2991] = 2960, + [2992] = 2961, + [2993] = 2993, + [2994] = 2963, + [2995] = 2964, + [2996] = 2947, + [2997] = 2966, [2998] = 2998, - [2999] = 2999, + [2999] = 2979, [3000] = 3000, - [3001] = 2936, - [3002] = 2898, - [3003] = 2899, - [3004] = 3004, - [3005] = 2906, - [3006] = 2908, - [3007] = 2910, - [3008] = 2911, - [3009] = 2889, - [3010] = 3010, - [3011] = 2855, - [3012] = 2179, - [3013] = 3013, - [3014] = 3014, - [3015] = 2846, - [3016] = 2881, + [3001] = 3001, + [3002] = 2950, + [3003] = 3003, + [3004] = 2960, + [3005] = 2960, + [3006] = 3006, + [3007] = 2947, + [3008] = 2966, + [3009] = 3009, + [3010] = 2948, + [3011] = 3011, + [3012] = 3012, + [3013] = 2949, + [3014] = 2983, + [3015] = 2950, + [3016] = 3016, [3017] = 3017, [3018] = 3018, - [3019] = 3019, - [3020] = 3020, - [3021] = 2978, - [3022] = 3022, - [3023] = 3023, - [3024] = 2898, - [3025] = 2899, - [3026] = 3026, - [3027] = 3027, - [3028] = 2889, - [3029] = 3029, - [3030] = 2927, - [3031] = 2872, - [3032] = 2936, + [3019] = 2947, + [3020] = 2966, + [3021] = 2955, + [3022] = 2961, + [3023] = 2948, + [3024] = 2975, + [3025] = 3025, + [3026] = 2980, + [3027] = 2951, + [3028] = 3025, + [3029] = 2959, + [3030] = 3030, + [3031] = 3011, + [3032] = 3032, [3033] = 3033, [3034] = 3034, - [3035] = 411, - [3036] = 2918, - [3037] = 2211, - [3038] = 3010, - [3039] = 2896, + [3035] = 3035, + [3036] = 3036, + [3037] = 2954, + [3038] = 2973, + [3039] = 2964, [3040] = 3040, [3041] = 3041, - [3042] = 2956, - [3043] = 2987, - [3044] = 2957, + [3042] = 3042, + [3043] = 3043, + [3044] = 3044, [3045] = 3045, - [3046] = 2188, - [3047] = 2189, - [3048] = 2898, - [3049] = 2862, - [3050] = 2899, - [3051] = 2863, - [3052] = 2978, + [3046] = 3046, + [3047] = 3047, + [3048] = 2418, + [3049] = 2950, + [3050] = 3050, + [3051] = 2419, + [3052] = 3052, [3053] = 3053, - [3054] = 2900, - [3055] = 3055, + [3054] = 3054, + [3055] = 3009, [3056] = 3056, - [3057] = 2901, - [3058] = 2927, + [3057] = 3057, + [3058] = 3058, [3059] = 3059, - [3060] = 3060, + [3060] = 3052, [3061] = 3061, - [3062] = 3062, - [3063] = 3063, + [3062] = 2951, + [3063] = 3035, [3064] = 3064, - [3065] = 2170, + [3065] = 2424, [3066] = 3066, - [3067] = 2902, - [3068] = 2859, - [3069] = 2904, + [3067] = 3016, + [3068] = 3006, + [3069] = 3069, [3070] = 3070, - [3071] = 2847, - [3072] = 3072, + [3071] = 2433, + [3072] = 3036, [3073] = 3073, - [3074] = 2865, + [3074] = 3074, [3075] = 3075, - [3076] = 2174, - [3077] = 2175, - [3078] = 3034, - [3079] = 2906, - [3080] = 3018, - [3081] = 2926, + [3076] = 3076, + [3077] = 3077, + [3078] = 3078, + [3079] = 2956, + [3080] = 3080, + [3081] = 3081, [3082] = 3082, [3083] = 3083, - [3084] = 2908, - [3085] = 2905, - [3086] = 2177, - [3087] = 2987, - [3088] = 2967, - [3089] = 2178, + [3084] = 3084, + [3085] = 2963, + [3086] = 2429, + [3087] = 2998, + [3088] = 2964, + [3089] = 2954, [3090] = 3090, - [3091] = 3091, - [3092] = 2196, - [3093] = 2205, - [3094] = 2191, - [3095] = 2922, - [3096] = 2910, - [3097] = 2953, - [3098] = 2911, + [3091] = 3053, + [3092] = 3092, + [3093] = 3093, + [3094] = 2436, + [3095] = 2960, + [3096] = 2391, + [3097] = 2442, + [3098] = 2968, [3099] = 3099, - [3100] = 2163, + [3100] = 3100, [3101] = 3101, - [3102] = 2206, - [3103] = 2161, - [3104] = 2940, - [3105] = 2866, - [3106] = 2968, - [3107] = 2169, - [3108] = 2184, - [3109] = 3109, - [3110] = 2912, - [3111] = 2913, - [3112] = 3062, + [3102] = 2955, + [3103] = 3103, + [3104] = 3064, + [3105] = 3066, + [3106] = 2956, + [3107] = 3003, + [3108] = 3017, + [3109] = 3092, + [3110] = 3110, + [3111] = 3078, + [3112] = 2957, [3113] = 3113, [3114] = 3114, - [3115] = 3115, + [3115] = 2958, [3116] = 3116, - [3117] = 3017, - [3118] = 3118, - [3119] = 2925, - [3120] = 3060, - [3121] = 3121, - [3122] = 3122, - [3123] = 3064, - [3124] = 3061, - [3125] = 3125, - [3126] = 2959, - [3127] = 2882, + [3117] = 3117, + [3118] = 3044, + [3119] = 3061, + [3120] = 158, + [3121] = 3033, + [3122] = 3034, + [3123] = 3045, + [3124] = 2974, + [3125] = 2959, + [3126] = 3113, + [3127] = 3127, [3128] = 3128, - [3129] = 2914, - [3130] = 2915, - [3131] = 2960, - [3132] = 2207, - [3133] = 2849, + [3129] = 2953, + [3130] = 3130, + [3131] = 3081, + [3132] = 3083, + [3133] = 3080, [3134] = 3134, - [3135] = 2962, - [3136] = 3020, - [3137] = 2916, - [3138] = 3138, - [3139] = 3139, - [3140] = 2159, - [3141] = 2963, - [3142] = 3142, - [3143] = 2938, - [3144] = 2947, - [3145] = 3116, - [3146] = 2985, - [3147] = 2867, - [3148] = 3045, - [3149] = 2965, - [3150] = 2934, - [3151] = 3013, - [3152] = 3152, - [3153] = 2891, - [3154] = 2986, - [3155] = 2936, - [3156] = 3156, - [3157] = 3157, - [3158] = 3158, - [3159] = 3159, - [3160] = 3160, - [3161] = 3161, - [3162] = 3072, - [3163] = 3163, + [3135] = 2960, + [3136] = 2961, + [3137] = 3128, + [3138] = 3025, + [3139] = 3069, + [3140] = 3011, + [3141] = 2947, + [3142] = 3016, + [3143] = 3036, + [3144] = 3016, + [3145] = 2963, + [3146] = 3000, + [3147] = 3036, + [3148] = 2964, + [3149] = 3117, + [3150] = 2403, + [3151] = 3018, + [3152] = 3047, + [3153] = 3078, + [3154] = 2951, + [3155] = 3016, + [3156] = 3130, + [3157] = 3077, + [3158] = 3045, + [3159] = 2947, + [3160] = 3103, + [3161] = 3012, + [3162] = 3077, + [3163] = 3036, [3164] = 3164, - [3165] = 3073, - [3166] = 3166, + [3165] = 2966, + [3166] = 3047, [3167] = 3167, - [3168] = 3168, - [3169] = 3169, + [3168] = 2957, + [3169] = 2966, [3170] = 3170, - [3171] = 3171, + [3171] = 3167, [3172] = 3172, - [3173] = 3173, - [3174] = 3161, - [3175] = 3175, - [3176] = 3164, - [3177] = 3177, - [3178] = 3178, - [3179] = 3179, - [3180] = 3180, - [3181] = 3181, + [3173] = 3114, + [3174] = 2950, + [3175] = 3100, + [3176] = 2945, + [3177] = 3099, + [3178] = 2971, + [3179] = 2945, + [3180] = 2961, + [3181] = 2946, [3182] = 3182, [3183] = 3183, [3184] = 3184, [3185] = 3185, [3186] = 3186, - [3187] = 3187, - [3188] = 3188, - [3189] = 3189, - [3190] = 3190, - [3191] = 3191, - [3192] = 3192, + [3187] = 3184, + [3188] = 3073, + [3189] = 2946, + [3190] = 2972, + [3191] = 3110, + [3192] = 3066, [3193] = 3193, [3194] = 3194, - [3195] = 3195, - [3196] = 3169, + [3195] = 2954, + [3196] = 3054, [3197] = 3197, - [3198] = 3160, - [3199] = 3170, - [3200] = 3200, - [3201] = 3171, - [3202] = 3166, - [3203] = 3203, - [3204] = 3204, - [3205] = 3169, - [3206] = 3206, - [3207] = 3207, - [3208] = 3173, - [3209] = 3209, - [3210] = 3160, + [3198] = 3046, + [3199] = 2957, + [3200] = 2423, + [3201] = 3101, + [3202] = 3197, + [3203] = 2956, + [3204] = 2966, + [3205] = 3040, + [3206] = 2980, + [3207] = 3090, + [3208] = 3208, + [3209] = 3082, + [3210] = 3059, [3211] = 3211, - [3212] = 3179, - [3213] = 3213, - [3214] = 3214, - [3215] = 3215, - [3216] = 3216, - [3217] = 3217, - [3218] = 3218, - [3219] = 3219, - [3220] = 3220, - [3221] = 3164, - [3222] = 3222, - [3223] = 3223, - [3224] = 3170, - [3225] = 3225, - [3226] = 3173, - [3227] = 3161, - [3228] = 3175, - [3229] = 3229, + [3212] = 2952, + [3213] = 2970, + [3214] = 3186, + [3215] = 2969, + [3216] = 2977, + [3217] = 3047, + [3218] = 3073, + [3219] = 3074, + [3220] = 2986, + [3221] = 3042, + [3222] = 3172, + [3223] = 2971, + [3224] = 3075, + [3225] = 3077, + [3226] = 2949, + [3227] = 3074, + [3228] = 3228, + [3229] = 2948, [3230] = 3230, - [3231] = 3231, - [3232] = 3232, - [3233] = 3173, - [3234] = 3234, - [3235] = 3173, - [3236] = 3192, - [3237] = 3156, + [3231] = 3075, + [3232] = 2980, + [3233] = 2975, + [3234] = 2949, + [3235] = 3050, + [3236] = 3183, + [3237] = 3237, [3238] = 3238, [3239] = 3239, - [3240] = 3240, + [3240] = 3237, [3241] = 3241, - [3242] = 3187, - [3243] = 3160, + [3242] = 3242, + [3243] = 3243, [3244] = 3244, - [3245] = 3217, - [3246] = 3161, - [3247] = 3164, - [3248] = 3186, - [3249] = 3158, - [3250] = 3173, - [3251] = 3175, - [3252] = 3161, - [3253] = 3175, - [3254] = 3241, + [3245] = 3245, + [3246] = 3246, + [3247] = 3247, + [3248] = 3248, + [3249] = 3249, + [3250] = 3250, + [3251] = 3249, + [3252] = 3252, + [3253] = 3253, + [3254] = 3254, [3255] = 3255, - [3256] = 3203, - [3257] = 3184, + [3256] = 3256, + [3257] = 3257, [3258] = 3258, - [3259] = 3170, + [3259] = 3259, [3260] = 3260, [3261] = 3261, - [3262] = 3262, - [3263] = 3217, + [3262] = 3242, + [3263] = 3263, [3264] = 3264, - [3265] = 3173, - [3266] = 3161, - [3267] = 3175, + [3265] = 3265, + [3266] = 3266, + [3267] = 3267, [3268] = 3268, [3269] = 3269, [3270] = 3270, - [3271] = 3178, + [3271] = 3271, [3272] = 3272, - [3273] = 3217, - [3274] = 3173, - [3275] = 3161, - [3276] = 3175, - [3277] = 3180, + [3273] = 3273, + [3274] = 3274, + [3275] = 3275, + [3276] = 3276, + [3277] = 3277, [3278] = 3278, - [3279] = 3229, - [3280] = 3217, - [3281] = 3173, - [3282] = 3161, - [3283] = 3175, - [3284] = 3217, - [3285] = 3161, - [3286] = 3175, - [3287] = 3217, - [3288] = 3161, - [3289] = 3175, - [3290] = 3217, - [3291] = 3161, - [3292] = 3175, - [3293] = 3217, - [3294] = 3161, - [3295] = 3175, - [3296] = 3173, + [3279] = 2471, + [3280] = 3280, + [3281] = 2472, + [3282] = 3282, + [3283] = 3283, + [3284] = 3284, + [3285] = 3285, + [3286] = 3286, + [3287] = 3287, + [3288] = 3288, + [3289] = 3289, + [3290] = 3290, + [3291] = 3291, + [3292] = 3292, + [3293] = 3293, + [3294] = 3258, + [3295] = 3245, + [3296] = 3247, [3297] = 3297, - [3298] = 3298, - [3299] = 3299, - [3300] = 3300, - [3301] = 3301, - [3302] = 3209, - [3303] = 3303, - [3304] = 3270, - [3305] = 1117, - [3306] = 1118, - [3307] = 3232, - [3308] = 3308, - [3309] = 3190, + [3298] = 2463, + [3299] = 2464, + [3300] = 2473, + [3301] = 2465, + [3302] = 3285, + [3303] = 3290, + [3304] = 2466, + [3305] = 2467, + [3306] = 3306, + [3307] = 3307, + [3308] = 2468, + [3309] = 3309, [3310] = 3310, - [3311] = 3238, - [3312] = 3178, + [3311] = 2474, + [3312] = 3312, [3313] = 3313, [3314] = 3314, - [3315] = 3225, - [3316] = 3316, - [3317] = 3317, - [3318] = 3193, - [3319] = 3317, - [3320] = 3211, - [3321] = 3200, + [3315] = 3315, + [3316] = 2475, + [3317] = 2477, + [3318] = 3318, + [3319] = 3319, + [3320] = 3306, + [3321] = 2478, [3322] = 3322, - [3323] = 3190, - [3324] = 3314, + [3323] = 3323, + [3324] = 3324, [3325] = 3325, [3326] = 3326, - [3327] = 3327, + [3327] = 2480, [3328] = 3328, - [3329] = 3240, + [3329] = 3329, [3330] = 3330, [3331] = 3331, [3332] = 3332, - [3333] = 3216, + [3333] = 2483, [3334] = 3334, - [3335] = 3171, + [3335] = 3263, [3336] = 3336, - [3337] = 3173, - [3338] = 3168, + [3337] = 3337, + [3338] = 2485, [3339] = 3339, - [3340] = 3255, - [3341] = 3300, - [3342] = 3239, - [3343] = 3159, - [3344] = 3261, - [3345] = 1476, + [3340] = 3252, + [3341] = 3255, + [3342] = 2486, + [3343] = 3284, + [3344] = 3309, + [3345] = 3345, [3346] = 3346, - [3347] = 3310, - [3348] = 3316, - [3349] = 3299, - [3350] = 3298, - [3351] = 3217, - [3352] = 3346, - [3353] = 3331, - [3354] = 3204, - [3355] = 3207, - [3356] = 3230, - [3357] = 3231, - [3358] = 3262, - [3359] = 3327, - [3360] = 3360, - [3361] = 3184, - [3362] = 3268, + [3347] = 3259, + [3348] = 164, + [3349] = 3349, + [3350] = 3350, + [3351] = 3351, + [3352] = 3352, + [3353] = 3353, + [3354] = 3354, + [3355] = 3355, + [3356] = 3312, + [3357] = 3313, + [3358] = 3358, + [3359] = 3359, + [3360] = 3345, + [3361] = 3361, + [3362] = 3362, [3363] = 3363, - [3364] = 3189, + [3364] = 3253, [3365] = 3365, - [3366] = 3360, - [3367] = 3330, - [3368] = 3301, + [3366] = 3366, + [3367] = 3367, + [3368] = 3368, [3369] = 3369, - [3370] = 3238, + [3370] = 3370, [3371] = 3371, - [3372] = 3372, - [3373] = 3332, - [3374] = 3175, - [3375] = 3157, - [3376] = 1507, - [3377] = 3217, - [3378] = 3308, + [3372] = 2451, + [3373] = 2487, + [3374] = 3374, + [3375] = 3375, + [3376] = 3376, + [3377] = 3377, + [3378] = 3378, [3379] = 3379, - [3380] = 3301, + [3380] = 3380, [3381] = 3381, - [3382] = 3270, - [3383] = 1117, - [3384] = 1118, - [3385] = 3328, - [3386] = 3308, - [3387] = 3223, - [3388] = 3193, - [3389] = 3389, + [3382] = 3382, + [3383] = 3383, + [3384] = 3384, + [3385] = 3385, + [3386] = 3315, + [3387] = 3387, + [3388] = 2496, + [3389] = 2497, [3390] = 3390, - [3391] = 3391, - [3392] = 3392, + [3391] = 2458, + [3392] = 2459, [3393] = 3393, - [3394] = 3394, - [3395] = 3395, - [3396] = 3173, + [3394] = 2460, + [3395] = 2461, + [3396] = 3396, [3397] = 3397, - [3398] = 3301, - [3399] = 3218, - [3400] = 3308, - [3401] = 1526, - [3402] = 1421, - [3403] = 3301, - [3404] = 3308, + [3398] = 3398, + [3399] = 3399, + [3400] = 3400, + [3401] = 3401, + [3402] = 3239, + [3403] = 3403, + [3404] = 3404, [3405] = 3405, [3406] = 3406, - [3407] = 3195, + [3407] = 2470, [3408] = 3408, - [3409] = 3191, - [3410] = 3157, - [3411] = 3216, - [3412] = 3270, - [3413] = 3260, - [3414] = 3300, - [3415] = 3160, - [3416] = 3219, - [3417] = 3158, - [3418] = 3193, - [3419] = 3178, + [3409] = 3409, + [3410] = 3272, + [3411] = 3380, + [3412] = 3318, + [3413] = 3238, + [3414] = 3414, + [3415] = 3237, + [3416] = 3243, + [3417] = 3244, + [3418] = 3361, + [3419] = 2469, [3420] = 3420, - [3421] = 3395, - [3422] = 3185, - [3423] = 3393, - [3424] = 3424, - [3425] = 3334, - [3426] = 3214, - [3427] = 3336, - [3428] = 3428, - [3429] = 3164, - [3430] = 3389, - [3431] = 3167, - [3432] = 3264, - [3433] = 3240, - [3434] = 1456, - [3435] = 3216, - [3436] = 3182, - [3437] = 3180, - [3438] = 3172, - [3439] = 3217, - [3440] = 3408, - [3441] = 3260, - [3442] = 3182, - [3443] = 3260, - [3444] = 3182, - [3445] = 3158, + [3421] = 3319, + [3422] = 3362, + [3423] = 3274, + [3424] = 3275, + [3425] = 3425, + [3426] = 3287, + [3427] = 3289, + [3428] = 3291, + [3429] = 3429, + [3430] = 3330, + [3431] = 3377, + [3432] = 3332, + [3433] = 3387, + [3434] = 3322, + [3435] = 3435, + [3436] = 3265, + [3437] = 3274, + [3438] = 3275, + [3439] = 3381, + [3440] = 3239, + [3441] = 3441, + [3442] = 3276, + [3443] = 3323, + [3444] = 3444, + [3445] = 3445, [3446] = 3446, - [3447] = 3428, - [3448] = 3270, - [3449] = 3371, - [3450] = 3180, - [3451] = 3451, - [3452] = 3408, - [3453] = 3446, - [3454] = 3424, - [3455] = 3190, - [3456] = 3197, - [3457] = 3313, + [3447] = 3274, + [3448] = 3275, + [3449] = 3330, + [3450] = 3324, + [3451] = 3399, + [3452] = 3387, + [3453] = 3278, + [3454] = 3326, + [3455] = 3455, + [3456] = 409, + [3457] = 3457, [3458] = 3458, [3459] = 3459, [3460] = 3460, - [3461] = 3461, + [3461] = 3280, [3462] = 3462, [3463] = 3463, - [3464] = 3464, - [3465] = 3465, - [3466] = 3466, + [3464] = 3384, + [3465] = 2482, + [3466] = 2484, [3467] = 3467, - [3468] = 3468, - [3469] = 3469, - [3470] = 3470, - [3471] = 3471, - [3472] = 3472, - [3473] = 3473, - [3474] = 3474, - [3475] = 3475, - [3476] = 3476, + [3468] = 3365, + [3469] = 3267, + [3470] = 2488, + [3471] = 2489, + [3472] = 2492, + [3473] = 3366, + [3474] = 2495, + [3475] = 3368, + [3476] = 3282, [3477] = 3477, - [3478] = 3478, - [3479] = 3479, - [3480] = 3480, - [3481] = 3481, + [3478] = 3398, + [3479] = 3385, + [3480] = 3400, + [3481] = 3408, [3482] = 3482, [3483] = 3483, - [3484] = 3484, - [3485] = 3485, + [3484] = 3363, + [3485] = 3369, [3486] = 3486, [3487] = 3487, [3488] = 3488, - [3489] = 3488, + [3489] = 3489, [3490] = 3490, - [3491] = 3491, - [3492] = 3492, - [3493] = 3493, - [3494] = 3494, - [3495] = 3495, + [3491] = 2450, + [3492] = 3398, + [3493] = 3387, + [3494] = 3370, + [3495] = 3352, [3496] = 3496, [3497] = 3497, [3498] = 3498, - [3499] = 3469, - [3500] = 3500, - [3501] = 3501, + [3499] = 3330, + [3500] = 3353, + [3501] = 3238, [3502] = 3502, [3503] = 3503, - [3504] = 3471, + [3504] = 3504, [3505] = 3505, [3506] = 3506, [3507] = 3507, - [3508] = 3508, - [3509] = 3509, - [3510] = 3510, + [3508] = 3287, + [3509] = 3371, + [3510] = 3269, [3511] = 3511, - [3512] = 3492, + [3512] = 3289, [3513] = 3513, - [3514] = 3514, + [3514] = 2479, [3515] = 3515, [3516] = 3516, [3517] = 3517, [3518] = 3518, [3519] = 3519, - [3520] = 178, - [3521] = 3490, - [3522] = 3522, - [3523] = 3500, + [3520] = 3520, + [3521] = 3521, + [3522] = 3354, + [3523] = 3405, [3524] = 3524, - [3525] = 3525, - [3526] = 3526, - [3527] = 3459, - [3528] = 3459, - [3529] = 3529, + [3525] = 3325, + [3526] = 3243, + [3527] = 3244, + [3528] = 3261, + [3529] = 3332, [3530] = 3530, - [3531] = 3503, - [3532] = 3532, + [3531] = 3531, + [3532] = 3399, [3533] = 3533, [3534] = 3534, [3535] = 3535, - [3536] = 3500, - [3537] = 3488, + [3536] = 3239, + [3537] = 3246, [3538] = 3538, [3539] = 3539, - [3540] = 3540, - [3541] = 3541, - [3542] = 3478, - [3543] = 3543, + [3540] = 3375, + [3541] = 3387, + [3542] = 3376, + [3543] = 3379, [3544] = 3544, - [3545] = 3545, - [3546] = 3546, - [3547] = 3505, - [3548] = 3473, - [3549] = 3488, - [3550] = 3550, - [3551] = 3551, - [3552] = 3552, + [3545] = 3404, + [3546] = 3270, + [3547] = 3382, + [3548] = 3441, + [3549] = 3248, + [3550] = 3498, + [3551] = 3291, + [3552] = 3459, [3553] = 3553, - [3554] = 3492, + [3554] = 3293, [3555] = 3555, - [3556] = 3556, + [3556] = 3374, [3557] = 3557, - [3558] = 3492, + [3558] = 3334, [3559] = 3559, - [3560] = 3468, - [3561] = 3561, + [3560] = 3277, + [3561] = 3264, [3562] = 3562, - [3563] = 3476, - [3564] = 3564, - [3565] = 3562, - [3566] = 3566, - [3567] = 3463, - [3568] = 3568, - [3569] = 3569, - [3570] = 3570, - [3571] = 3571, - [3572] = 3572, - [3573] = 3515, - [3574] = 3574, - [3575] = 3488, + [3563] = 3559, + [3564] = 3557, + [3565] = 3444, + [3566] = 3516, + [3567] = 3383, + [3568] = 3445, + [3569] = 3336, + [3570] = 3460, + [3571] = 3483, + [3572] = 3337, + [3573] = 3573, + [3574] = 3358, + [3575] = 3502, [3576] = 3576, - [3577] = 3487, - [3578] = 3578, - [3579] = 3484, - [3580] = 3469, - [3581] = 3581, - [3582] = 3582, - [3583] = 3583, - [3584] = 3584, - [3585] = 3543, + [3577] = 3406, + [3578] = 3250, + [3579] = 3409, + [3580] = 3256, + [3581] = 3378, + [3582] = 3467, + [3583] = 3463, + [3584] = 3293, + [3585] = 3585, [3586] = 3586, [3587] = 3587, - [3588] = 3477, - [3589] = 3460, - [3590] = 3461, - [3591] = 3507, - [3592] = 3503, - [3593] = 3583, + [3588] = 3588, + [3589] = 3589, + [3590] = 3590, + [3591] = 3591, + [3592] = 3592, + [3593] = 3593, [3594] = 3594, [3595] = 3595, - [3596] = 3491, - [3597] = 3493, - [3598] = 3576, - [3599] = 3486, - [3600] = 3472, + [3596] = 3596, + [3597] = 3597, + [3598] = 3598, + [3599] = 3599, + [3600] = 3598, [3601] = 3601, [3602] = 3602, - [3603] = 3603, - [3604] = 3557, - [3605] = 3605, - [3606] = 3545, + [3603] = 3592, + [3604] = 3604, + [3605] = 3594, + [3606] = 3606, [3607] = 3607, - [3608] = 3608, - [3609] = 3510, + [3608] = 3591, + [3609] = 3609, [3610] = 3610, - [3611] = 3476, - [3612] = 3477, - [3613] = 3478, + [3611] = 3611, + [3612] = 3612, + [3613] = 3613, [3614] = 3614, - [3615] = 3480, - [3616] = 3616, - [3617] = 3578, - [3618] = 3607, - [3619] = 3468, + [3615] = 3602, + [3616] = 3587, + [3617] = 3614, + [3618] = 3618, + [3619] = 3619, [3620] = 3620, [3621] = 3621, - [3622] = 3519, - [3623] = 3583, - [3624] = 3543, - [3625] = 3610, - [3626] = 3533, + [3622] = 3601, + [3623] = 3623, + [3624] = 3624, + [3625] = 3625, + [3626] = 3626, [3627] = 3627, - [3628] = 3461, + [3628] = 3628, [3629] = 3629, - [3630] = 3518, - [3631] = 3594, - [3632] = 3516, - [3633] = 3553, - [3634] = 3557, - [3635] = 3635, + [3630] = 3630, + [3631] = 3631, + [3632] = 3632, + [3633] = 3633, + [3634] = 3634, + [3635] = 3619, [3636] = 3636, - [3637] = 3583, + [3637] = 3637, [3638] = 3638, - [3639] = 3477, - [3640] = 3480, + [3639] = 3639, + [3640] = 3623, [3641] = 3641, [3642] = 3642, - [3643] = 3467, - [3644] = 3517, - [3645] = 3543, - [3646] = 3594, - [3647] = 3492, - [3648] = 3557, + [3643] = 3643, + [3644] = 3593, + [3645] = 3645, + [3646] = 3625, + [3647] = 3647, + [3648] = 3627, [3649] = 3649, - [3650] = 3650, - [3651] = 3480, - [3652] = 3543, - [3653] = 3594, - [3654] = 3557, - [3655] = 3543, - [3656] = 3480, - [3657] = 3594, - [3658] = 3557, - [3659] = 3480, - [3660] = 3594, - [3661] = 3594, - [3662] = 3594, - [3663] = 3594, - [3664] = 3594, - [3665] = 3530, - [3666] = 3638, - [3667] = 3541, - [3668] = 3668, - [3669] = 3650, - [3670] = 3641, - [3671] = 3498, - [3672] = 3616, - [3673] = 3629, - [3674] = 3503, - [3675] = 3497, - [3676] = 3546, - [3677] = 3532, - [3678] = 3574, + [3650] = 3602, + [3651] = 3602, + [3652] = 3590, + [3653] = 3653, + [3654] = 3654, + [3655] = 3590, + [3656] = 3596, + [3657] = 3597, + [3658] = 3610, + [3659] = 3659, + [3660] = 3591, + [3661] = 3661, + [3662] = 3611, + [3663] = 3602, + [3664] = 3587, + [3665] = 3614, + [3666] = 3666, + [3667] = 3667, + [3668] = 1779, + [3669] = 3669, + [3670] = 3634, + [3671] = 1780, + [3672] = 3672, + [3673] = 3673, + [3674] = 3596, + [3675] = 3675, + [3676] = 1689, + [3677] = 3677, + [3678] = 3585, [3679] = 3679, - [3680] = 3621, - [3681] = 3501, + [3680] = 3590, + [3681] = 3637, [3682] = 3682, - [3683] = 3529, - [3684] = 3525, - [3685] = 3679, - [3686] = 3686, - [3687] = 3687, + [3683] = 3597, + [3684] = 3591, + [3685] = 3602, + [3686] = 3587, + [3687] = 3614, [3688] = 3688, - [3689] = 3576, - [3690] = 3488, - [3691] = 3559, - [3692] = 3460, + [3689] = 3689, + [3690] = 3690, + [3691] = 3639, + [3692] = 3692, [3693] = 3693, - [3694] = 181, - [3695] = 3461, - [3696] = 3473, + [3694] = 3694, + [3695] = 3695, + [3696] = 3696, [3697] = 3697, - [3698] = 3698, - [3699] = 3603, - [3700] = 3465, - [3701] = 3701, - [3702] = 3682, - [3703] = 3701, - [3704] = 3704, - [3705] = 3705, - [3706] = 3706, - [3707] = 3480, - [3708] = 3687, - [3709] = 3492, - [3710] = 3514, - [3711] = 3556, - [3712] = 3594, - [3713] = 3608, - [3714] = 3476, + [3698] = 3597, + [3699] = 3699, + [3700] = 3602, + [3701] = 3587, + [3702] = 3614, + [3703] = 3641, + [3704] = 3597, + [3705] = 3613, + [3706] = 3645, + [3707] = 3707, + [3708] = 3595, + [3709] = 3597, + [3710] = 3710, + [3711] = 3602, + [3712] = 3587, + [3713] = 3614, + [3714] = 3604, [3715] = 3715, - [3716] = 3649, - [3717] = 3704, - [3718] = 3526, - [3719] = 3719, - [3720] = 3720, - [3721] = 3495, - [3722] = 3584, - [3723] = 3494, - [3724] = 3724, - [3725] = 3472, - [3726] = 3636, - [3727] = 3511, - [3728] = 3505, - [3729] = 3650, - [3730] = 3641, - [3731] = 3546, - [3732] = 3532, - [3733] = 3602, - [3734] = 3473, - [3735] = 3650, - [3736] = 3532, - [3737] = 3459, - [3738] = 3557, - [3739] = 3532, - [3740] = 3532, - [3741] = 3532, - [3742] = 3742, - [3743] = 3642, - [3744] = 3744, - [3745] = 3571, - [3746] = 3496, - [3747] = 3572, - [3748] = 3748, - [3749] = 3749, - [3750] = 3506, - [3751] = 3515, - [3752] = 3724, - [3753] = 3544, - [3754] = 3485, - [3755] = 3601, - [3756] = 3698, - [3757] = 3594, - [3758] = 3614, - [3759] = 3759, - [3760] = 3482, - [3761] = 3587, + [3716] = 3597, + [3717] = 3602, + [3718] = 3587, + [3719] = 3614, + [3720] = 3597, + [3721] = 3587, + [3722] = 3614, + [3723] = 3597, + [3724] = 3587, + [3725] = 3614, + [3726] = 3597, + [3727] = 3587, + [3728] = 3614, + [3729] = 3597, + [3730] = 3587, + [3731] = 3614, + [3732] = 3732, + [3733] = 3733, + [3734] = 3734, + [3735] = 3673, + [3736] = 3677, + [3737] = 3737, + [3738] = 3738, + [3739] = 3739, + [3740] = 1781, + [3741] = 3741, + [3742] = 3598, + [3743] = 1531, + [3744] = 1533, + [3745] = 3745, + [3746] = 3588, + [3747] = 3747, + [3748] = 3620, + [3749] = 3590, + [3750] = 3626, + [3751] = 3647, + [3752] = 3752, + [3753] = 3753, + [3754] = 3754, + [3755] = 3755, + [3756] = 3756, + [3757] = 3757, + [3758] = 3595, + [3759] = 3596, + [3760] = 3760, + [3761] = 3761, [3762] = 3762, - [3763] = 3742, - [3764] = 3620, - [3765] = 3607, - [3766] = 3602, - [3767] = 3706, - [3768] = 3686, - [3769] = 3475, - [3770] = 3550, - [3771] = 3595, - [3772] = 3561, - [3773] = 3534, - [3774] = 3602, - [3775] = 3586, - [3776] = 3478, - [3777] = 3469, + [3763] = 3597, + [3764] = 3764, + [3765] = 3757, + [3766] = 3598, + [3767] = 3741, + [3768] = 3768, + [3769] = 3769, + [3770] = 3770, + [3771] = 3771, + [3772] = 3601, + [3773] = 3661, + [3774] = 1681, + [3775] = 3775, + [3776] = 3752, + [3777] = 3777, [3778] = 3778, - [3779] = 3779, - [3780] = 3780, - [3781] = 3781, + [3779] = 3511, + [3780] = 3520, + [3781] = 3739, [3782] = 3782, [3783] = 3783, [3784] = 3784, + [3785] = 3785, + [3786] = 3786, + [3787] = 3591, + [3788] = 3606, + [3789] = 3690, + [3790] = 3790, + [3791] = 3609, + [3792] = 3629, + [3793] = 3793, + [3794] = 3794, + [3795] = 3795, + [3796] = 3796, + [3797] = 3797, + [3798] = 3610, + [3799] = 3770, + [3800] = 3800, + [3801] = 3611, + [3802] = 3612, + [3803] = 3803, + [3804] = 3804, + [3805] = 3805, + [3806] = 3806, + [3807] = 3653, + [3808] = 3733, + [3809] = 3809, + [3810] = 3771, + [3811] = 3811, + [3812] = 3643, + [3813] = 3813, + [3814] = 3777, + [3815] = 3790, + [3816] = 3816, + [3817] = 3636, + [3818] = 3611, + [3819] = 3819, + [3820] = 3612, + [3821] = 3821, + [3822] = 3602, + [3823] = 3823, + [3824] = 3613, + [3825] = 3756, + [3826] = 3636, + [3827] = 3827, + [3828] = 3587, + [3829] = 3829, + [3830] = 3614, + [3831] = 3693, + [3832] = 3832, + [3833] = 3761, + [3834] = 3659, + [3835] = 3835, + [3836] = 3836, + [3837] = 3837, + [3838] = 3739, + [3839] = 3621, + [3840] = 1531, + [3841] = 1533, + [3842] = 3842, + [3843] = 3745, + [3844] = 3624, + [3845] = 3588, + [3846] = 3755, + [3847] = 3694, + [3848] = 3760, + [3849] = 3737, + [3850] = 3803, + [3851] = 3764, + [3852] = 3699, + [3853] = 3747, + [3854] = 3739, + [3855] = 3816, + [3856] = 3745, + [3857] = 3805, + [3858] = 3858, + [3859] = 3793, + [3860] = 3784, + [3861] = 3739, + [3862] = 3745, + [3863] = 3675, + [3864] = 3642, + [3865] = 3732, + [3866] = 3669, + [3867] = 3598, + [3868] = 3868, + [3869] = 3679, + [3870] = 3870, + [3871] = 3589, + [3872] = 3688, + [3873] = 3602, + [3874] = 3874, + [3875] = 3707, + [3876] = 3755, + [3877] = 3621, + [3878] = 3858, + [3879] = 3794, + [3880] = 3629, + [3881] = 3813, + [3882] = 3695, + [3883] = 3710, + [3884] = 3809, + [3885] = 3649, + [3886] = 3874, + [3887] = 3887, + [3888] = 3888, + [3889] = 3753, + [3890] = 3755, + [3891] = 3666, + [3892] = 3823, + [3893] = 3836, + [3894] = 3894, + [3895] = 3672, + [3896] = 3628, + [3897] = 3894, + [3898] = 3762, + [3899] = 3630, + [3900] = 3738, + [3901] = 3585, + [3902] = 3753, + [3903] = 3585, + [3904] = 3753, + [3905] = 3642, + [3906] = 3601, + [3907] = 3775, + [3908] = 3586, + [3909] = 3795, + [3910] = 3624, + [3911] = 3624, + [3912] = 3593, + [3913] = 3745, + [3914] = 3914, + [3915] = 3783, + [3916] = 3835, + [3917] = 3636, + [3918] = 3918, + [3919] = 3868, + [3920] = 3796, + [3921] = 3621, + [3922] = 3602, + [3923] = 3887, + [3924] = 3924, + [3925] = 3925, + [3926] = 3926, + [3927] = 3927, + [3928] = 3928, + [3929] = 3929, + [3930] = 3930, + [3931] = 3931, + [3932] = 3932, + [3933] = 3933, + [3934] = 3934, + [3935] = 3935, + [3936] = 3936, + [3937] = 3937, + [3938] = 3938, + [3939] = 3939, + [3940] = 3940, + [3941] = 3934, + [3942] = 3942, + [3943] = 3943, + [3944] = 3944, + [3945] = 3945, + [3946] = 3946, + [3947] = 3947, + [3948] = 3948, + [3949] = 3949, + [3950] = 3950, + [3951] = 3931, + [3952] = 3952, + [3953] = 3953, + [3954] = 3954, + [3955] = 3955, + [3956] = 3956, + [3957] = 3957, + [3958] = 3958, + [3959] = 3959, + [3960] = 3960, + [3961] = 3961, + [3962] = 3962, + [3963] = 3963, + [3964] = 3964, + [3965] = 3965, + [3966] = 3940, + [3967] = 3940, + [3968] = 3968, + [3969] = 3968, + [3970] = 3970, + [3971] = 3971, + [3972] = 3972, + [3973] = 3973, + [3974] = 3974, + [3975] = 3961, + [3976] = 3976, + [3977] = 3977, + [3978] = 3978, + [3979] = 3979, + [3980] = 3980, + [3981] = 3981, + [3982] = 3982, + [3983] = 3983, + [3984] = 3953, + [3985] = 3985, + [3986] = 3983, + [3987] = 3987, + [3988] = 3988, + [3989] = 3989, + [3990] = 3990, + [3991] = 3991, + [3992] = 3992, + [3993] = 3936, + [3994] = 3994, + [3995] = 3995, + [3996] = 3996, + [3997] = 3988, + [3998] = 3954, + [3999] = 3999, + [4000] = 4000, + [4001] = 4001, + [4002] = 4002, + [4003] = 3980, + [4004] = 3947, + [4005] = 4005, + [4006] = 4006, + [4007] = 4007, + [4008] = 4008, + [4009] = 4009, + [4010] = 4010, + [4011] = 4011, + [4012] = 4012, + [4013] = 4013, + [4014] = 3933, + [4015] = 4015, + [4016] = 4016, + [4017] = 4017, + [4018] = 3925, + [4019] = 3957, + [4020] = 4020, + [4021] = 3958, + [4022] = 4022, + [4023] = 4023, + [4024] = 4024, + [4025] = 4025, + [4026] = 4026, + [4027] = 3968, + [4028] = 4028, + [4029] = 4029, + [4030] = 4030, + [4031] = 3952, + [4032] = 4032, + [4033] = 4033, + [4034] = 4034, + [4035] = 3931, + [4036] = 3961, + [4037] = 4037, + [4038] = 4038, + [4039] = 4039, + [4040] = 4040, + [4041] = 4041, + [4042] = 4042, + [4043] = 3971, + [4044] = 4044, + [4045] = 4044, + [4046] = 4046, + [4047] = 4047, + [4048] = 4048, + [4049] = 4049, + [4050] = 4050, + [4051] = 4051, + [4052] = 3929, + [4053] = 4053, + [4054] = 4026, + [4055] = 4055, + [4056] = 4056, + [4057] = 4057, + [4058] = 4058, + [4059] = 3994, + [4060] = 4060, + [4061] = 3937, + [4062] = 152, + [4063] = 156, + [4064] = 3947, + [4065] = 4065, + [4066] = 4066, + [4067] = 4067, + [4068] = 4007, + [4069] = 4008, + [4070] = 3943, + [4071] = 4051, + [4072] = 4072, + [4073] = 3938, + [4074] = 4029, + [4075] = 4075, + [4076] = 4076, + [4077] = 4077, + [4078] = 3973, + [4079] = 4079, + [4080] = 4080, + [4081] = 4081, + [4082] = 4048, + [4083] = 4017, + [4084] = 4084, + [4085] = 3932, + [4086] = 3959, + [4087] = 4053, + [4088] = 4088, + [4089] = 3980, + [4090] = 3999, + [4091] = 3943, + [4092] = 4092, + [4093] = 4093, + [4094] = 4028, + [4095] = 4077, + [4096] = 3991, + [4097] = 4081, + [4098] = 3968, + [4099] = 4099, + [4100] = 4100, + [4101] = 3938, + [4102] = 4102, + [4103] = 4103, + [4104] = 3932, + [4105] = 3933, + [4106] = 3934, + [4107] = 4000, + [4108] = 3936, + [4109] = 4010, + [4110] = 3995, + [4111] = 4012, + [4112] = 3980, + [4113] = 4113, + [4114] = 4114, + [4115] = 4115, + [4116] = 3961, + [4117] = 3973, + [4118] = 4093, + [4119] = 4119, + [4120] = 4120, + [4121] = 4017, + [4122] = 4122, + [4123] = 4123, + [4124] = 4053, + [4125] = 4125, + [4126] = 4126, + [4127] = 4041, + [4128] = 4002, + [4129] = 3973, + [4130] = 4130, + [4131] = 4023, + [4132] = 3933, + [4133] = 3936, + [4134] = 3927, + [4135] = 4135, + [4136] = 4136, + [4137] = 4046, + [4138] = 3973, + [4139] = 4053, + [4140] = 3960, + [4141] = 4081, + [4142] = 4142, + [4143] = 4006, + [4144] = 3936, + [4145] = 3973, + [4146] = 4053, + [4147] = 4081, + [4148] = 3936, + [4149] = 4053, + [4150] = 4081, + [4151] = 3936, + [4152] = 4053, + [4153] = 4053, + [4154] = 4053, + [4155] = 4053, + [4156] = 4053, + [4157] = 4040, + [4158] = 3944, + [4159] = 3955, + [4160] = 4060, + [4161] = 4161, + [4162] = 4079, + [4163] = 3996, + [4164] = 4067, + [4165] = 4165, + [4166] = 4166, + [4167] = 4167, + [4168] = 4168, + [4169] = 3965, + [4170] = 4103, + [4171] = 4066, + [4172] = 4057, + [4173] = 4130, + [4174] = 4034, + [4175] = 4114, + [4176] = 4042, + [4177] = 4048, + [4178] = 4178, + [4179] = 4017, + [4180] = 4180, + [4181] = 3968, + [4182] = 3971, + [4183] = 4183, + [4184] = 4056, + [4185] = 4126, + [4186] = 4037, + [4187] = 4187, + [4188] = 3982, + [4189] = 4161, + [4190] = 4190, + [4191] = 4016, + [4192] = 3946, + [4193] = 4032, + [4194] = 3964, + [4195] = 3962, + [4196] = 4113, + [4197] = 4053, + [4198] = 4190, + [4199] = 4199, + [4200] = 4180, + [4201] = 4201, + [4202] = 4202, + [4203] = 4203, + [4204] = 4168, + [4205] = 4199, + [4206] = 3931, + [4207] = 4207, + [4208] = 4038, + [4209] = 4209, + [4210] = 4210, + [4211] = 3988, + [4212] = 4212, + [4213] = 4213, + [4214] = 4214, + [4215] = 4212, + [4216] = 4055, + [4217] = 4123, + [4218] = 3945, + [4219] = 4093, + [4220] = 4220, + [4221] = 4001, + [4222] = 4077, + [4223] = 4223, + [4224] = 3971, + [4225] = 4225, + [4226] = 4226, + [4227] = 4009, + [4228] = 4115, + [4229] = 4229, + [4230] = 3992, + [4231] = 4081, + [4232] = 3980, + [4233] = 4226, + [4234] = 4030, + [4235] = 3938, + [4236] = 4236, + [4237] = 4187, + [4238] = 3930, + [4239] = 3970, + [4240] = 4076, + [4241] = 4161, + [4242] = 4079, + [4243] = 4168, + [4244] = 3965, + [4245] = 4245, + [4246] = 4044, + [4247] = 4161, + [4248] = 4079, + [4249] = 3965, + [4250] = 4250, + [4251] = 4038, + [4252] = 3965, + [4253] = 3965, + [4254] = 3965, + [4255] = 4102, + [4256] = 4256, + [4257] = 4207, + [4258] = 4100, + [4259] = 4201, + [4260] = 4236, + [4261] = 3990, + [4262] = 4119, + [4263] = 4245, + [4264] = 4020, + [4265] = 4135, + [4266] = 3949, + [4267] = 3976, + [4268] = 4025, + [4269] = 3972, + [4270] = 4022, + [4271] = 4122, + [4272] = 4058, + [4273] = 3979, + [4274] = 4075, + [4275] = 4142, + [4276] = 4276, + [4277] = 4015, + [4278] = 3974, + [4279] = 4225, + [4280] = 3932, + [4281] = 3935, + [4282] = 4100, + [4283] = 4136, + [4284] = 4229, + [4285] = 4039, + [4286] = 3968, + [4287] = 4099, + [4288] = 4005, + [4289] = 3956, + [4290] = 3940, + [4291] = 3987, + [4292] = 4183, + [4293] = 3926, + [4294] = 4294, + [4295] = 4295, + [4296] = 4077, + [4297] = 3942, + [4298] = 3934, + [4299] = 4081, + [4300] = 4300, + [4301] = 4301, + [4302] = 4302, + [4303] = 4303, + [4304] = 4304, + [4305] = 4305, + [4306] = 4306, }; -const TSCharacterRange sym_identifier_character_set_1[] = { +static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { + sym__expression, + sym__literal, + sym__literal_pattern, + sym__pattern, + sym__type, +}; + +static const TSMapSlice ts_supertype_map_slices[] = { + [sym__expression] = {.index = 0, .length = 40}, + [sym__literal] = {.index = 40, .length = 6}, + [sym__literal_pattern] = {.index = 46, .length = 7}, + [sym__pattern] = {.index = 53, .length = 18}, + [sym__type] = {.index = 71, .length = 33}, +}; + +static const TSSymbol ts_supertype_map_entries[] = { + [0] = + sym__literal, + sym_array_expression, + sym_assignment_expression, + sym_async_block, + sym_await_expression, + sym_binary_expression, + sym_block, + sym_break_expression, + sym_call_expression, + sym_closure_expression, + sym_compound_assignment_expr, + sym_const_block, + sym_continue_expression, + sym_field_expression, + sym_for_expression, + sym_gen_block, + sym_generic_function, + sym_identifier, + sym_if_expression, + sym_index_expression, + sym_loop_expression, + sym_macro_invocation, + sym_match_expression, + sym_metavariable, + sym_parenthesized_expression, + sym_range_expression, + sym_reference_expression, + sym_return_expression, + sym_scoped_identifier, + sym_self, + sym_struct_expression, + sym_try_block, + sym_try_expression, + sym_tuple_expression, + sym_type_cast_expression, + sym_unary_expression, + sym_unit_expression, + sym_unsafe_block, + sym_while_expression, + sym_yield_expression, + [40] = + sym_boolean_literal, + sym_char_literal, + sym_float_literal, + sym_integer_literal, + sym_raw_string_literal, + sym_string_literal, + [46] = + sym_boolean_literal, + sym_char_literal, + sym_float_literal, + sym_integer_literal, + sym_negative_literal, + sym_raw_string_literal, + sym_string_literal, + [53] = + anon_sym__, + sym__literal_pattern, + sym_captured_pattern, + sym_const_block, + sym_generic_pattern, + sym_identifier, + sym_macro_invocation, + sym_mut_pattern, + sym_or_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_reference_pattern, + sym_remaining_field_pattern, + sym_scoped_identifier, + sym_slice_pattern, + sym_struct_pattern, + sym_tuple_pattern, + sym_tuple_struct_pattern, + [71] = + alias_sym_type_identifier, + anon_sym_bool, + anon_sym_char, + anon_sym_f32, + anon_sym_f64, + anon_sym_i128, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_i8, + anon_sym_isize, + anon_sym_str, + anon_sym_u128, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_u8, + anon_sym_usize, + sym_abstract_type, + sym_array_type, + sym_bounded_type, + sym_dynamic_type, + sym_function_type, + sym_generic_type, + sym_macro_invocation, + sym_metavariable, + sym_never_type, + sym_pointer_type, + sym_reference_type, + sym_removed_trait_bound, + sym_scoped_type_identifier, + sym_tuple_type, + sym_unit_type, +}; + +static const TSCharacterRange sym_identifier_character_set_1[] = { {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, @@ -7862,7 +8859,7 @@ const TSCharacterRange sym_identifier_character_set_1[] = { {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; -const TSCharacterRange sym_identifier_character_set_3[] = { +static const TSCharacterRange sym_identifier_character_set_3[] = { {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, @@ -8550,6 +9547,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 98, '.', 135, '/', 100, + ':', 84, ';', 75, '<', 131, '=', 124, @@ -10385,7 +11383,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } } -static const TSLexMode ts_lex_modes[STATE_COUNT] = { +static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 72, .external_lex_state = 2}, [2] = {.lex_state = 73, .external_lex_state = 2}, @@ -10432,13 +11430,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [43] = {.lex_state = 7, .external_lex_state = 2}, [44] = {.lex_state = 7, .external_lex_state = 2}, [45] = {.lex_state = 7, .external_lex_state = 2}, - [46] = {.lex_state = 5, .external_lex_state = 2}, + [46] = {.lex_state = 7, .external_lex_state = 2}, [47] = {.lex_state = 7, .external_lex_state = 2}, [48] = {.lex_state = 7, .external_lex_state = 2}, [49] = {.lex_state = 7, .external_lex_state = 2}, - [50] = {.lex_state = 5, .external_lex_state = 2}, - [51] = {.lex_state = 7, .external_lex_state = 2}, - [52] = {.lex_state = 7, .external_lex_state = 2}, + [50] = {.lex_state = 7, .external_lex_state = 2}, + [51] = {.lex_state = 5, .external_lex_state = 2}, + [52] = {.lex_state = 5, .external_lex_state = 2}, [53] = {.lex_state = 5, .external_lex_state = 2}, [54] = {.lex_state = 5, .external_lex_state = 2}, [55] = {.lex_state = 5, .external_lex_state = 2}, @@ -10476,49 +11474,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [87] = {.lex_state = 4, .external_lex_state = 2}, [88] = {.lex_state = 4, .external_lex_state = 2}, [89] = {.lex_state = 4, .external_lex_state = 2}, - [90] = {.lex_state = 6, .external_lex_state = 2}, + [90] = {.lex_state = 4, .external_lex_state = 2}, [91] = {.lex_state = 6, .external_lex_state = 2}, [92] = {.lex_state = 6, .external_lex_state = 2}, [93] = {.lex_state = 6, .external_lex_state = 2}, - [94] = {.lex_state = 6, .external_lex_state = 2}, + [94] = {.lex_state = 4, .external_lex_state = 2}, [95] = {.lex_state = 6, .external_lex_state = 2}, [96] = {.lex_state = 6, .external_lex_state = 2}, [97] = {.lex_state = 6, .external_lex_state = 2}, [98] = {.lex_state = 6, .external_lex_state = 2}, - [99] = {.lex_state = 6, .external_lex_state = 2}, + [99] = {.lex_state = 4, .external_lex_state = 2}, [100] = {.lex_state = 6, .external_lex_state = 2}, [101] = {.lex_state = 6, .external_lex_state = 2}, [102] = {.lex_state = 6, .external_lex_state = 2}, [103] = {.lex_state = 6, .external_lex_state = 2}, [104] = {.lex_state = 6, .external_lex_state = 2}, - [105] = {.lex_state = 4, .external_lex_state = 2}, + [105] = {.lex_state = 6, .external_lex_state = 2}, [106] = {.lex_state = 6, .external_lex_state = 2}, [107] = {.lex_state = 6, .external_lex_state = 2}, [108] = {.lex_state = 4, .external_lex_state = 2}, - [109] = {.lex_state = 4, .external_lex_state = 2}, - [110] = {.lex_state = 4, .external_lex_state = 2}, + [109] = {.lex_state = 6, .external_lex_state = 2}, + [110] = {.lex_state = 6, .external_lex_state = 2}, [111] = {.lex_state = 6, .external_lex_state = 2}, [112] = {.lex_state = 6, .external_lex_state = 2}, [113] = {.lex_state = 6, .external_lex_state = 2}, [114] = {.lex_state = 6, .external_lex_state = 2}, - [115] = {.lex_state = 4, .external_lex_state = 2}, + [115] = {.lex_state = 6, .external_lex_state = 2}, [116] = {.lex_state = 6, .external_lex_state = 2}, [117] = {.lex_state = 6, .external_lex_state = 2}, [118] = {.lex_state = 6, .external_lex_state = 2}, [119] = {.lex_state = 4, .external_lex_state = 2}, - [120] = {.lex_state = 4, .external_lex_state = 2}, - [121] = {.lex_state = 4, .external_lex_state = 2}, + [120] = {.lex_state = 6, .external_lex_state = 2}, + [121] = {.lex_state = 6, .external_lex_state = 2}, [122] = {.lex_state = 6, .external_lex_state = 2}, [123] = {.lex_state = 6, .external_lex_state = 2}, [124] = {.lex_state = 6, .external_lex_state = 2}, [125] = {.lex_state = 6, .external_lex_state = 2}, [126] = {.lex_state = 6, .external_lex_state = 2}, [127] = {.lex_state = 6, .external_lex_state = 2}, - [128] = {.lex_state = 6, .external_lex_state = 2}, + [128] = {.lex_state = 4, .external_lex_state = 2}, [129] = {.lex_state = 4, .external_lex_state = 2}, [130] = {.lex_state = 6, .external_lex_state = 2}, - [131] = {.lex_state = 6, .external_lex_state = 2}, - [132] = {.lex_state = 6, .external_lex_state = 2}, + [131] = {.lex_state = 4, .external_lex_state = 2}, + [132] = {.lex_state = 4, .external_lex_state = 2}, [133] = {.lex_state = 6, .external_lex_state = 2}, [134] = {.lex_state = 13, .external_lex_state = 2}, [135] = {.lex_state = 13, .external_lex_state = 2}, @@ -10527,54 +11525,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [138] = {.lex_state = 13, .external_lex_state = 2}, [139] = {.lex_state = 13, .external_lex_state = 2}, [140] = {.lex_state = 13, .external_lex_state = 2}, - [141] = {.lex_state = 13, .external_lex_state = 2}, + [141] = {.lex_state = 4, .external_lex_state = 2}, [142] = {.lex_state = 13, .external_lex_state = 2}, - [143] = {.lex_state = 4, .external_lex_state = 2}, + [143] = {.lex_state = 13, .external_lex_state = 2}, [144] = {.lex_state = 13, .external_lex_state = 2}, - [145] = {.lex_state = 13, .external_lex_state = 2}, + [145] = {.lex_state = 4, .external_lex_state = 2}, [146] = {.lex_state = 4, .external_lex_state = 2}, - [147] = {.lex_state = 4, .external_lex_state = 2}, - [148] = {.lex_state = 4, .external_lex_state = 2}, - [149] = {.lex_state = 4, .external_lex_state = 2}, - [150] = {.lex_state = 4, .external_lex_state = 2}, + [147] = {.lex_state = 13, .external_lex_state = 2}, + [148] = {.lex_state = 13, .external_lex_state = 2}, + [149] = {.lex_state = 13, .external_lex_state = 2}, + [150] = {.lex_state = 13, .external_lex_state = 2}, [151] = {.lex_state = 4, .external_lex_state = 2}, [152] = {.lex_state = 4, .external_lex_state = 2}, [153] = {.lex_state = 13, .external_lex_state = 2}, - [154] = {.lex_state = 4, .external_lex_state = 2}, + [154] = {.lex_state = 13, .external_lex_state = 2}, [155] = {.lex_state = 4, .external_lex_state = 2}, [156] = {.lex_state = 4, .external_lex_state = 2}, - [157] = {.lex_state = 13, .external_lex_state = 2}, - [158] = {.lex_state = 13, .external_lex_state = 2}, - [159] = {.lex_state = 4, .external_lex_state = 2}, + [157] = {.lex_state = 4, .external_lex_state = 2}, + [158] = {.lex_state = 4, .external_lex_state = 2}, + [159] = {.lex_state = 13, .external_lex_state = 2}, [160] = {.lex_state = 13, .external_lex_state = 2}, [161] = {.lex_state = 13, .external_lex_state = 2}, - [162] = {.lex_state = 13, .external_lex_state = 2}, - [163] = {.lex_state = 4, .external_lex_state = 2}, - [164] = {.lex_state = 13, .external_lex_state = 2}, - [165] = {.lex_state = 4, .external_lex_state = 2}, + [162] = {.lex_state = 6, .external_lex_state = 2}, + [163] = {.lex_state = 13, .external_lex_state = 2}, + [164] = {.lex_state = 4, .external_lex_state = 2}, + [165] = {.lex_state = 13, .external_lex_state = 2}, [166] = {.lex_state = 13, .external_lex_state = 2}, [167] = {.lex_state = 4, .external_lex_state = 2}, - [168] = {.lex_state = 13, .external_lex_state = 2}, + [168] = {.lex_state = 4, .external_lex_state = 2}, [169] = {.lex_state = 4, .external_lex_state = 2}, [170] = {.lex_state = 4, .external_lex_state = 2}, - [171] = {.lex_state = 13, .external_lex_state = 2}, - [172] = {.lex_state = 6, .external_lex_state = 2}, + [171] = {.lex_state = 4, .external_lex_state = 2}, + [172] = {.lex_state = 13, .external_lex_state = 2}, [173] = {.lex_state = 13, .external_lex_state = 2}, [174] = {.lex_state = 13, .external_lex_state = 2}, - [175] = {.lex_state = 13, .external_lex_state = 2}, - [176] = {.lex_state = 13, .external_lex_state = 2}, + [175] = {.lex_state = 4, .external_lex_state = 2}, + [176] = {.lex_state = 4, .external_lex_state = 2}, [177] = {.lex_state = 4, .external_lex_state = 2}, - [178] = {.lex_state = 4, .external_lex_state = 2}, - [179] = {.lex_state = 13, .external_lex_state = 2}, - [180] = {.lex_state = 13, .external_lex_state = 2}, - [181] = {.lex_state = 4, .external_lex_state = 2}, - [182] = {.lex_state = 4, .external_lex_state = 2}, - [183] = {.lex_state = 4, .external_lex_state = 2}, - [184] = {.lex_state = 6, .external_lex_state = 2}, - [185] = {.lex_state = 13, .external_lex_state = 2}, + [178] = {.lex_state = 13, .external_lex_state = 2}, + [179] = {.lex_state = 4, .external_lex_state = 2}, + [180] = {.lex_state = 4, .external_lex_state = 2}, + [181] = {.lex_state = 6, .external_lex_state = 2}, + [182] = {.lex_state = 13, .external_lex_state = 2}, + [183] = {.lex_state = 13, .external_lex_state = 2}, + [184] = {.lex_state = 4, .external_lex_state = 2}, + [185] = {.lex_state = 4, .external_lex_state = 2}, [186] = {.lex_state = 13, .external_lex_state = 2}, [187] = {.lex_state = 13, .external_lex_state = 2}, - [188] = {.lex_state = 13, .external_lex_state = 2}, + [188] = {.lex_state = 4, .external_lex_state = 2}, [189] = {.lex_state = 13, .external_lex_state = 2}, [190] = {.lex_state = 13, .external_lex_state = 2}, [191] = {.lex_state = 13, .external_lex_state = 2}, @@ -10583,61 +11581,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [194] = {.lex_state = 13, .external_lex_state = 2}, [195] = {.lex_state = 13, .external_lex_state = 2}, [196] = {.lex_state = 13, .external_lex_state = 2}, - [197] = {.lex_state = 4, .external_lex_state = 2}, + [197] = {.lex_state = 13, .external_lex_state = 2}, [198] = {.lex_state = 6, .external_lex_state = 2}, [199] = {.lex_state = 13, .external_lex_state = 2}, [200] = {.lex_state = 6, .external_lex_state = 2}, - [201] = {.lex_state = 13, .external_lex_state = 2}, - [202] = {.lex_state = 6, .external_lex_state = 2}, - [203] = {.lex_state = 13, .external_lex_state = 2}, + [201] = {.lex_state = 6, .external_lex_state = 2}, + [202] = {.lex_state = 13, .external_lex_state = 2}, + [203] = {.lex_state = 6, .external_lex_state = 2}, [204] = {.lex_state = 6, .external_lex_state = 2}, - [205] = {.lex_state = 6, .external_lex_state = 2}, - [206] = {.lex_state = 6, .external_lex_state = 2}, + [205] = {.lex_state = 13, .external_lex_state = 2}, + [206] = {.lex_state = 13, .external_lex_state = 2}, [207] = {.lex_state = 6, .external_lex_state = 2}, [208] = {.lex_state = 6, .external_lex_state = 2}, [209] = {.lex_state = 6, .external_lex_state = 2}, [210] = {.lex_state = 6, .external_lex_state = 2}, [211] = {.lex_state = 6, .external_lex_state = 2}, - [212] = {.lex_state = 13, .external_lex_state = 2}, + [212] = {.lex_state = 6, .external_lex_state = 2}, [213] = {.lex_state = 13, .external_lex_state = 2}, [214] = {.lex_state = 13, .external_lex_state = 2}, - [215] = {.lex_state = 13, .external_lex_state = 2}, + [215] = {.lex_state = 15, .external_lex_state = 2}, [216] = {.lex_state = 15, .external_lex_state = 2}, - [217] = {.lex_state = 13, .external_lex_state = 2}, - [218] = {.lex_state = 13, .external_lex_state = 2}, - [219] = {.lex_state = 13, .external_lex_state = 2}, - [220] = {.lex_state = 13, .external_lex_state = 2}, - [221] = {.lex_state = 13, .external_lex_state = 2}, - [222] = {.lex_state = 13, .external_lex_state = 2}, - [223] = {.lex_state = 15, .external_lex_state = 2}, + [217] = {.lex_state = 15, .external_lex_state = 2}, + [218] = {.lex_state = 15, .external_lex_state = 2}, + [219] = {.lex_state = 15, .external_lex_state = 2}, + [220] = {.lex_state = 15, .external_lex_state = 2}, + [221] = {.lex_state = 15, .external_lex_state = 2}, + [222] = {.lex_state = 15, .external_lex_state = 2}, + [223] = {.lex_state = 13, .external_lex_state = 2}, [224] = {.lex_state = 13, .external_lex_state = 2}, [225] = {.lex_state = 13, .external_lex_state = 2}, - [226] = {.lex_state = 12, .external_lex_state = 2}, + [226] = {.lex_state = 13, .external_lex_state = 2}, [227] = {.lex_state = 12, .external_lex_state = 2}, - [228] = {.lex_state = 15, .external_lex_state = 2}, - [229] = {.lex_state = 15, .external_lex_state = 2}, - [230] = {.lex_state = 15, .external_lex_state = 2}, - [231] = {.lex_state = 15, .external_lex_state = 2}, - [232] = {.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 = 13, .external_lex_state = 2}, + [231] = {.lex_state = 12, .external_lex_state = 2}, + [232] = {.lex_state = 15, .external_lex_state = 2}, [233] = {.lex_state = 13, .external_lex_state = 2}, - [234] = {.lex_state = 12, .external_lex_state = 2}, - [235] = {.lex_state = 15, .external_lex_state = 2}, - [236] = {.lex_state = 15, .external_lex_state = 2}, + [234] = {.lex_state = 13, .external_lex_state = 2}, + [235] = {.lex_state = 13, .external_lex_state = 2}, + [236] = {.lex_state = 12, .external_lex_state = 2}, [237] = {.lex_state = 15, .external_lex_state = 2}, [238] = {.lex_state = 15, .external_lex_state = 2}, - [239] = {.lex_state = 13, .external_lex_state = 2}, + [239] = {.lex_state = 12, .external_lex_state = 2}, [240] = {.lex_state = 13, .external_lex_state = 2}, [241] = {.lex_state = 13, .external_lex_state = 2}, - [242] = {.lex_state = 13, .external_lex_state = 2}, + [242] = {.lex_state = 15, .external_lex_state = 2}, [243] = {.lex_state = 15, .external_lex_state = 2}, [244] = {.lex_state = 12, .external_lex_state = 2}, - [245] = {.lex_state = 15, .external_lex_state = 2}, + [245] = {.lex_state = 13, .external_lex_state = 2}, [246] = {.lex_state = 13, .external_lex_state = 2}, - [247] = {.lex_state = 12, .external_lex_state = 2}, - [248] = {.lex_state = 15, .external_lex_state = 2}, - [249] = {.lex_state = 13, .external_lex_state = 2}, - [250] = {.lex_state = 15, .external_lex_state = 2}, - [251] = {.lex_state = 12, .external_lex_state = 2}, + [247] = {.lex_state = 13, .external_lex_state = 2}, + [248] = {.lex_state = 13, .external_lex_state = 2}, + [249] = {.lex_state = 15, .external_lex_state = 2}, + [250] = {.lex_state = 12, .external_lex_state = 2}, + [251] = {.lex_state = 13, .external_lex_state = 2}, [252] = {.lex_state = 15, .external_lex_state = 2}, [253] = {.lex_state = 12, .external_lex_state = 2}, [254] = {.lex_state = 12, .external_lex_state = 2}, @@ -10661,14 +11659,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [272] = {.lex_state = 13, .external_lex_state = 2}, [273] = {.lex_state = 13, .external_lex_state = 2}, [274] = {.lex_state = 13, .external_lex_state = 2}, - [275] = {.lex_state = 13, .external_lex_state = 2}, - [276] = {.lex_state = 13, .external_lex_state = 2}, + [275] = {.lex_state = 14, .external_lex_state = 2}, + [276] = {.lex_state = 12, .external_lex_state = 2}, [277] = {.lex_state = 13, .external_lex_state = 2}, [278] = {.lex_state = 13, .external_lex_state = 2}, [279] = {.lex_state = 13, .external_lex_state = 2}, [280] = {.lex_state = 13, .external_lex_state = 2}, [281] = {.lex_state = 13, .external_lex_state = 2}, - [282] = {.lex_state = 13, .external_lex_state = 2}, + [282] = {.lex_state = 14, .external_lex_state = 2}, [283] = {.lex_state = 13, .external_lex_state = 2}, [284] = {.lex_state = 13, .external_lex_state = 2}, [285] = {.lex_state = 13, .external_lex_state = 2}, @@ -10678,7 +11676,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [289] = {.lex_state = 13, .external_lex_state = 2}, [290] = {.lex_state = 13, .external_lex_state = 2}, [291] = {.lex_state = 13, .external_lex_state = 2}, - [292] = {.lex_state = 12, .external_lex_state = 2}, + [292] = {.lex_state = 13, .external_lex_state = 2}, [293] = {.lex_state = 13, .external_lex_state = 2}, [294] = {.lex_state = 13, .external_lex_state = 2}, [295] = {.lex_state = 13, .external_lex_state = 2}, @@ -10700,12 +11698,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [311] = {.lex_state = 13, .external_lex_state = 2}, [312] = {.lex_state = 13, .external_lex_state = 2}, [313] = {.lex_state = 13, .external_lex_state = 2}, - [314] = {.lex_state = 13, .external_lex_state = 2}, + [314] = {.lex_state = 14, .external_lex_state = 2}, [315] = {.lex_state = 13, .external_lex_state = 2}, [316] = {.lex_state = 13, .external_lex_state = 2}, [317] = {.lex_state = 13, .external_lex_state = 2}, [318] = {.lex_state = 13, .external_lex_state = 2}, - [319] = {.lex_state = 71, .external_lex_state = 2}, + [319] = {.lex_state = 13, .external_lex_state = 2}, [320] = {.lex_state = 13, .external_lex_state = 2}, [321] = {.lex_state = 13, .external_lex_state = 2}, [322] = {.lex_state = 13, .external_lex_state = 2}, @@ -10740,13 +11738,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [351] = {.lex_state = 13, .external_lex_state = 2}, [352] = {.lex_state = 13, .external_lex_state = 2}, [353] = {.lex_state = 13, .external_lex_state = 2}, - [354] = {.lex_state = 14, .external_lex_state = 2}, + [354] = {.lex_state = 13, .external_lex_state = 2}, [355] = {.lex_state = 13, .external_lex_state = 2}, - [356] = {.lex_state = 14, .external_lex_state = 2}, + [356] = {.lex_state = 13, .external_lex_state = 2}, [357] = {.lex_state = 13, .external_lex_state = 2}, [358] = {.lex_state = 13, .external_lex_state = 2}, [359] = {.lex_state = 13, .external_lex_state = 2}, - [360] = {.lex_state = 14, .external_lex_state = 2}, + [360] = {.lex_state = 13, .external_lex_state = 2}, [361] = {.lex_state = 13, .external_lex_state = 2}, [362] = {.lex_state = 13, .external_lex_state = 2}, [363] = {.lex_state = 13, .external_lex_state = 2}, @@ -10775,21 +11773,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [386] = {.lex_state = 13, .external_lex_state = 2}, [387] = {.lex_state = 13, .external_lex_state = 2}, [388] = {.lex_state = 13, .external_lex_state = 2}, - [389] = {.lex_state = 71, .external_lex_state = 2}, - [390] = {.lex_state = 71, .external_lex_state = 2}, - [391] = {.lex_state = 71, .external_lex_state = 2}, - [392] = {.lex_state = 71, .external_lex_state = 2}, - [393] = {.lex_state = 71, .external_lex_state = 2}, - [394] = {.lex_state = 12, .external_lex_state = 2}, - [395] = {.lex_state = 71, .external_lex_state = 2}, - [396] = {.lex_state = 71, .external_lex_state = 2}, + [389] = {.lex_state = 13, .external_lex_state = 2}, + [390] = {.lex_state = 13, .external_lex_state = 2}, + [391] = {.lex_state = 13, .external_lex_state = 2}, + [392] = {.lex_state = 13, .external_lex_state = 2}, + [393] = {.lex_state = 13, .external_lex_state = 2}, + [394] = {.lex_state = 71, .external_lex_state = 2}, + [395] = {.lex_state = 13, .external_lex_state = 2}, + [396] = {.lex_state = 13, .external_lex_state = 2}, [397] = {.lex_state = 71, .external_lex_state = 2}, [398] = {.lex_state = 71, .external_lex_state = 2}, [399] = {.lex_state = 71, .external_lex_state = 2}, [400] = {.lex_state = 71, .external_lex_state = 2}, [401] = {.lex_state = 71, .external_lex_state = 2}, [402] = {.lex_state = 71, .external_lex_state = 2}, - [403] = {.lex_state = 71, .external_lex_state = 2}, + [403] = {.lex_state = 12, .external_lex_state = 2}, [404] = {.lex_state = 71, .external_lex_state = 2}, [405] = {.lex_state = 71, .external_lex_state = 2}, [406] = {.lex_state = 71, .external_lex_state = 2}, @@ -10803,36 +11801,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [414] = {.lex_state = 71, .external_lex_state = 2}, [415] = {.lex_state = 71, .external_lex_state = 2}, [416] = {.lex_state = 71, .external_lex_state = 2}, - [417] = {.lex_state = 12, .external_lex_state = 2}, + [417] = {.lex_state = 71, .external_lex_state = 2}, [418] = {.lex_state = 71, .external_lex_state = 2}, - [419] = {.lex_state = 12, .external_lex_state = 2}, + [419] = {.lex_state = 71, .external_lex_state = 2}, [420] = {.lex_state = 71, .external_lex_state = 2}, [421] = {.lex_state = 71, .external_lex_state = 2}, [422] = {.lex_state = 71, .external_lex_state = 2}, [423] = {.lex_state = 71, .external_lex_state = 2}, - [424] = {.lex_state = 14, .external_lex_state = 2}, - [425] = {.lex_state = 14, .external_lex_state = 2}, - [426] = {.lex_state = 14, .external_lex_state = 2}, - [427] = {.lex_state = 14, .external_lex_state = 2}, - [428] = {.lex_state = 14, .external_lex_state = 2}, - [429] = {.lex_state = 14, .external_lex_state = 2}, - [430] = {.lex_state = 14, .external_lex_state = 2}, - [431] = {.lex_state = 14, .external_lex_state = 2}, + [424] = {.lex_state = 71, .external_lex_state = 2}, + [425] = {.lex_state = 71, .external_lex_state = 2}, + [426] = {.lex_state = 71, .external_lex_state = 2}, + [427] = {.lex_state = 12, .external_lex_state = 2}, + [428] = {.lex_state = 71, .external_lex_state = 2}, + [429] = {.lex_state = 71, .external_lex_state = 2}, + [430] = {.lex_state = 12, .external_lex_state = 2}, + [431] = {.lex_state = 71, .external_lex_state = 2}, [432] = {.lex_state = 14, .external_lex_state = 2}, [433] = {.lex_state = 14, .external_lex_state = 2}, [434] = {.lex_state = 14, .external_lex_state = 2}, - [435] = {.lex_state = 5, .external_lex_state = 2}, - [436] = {.lex_state = 7, .external_lex_state = 2}, - [437] = {.lex_state = 16, .external_lex_state = 2}, - [438] = {.lex_state = 16, .external_lex_state = 2}, - [439] = {.lex_state = 13, .external_lex_state = 2}, - [440] = {.lex_state = 13, .external_lex_state = 2}, - [441] = {.lex_state = 13, .external_lex_state = 2}, - [442] = {.lex_state = 13, .external_lex_state = 2}, - [443] = {.lex_state = 13, .external_lex_state = 2}, - [444] = {.lex_state = 13, .external_lex_state = 2}, - [445] = {.lex_state = 13, .external_lex_state = 2}, - [446] = {.lex_state = 13, .external_lex_state = 2}, + [435] = {.lex_state = 14, .external_lex_state = 2}, + [436] = {.lex_state = 14, .external_lex_state = 2}, + [437] = {.lex_state = 14, .external_lex_state = 2}, + [438] = {.lex_state = 14, .external_lex_state = 2}, + [439] = {.lex_state = 14, .external_lex_state = 2}, + [440] = {.lex_state = 14, .external_lex_state = 2}, + [441] = {.lex_state = 14, .external_lex_state = 2}, + [442] = {.lex_state = 14, .external_lex_state = 2}, + [443] = {.lex_state = 5, .external_lex_state = 2}, + [444] = {.lex_state = 7, .external_lex_state = 2}, + [445] = {.lex_state = 16, .external_lex_state = 2}, + [446] = {.lex_state = 16, .external_lex_state = 2}, [447] = {.lex_state = 13, .external_lex_state = 2}, [448] = {.lex_state = 13, .external_lex_state = 2}, [449] = {.lex_state = 13, .external_lex_state = 2}, @@ -10842,29 +11840,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [453] = {.lex_state = 13, .external_lex_state = 2}, [454] = {.lex_state = 13, .external_lex_state = 2}, [455] = {.lex_state = 13, .external_lex_state = 2}, - [456] = {.lex_state = 14, .external_lex_state = 2}, - [457] = {.lex_state = 14, .external_lex_state = 2}, - [458] = {.lex_state = 14, .external_lex_state = 2}, - [459] = {.lex_state = 5, .external_lex_state = 2}, - [460] = {.lex_state = 14, .external_lex_state = 2}, - [461] = {.lex_state = 5, .external_lex_state = 2}, - [462] = {.lex_state = 14, .external_lex_state = 2}, - [463] = {.lex_state = 5, .external_lex_state = 2}, + [456] = {.lex_state = 13, .external_lex_state = 2}, + [457] = {.lex_state = 13, .external_lex_state = 2}, + [458] = {.lex_state = 13, .external_lex_state = 2}, + [459] = {.lex_state = 13, .external_lex_state = 2}, + [460] = {.lex_state = 13, .external_lex_state = 2}, + [461] = {.lex_state = 13, .external_lex_state = 2}, + [462] = {.lex_state = 13, .external_lex_state = 2}, + [463] = {.lex_state = 13, .external_lex_state = 2}, [464] = {.lex_state = 5, .external_lex_state = 2}, - [465] = {.lex_state = 5, .external_lex_state = 2}, + [465] = {.lex_state = 14, .external_lex_state = 2}, [466] = {.lex_state = 14, .external_lex_state = 2}, - [467] = {.lex_state = 5, .external_lex_state = 2}, + [467] = {.lex_state = 14, .external_lex_state = 2}, [468] = {.lex_state = 14, .external_lex_state = 2}, - [469] = {.lex_state = 14, .external_lex_state = 2}, + [469] = {.lex_state = 5, .external_lex_state = 2}, [470] = {.lex_state = 5, .external_lex_state = 2}, [471] = {.lex_state = 5, .external_lex_state = 2}, - [472] = {.lex_state = 14, .external_lex_state = 2}, - [473] = {.lex_state = 5, .external_lex_state = 2}, - [474] = {.lex_state = 5, .external_lex_state = 2}, + [472] = {.lex_state = 5, .external_lex_state = 2}, + [473] = {.lex_state = 14, .external_lex_state = 2}, + [474] = {.lex_state = 14, .external_lex_state = 2}, [475] = {.lex_state = 5, .external_lex_state = 2}, - [476] = {.lex_state = 5, .external_lex_state = 2}, - [477] = {.lex_state = 5, .external_lex_state = 2}, - [478] = {.lex_state = 5, .external_lex_state = 2}, + [476] = {.lex_state = 14, .external_lex_state = 2}, + [477] = {.lex_state = 14, .external_lex_state = 2}, + [478] = {.lex_state = 14, .external_lex_state = 2}, [479] = {.lex_state = 5, .external_lex_state = 2}, [480] = {.lex_state = 5, .external_lex_state = 2}, [481] = {.lex_state = 5, .external_lex_state = 2}, @@ -10878,23 +11876,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [489] = {.lex_state = 5, .external_lex_state = 2}, [490] = {.lex_state = 5, .external_lex_state = 2}, [491] = {.lex_state = 5, .external_lex_state = 2}, - [492] = {.lex_state = 14, .external_lex_state = 2}, - [493] = {.lex_state = 14, .external_lex_state = 2}, - [494] = {.lex_state = 73, .external_lex_state = 2}, - [495] = {.lex_state = 73, .external_lex_state = 2}, - [496] = {.lex_state = 73, .external_lex_state = 2}, - [497] = {.lex_state = 73, .external_lex_state = 2}, - [498] = {.lex_state = 73, .external_lex_state = 2}, - [499] = {.lex_state = 73, .external_lex_state = 2}, - [500] = {.lex_state = 73, .external_lex_state = 2}, - [501] = {.lex_state = 73, .external_lex_state = 2}, - [502] = {.lex_state = 73, .external_lex_state = 2}, - [503] = {.lex_state = 73, .external_lex_state = 2}, - [504] = {.lex_state = 73, .external_lex_state = 2}, - [505] = {.lex_state = 73, .external_lex_state = 2}, - [506] = {.lex_state = 73, .external_lex_state = 2}, + [492] = {.lex_state = 5, .external_lex_state = 2}, + [493] = {.lex_state = 5, .external_lex_state = 2}, + [494] = {.lex_state = 5, .external_lex_state = 2}, + [495] = {.lex_state = 5, .external_lex_state = 2}, + [496] = {.lex_state = 5, .external_lex_state = 2}, + [497] = {.lex_state = 5, .external_lex_state = 2}, + [498] = {.lex_state = 5, .external_lex_state = 2}, + [499] = {.lex_state = 5, .external_lex_state = 2}, + [500] = {.lex_state = 23}, + [501] = {.lex_state = 23}, + [502] = {.lex_state = 23}, + [503] = {.lex_state = 23}, + [504] = {.lex_state = 14, .external_lex_state = 2}, + [505] = {.lex_state = 14, .external_lex_state = 2}, + [506] = {.lex_state = 23}, [507] = {.lex_state = 73, .external_lex_state = 2}, - [508] = {.lex_state = 73, .external_lex_state = 2}, + [508] = {.lex_state = 14, .external_lex_state = 2}, [509] = {.lex_state = 73, .external_lex_state = 2}, [510] = {.lex_state = 73, .external_lex_state = 2}, [511] = {.lex_state = 73, .external_lex_state = 2}, @@ -10970,12 +11968,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [581] = {.lex_state = 73, .external_lex_state = 2}, [582] = {.lex_state = 73, .external_lex_state = 2}, [583] = {.lex_state = 73, .external_lex_state = 2}, - [584] = {.lex_state = 23}, + [584] = {.lex_state = 73, .external_lex_state = 2}, [585] = {.lex_state = 73, .external_lex_state = 2}, [586] = {.lex_state = 73, .external_lex_state = 2}, [587] = {.lex_state = 73, .external_lex_state = 2}, [588] = {.lex_state = 73, .external_lex_state = 2}, - [589] = {.lex_state = 14, .external_lex_state = 2}, + [589] = {.lex_state = 73, .external_lex_state = 2}, [590] = {.lex_state = 73, .external_lex_state = 2}, [591] = {.lex_state = 73, .external_lex_state = 2}, [592] = {.lex_state = 73, .external_lex_state = 2}, @@ -11013,7 +12011,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [624] = {.lex_state = 73, .external_lex_state = 2}, [625] = {.lex_state = 73, .external_lex_state = 2}, [626] = {.lex_state = 73, .external_lex_state = 2}, - [627] = {.lex_state = 14, .external_lex_state = 2}, + [627] = {.lex_state = 73, .external_lex_state = 2}, [628] = {.lex_state = 73, .external_lex_state = 2}, [629] = {.lex_state = 73, .external_lex_state = 2}, [630] = {.lex_state = 73, .external_lex_state = 2}, @@ -11044,13 +12042,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [655] = {.lex_state = 73, .external_lex_state = 2}, [656] = {.lex_state = 73, .external_lex_state = 2}, [657] = {.lex_state = 73, .external_lex_state = 2}, - [658] = {.lex_state = 73, .external_lex_state = 2}, + [658] = {.lex_state = 14, .external_lex_state = 2}, [659] = {.lex_state = 73, .external_lex_state = 2}, [660] = {.lex_state = 73, .external_lex_state = 2}, [661] = {.lex_state = 73, .external_lex_state = 2}, [662] = {.lex_state = 73, .external_lex_state = 2}, [663] = {.lex_state = 73, .external_lex_state = 2}, - [664] = {.lex_state = 23}, + [664] = {.lex_state = 73, .external_lex_state = 2}, [665] = {.lex_state = 73, .external_lex_state = 2}, [666] = {.lex_state = 73, .external_lex_state = 2}, [667] = {.lex_state = 73, .external_lex_state = 2}, @@ -11058,21 +12056,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [669] = {.lex_state = 73, .external_lex_state = 2}, [670] = {.lex_state = 73, .external_lex_state = 2}, [671] = {.lex_state = 73, .external_lex_state = 2}, - [672] = {.lex_state = 23}, + [672] = {.lex_state = 73, .external_lex_state = 2}, [673] = {.lex_state = 73, .external_lex_state = 2}, [674] = {.lex_state = 73, .external_lex_state = 2}, [675] = {.lex_state = 73, .external_lex_state = 2}, - [676] = {.lex_state = 23}, + [676] = {.lex_state = 73, .external_lex_state = 2}, [677] = {.lex_state = 73, .external_lex_state = 2}, [678] = {.lex_state = 73, .external_lex_state = 2}, - [679] = {.lex_state = 14, .external_lex_state = 2}, - [680] = {.lex_state = 14, .external_lex_state = 2}, + [679] = {.lex_state = 73, .external_lex_state = 2}, + [680] = {.lex_state = 73, .external_lex_state = 2}, [681] = {.lex_state = 73, .external_lex_state = 2}, [682] = {.lex_state = 73, .external_lex_state = 2}, [683] = {.lex_state = 73, .external_lex_state = 2}, [684] = {.lex_state = 73, .external_lex_state = 2}, [685] = {.lex_state = 73, .external_lex_state = 2}, - [686] = {.lex_state = 14, .external_lex_state = 2}, + [686] = {.lex_state = 73, .external_lex_state = 2}, [687] = {.lex_state = 73, .external_lex_state = 2}, [688] = {.lex_state = 73, .external_lex_state = 2}, [689] = {.lex_state = 73, .external_lex_state = 2}, @@ -11103,10 +12101,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [714] = {.lex_state = 73, .external_lex_state = 2}, [715] = {.lex_state = 73, .external_lex_state = 2}, [716] = {.lex_state = 73, .external_lex_state = 2}, - [717] = {.lex_state = 73, .external_lex_state = 2}, + [717] = {.lex_state = 14, .external_lex_state = 2}, [718] = {.lex_state = 73, .external_lex_state = 2}, [719] = {.lex_state = 73, .external_lex_state = 2}, - [720] = {.lex_state = 14, .external_lex_state = 2}, + [720] = {.lex_state = 73, .external_lex_state = 2}, [721] = {.lex_state = 73, .external_lex_state = 2}, [722] = {.lex_state = 73, .external_lex_state = 2}, [723] = {.lex_state = 73, .external_lex_state = 2}, @@ -11133,7 +12131,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [744] = {.lex_state = 73, .external_lex_state = 2}, [745] = {.lex_state = 73, .external_lex_state = 2}, [746] = {.lex_state = 73, .external_lex_state = 2}, - [747] = {.lex_state = 23}, + [747] = {.lex_state = 73, .external_lex_state = 2}, [748] = {.lex_state = 73, .external_lex_state = 2}, [749] = {.lex_state = 73, .external_lex_state = 2}, [750] = {.lex_state = 73, .external_lex_state = 2}, @@ -11157,7 +12155,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [768] = {.lex_state = 73, .external_lex_state = 2}, [769] = {.lex_state = 73, .external_lex_state = 2}, [770] = {.lex_state = 73, .external_lex_state = 2}, - [771] = {.lex_state = 73, .external_lex_state = 2}, + [771] = {.lex_state = 14, .external_lex_state = 2}, [772] = {.lex_state = 73, .external_lex_state = 2}, [773] = {.lex_state = 73, .external_lex_state = 2}, [774] = {.lex_state = 73, .external_lex_state = 2}, @@ -11168,124 +12166,124 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [779] = {.lex_state = 73, .external_lex_state = 2}, [780] = {.lex_state = 73, .external_lex_state = 2}, [781] = {.lex_state = 73, .external_lex_state = 2}, - [782] = {.lex_state = 17}, - [783] = {.lex_state = 17}, - [784] = {.lex_state = 14, .external_lex_state = 2}, - [785] = {.lex_state = 17}, - [786] = {.lex_state = 17}, - [787] = {.lex_state = 17}, - [788] = {.lex_state = 17}, - [789] = {.lex_state = 17}, - [790] = {.lex_state = 17}, - [791] = {.lex_state = 17}, - [792] = {.lex_state = 14, .external_lex_state = 2}, - [793] = {.lex_state = 14, .external_lex_state = 2}, - [794] = {.lex_state = 17}, - [795] = {.lex_state = 14, .external_lex_state = 2}, - [796] = {.lex_state = 14, .external_lex_state = 2}, - [797] = {.lex_state = 17}, - [798] = {.lex_state = 14, .external_lex_state = 2}, - [799] = {.lex_state = 14, .external_lex_state = 2}, - [800] = {.lex_state = 14, .external_lex_state = 2}, - [801] = {.lex_state = 14, .external_lex_state = 2}, - [802] = {.lex_state = 14, .external_lex_state = 2}, - [803] = {.lex_state = 14, .external_lex_state = 2}, - [804] = {.lex_state = 12, .external_lex_state = 2}, - [805] = {.lex_state = 14, .external_lex_state = 2}, - [806] = {.lex_state = 14, .external_lex_state = 2}, - [807] = {.lex_state = 14, .external_lex_state = 2}, - [808] = {.lex_state = 14, .external_lex_state = 2}, - [809] = {.lex_state = 14, .external_lex_state = 2}, - [810] = {.lex_state = 14, .external_lex_state = 2}, - [811] = {.lex_state = 14, .external_lex_state = 2}, - [812] = {.lex_state = 14, .external_lex_state = 2}, - [813] = {.lex_state = 14, .external_lex_state = 2}, - [814] = {.lex_state = 14, .external_lex_state = 2}, - [815] = {.lex_state = 14, .external_lex_state = 2}, - [816] = {.lex_state = 14, .external_lex_state = 2}, - [817] = {.lex_state = 14, .external_lex_state = 2}, - [818] = {.lex_state = 14, .external_lex_state = 2}, - [819] = {.lex_state = 14, .external_lex_state = 2}, - [820] = {.lex_state = 14, .external_lex_state = 2}, - [821] = {.lex_state = 14, .external_lex_state = 2}, - [822] = {.lex_state = 14, .external_lex_state = 2}, - [823] = {.lex_state = 14, .external_lex_state = 2}, - [824] = {.lex_state = 14, .external_lex_state = 2}, - [825] = {.lex_state = 14, .external_lex_state = 2}, - [826] = {.lex_state = 14, .external_lex_state = 2}, - [827] = {.lex_state = 14, .external_lex_state = 2}, - [828] = {.lex_state = 14, .external_lex_state = 2}, - [829] = {.lex_state = 14, .external_lex_state = 2}, - [830] = {.lex_state = 14, .external_lex_state = 2}, - [831] = {.lex_state = 14, .external_lex_state = 2}, - [832] = {.lex_state = 14, .external_lex_state = 2}, - [833] = {.lex_state = 14, .external_lex_state = 2}, - [834] = {.lex_state = 14, .external_lex_state = 2}, - [835] = {.lex_state = 14, .external_lex_state = 2}, - [836] = {.lex_state = 14, .external_lex_state = 2}, - [837] = {.lex_state = 14, .external_lex_state = 2}, - [838] = {.lex_state = 14, .external_lex_state = 2}, - [839] = {.lex_state = 14, .external_lex_state = 2}, - [840] = {.lex_state = 14, .external_lex_state = 2}, - [841] = {.lex_state = 14, .external_lex_state = 2}, - [842] = {.lex_state = 14, .external_lex_state = 2}, - [843] = {.lex_state = 14, .external_lex_state = 2}, - [844] = {.lex_state = 14, .external_lex_state = 2}, - [845] = {.lex_state = 14, .external_lex_state = 2}, - [846] = {.lex_state = 14, .external_lex_state = 2}, - [847] = {.lex_state = 14, .external_lex_state = 2}, - [848] = {.lex_state = 14, .external_lex_state = 2}, - [849] = {.lex_state = 17}, - [850] = {.lex_state = 17}, - [851] = {.lex_state = 17}, - [852] = {.lex_state = 17}, - [853] = {.lex_state = 17}, - [854] = {.lex_state = 17}, - [855] = {.lex_state = 17}, - [856] = {.lex_state = 17}, - [857] = {.lex_state = 17}, - [858] = {.lex_state = 17}, - [859] = {.lex_state = 17}, - [860] = {.lex_state = 17}, - [861] = {.lex_state = 17}, - [862] = {.lex_state = 17}, - [863] = {.lex_state = 17}, - [864] = {.lex_state = 17}, - [865] = {.lex_state = 17}, - [866] = {.lex_state = 17}, - [867] = {.lex_state = 17}, - [868] = {.lex_state = 17}, - [869] = {.lex_state = 17}, - [870] = {.lex_state = 17}, - [871] = {.lex_state = 17}, - [872] = {.lex_state = 17}, - [873] = {.lex_state = 17}, - [874] = {.lex_state = 17}, - [875] = {.lex_state = 17}, - [876] = {.lex_state = 17}, - [877] = {.lex_state = 17}, - [878] = {.lex_state = 17}, - [879] = {.lex_state = 17}, - [880] = {.lex_state = 17}, - [881] = {.lex_state = 17}, - [882] = {.lex_state = 17}, - [883] = {.lex_state = 17}, - [884] = {.lex_state = 17}, - [885] = {.lex_state = 17}, - [886] = {.lex_state = 17}, - [887] = {.lex_state = 17}, - [888] = {.lex_state = 17}, - [889] = {.lex_state = 17}, - [890] = {.lex_state = 17}, - [891] = {.lex_state = 17}, - [892] = {.lex_state = 17}, - [893] = {.lex_state = 17}, - [894] = {.lex_state = 17}, - [895] = {.lex_state = 17}, - [896] = {.lex_state = 17}, - [897] = {.lex_state = 17}, + [782] = {.lex_state = 73, .external_lex_state = 2}, + [783] = {.lex_state = 14, .external_lex_state = 2}, + [784] = {.lex_state = 73, .external_lex_state = 2}, + [785] = {.lex_state = 73, .external_lex_state = 2}, + [786] = {.lex_state = 73, .external_lex_state = 2}, + [787] = {.lex_state = 73, .external_lex_state = 2}, + [788] = {.lex_state = 73, .external_lex_state = 2}, + [789] = {.lex_state = 73, .external_lex_state = 2}, + [790] = {.lex_state = 73, .external_lex_state = 2}, + [791] = {.lex_state = 73, .external_lex_state = 2}, + [792] = {.lex_state = 73, .external_lex_state = 2}, + [793] = {.lex_state = 73, .external_lex_state = 2}, + [794] = {.lex_state = 73, .external_lex_state = 2}, + [795] = {.lex_state = 73, .external_lex_state = 2}, + [796] = {.lex_state = 73, .external_lex_state = 2}, + [797] = {.lex_state = 73, .external_lex_state = 2}, + [798] = {.lex_state = 73, .external_lex_state = 2}, + [799] = {.lex_state = 73, .external_lex_state = 2}, + [800] = {.lex_state = 73, .external_lex_state = 2}, + [801] = {.lex_state = 73, .external_lex_state = 2}, + [802] = {.lex_state = 73, .external_lex_state = 2}, + [803] = {.lex_state = 73, .external_lex_state = 2}, + [804] = {.lex_state = 73, .external_lex_state = 2}, + [805] = {.lex_state = 73, .external_lex_state = 2}, + [806] = {.lex_state = 73, .external_lex_state = 2}, + [807] = {.lex_state = 73, .external_lex_state = 2}, + [808] = {.lex_state = 73, .external_lex_state = 2}, + [809] = {.lex_state = 73, .external_lex_state = 2}, + [810] = {.lex_state = 73, .external_lex_state = 2}, + [811] = {.lex_state = 73, .external_lex_state = 2}, + [812] = {.lex_state = 73, .external_lex_state = 2}, + [813] = {.lex_state = 73, .external_lex_state = 2}, + [814] = {.lex_state = 73, .external_lex_state = 2}, + [815] = {.lex_state = 73, .external_lex_state = 2}, + [816] = {.lex_state = 73, .external_lex_state = 2}, + [817] = {.lex_state = 73, .external_lex_state = 2}, + [818] = {.lex_state = 73, .external_lex_state = 2}, + [819] = {.lex_state = 73, .external_lex_state = 2}, + [820] = {.lex_state = 73, .external_lex_state = 2}, + [821] = {.lex_state = 73, .external_lex_state = 2}, + [822] = {.lex_state = 73, .external_lex_state = 2}, + [823] = {.lex_state = 73, .external_lex_state = 2}, + [824] = {.lex_state = 73, .external_lex_state = 2}, + [825] = {.lex_state = 73, .external_lex_state = 2}, + [826] = {.lex_state = 73, .external_lex_state = 2}, + [827] = {.lex_state = 73, .external_lex_state = 2}, + [828] = {.lex_state = 73, .external_lex_state = 2}, + [829] = {.lex_state = 73, .external_lex_state = 2}, + [830] = {.lex_state = 73, .external_lex_state = 2}, + [831] = {.lex_state = 73, .external_lex_state = 2}, + [832] = {.lex_state = 73, .external_lex_state = 2}, + [833] = {.lex_state = 73, .external_lex_state = 2}, + [834] = {.lex_state = 73, .external_lex_state = 2}, + [835] = {.lex_state = 73, .external_lex_state = 2}, + [836] = {.lex_state = 73, .external_lex_state = 2}, + [837] = {.lex_state = 73, .external_lex_state = 2}, + [838] = {.lex_state = 73, .external_lex_state = 2}, + [839] = {.lex_state = 73, .external_lex_state = 2}, + [840] = {.lex_state = 73, .external_lex_state = 2}, + [841] = {.lex_state = 73, .external_lex_state = 2}, + [842] = {.lex_state = 73, .external_lex_state = 2}, + [843] = {.lex_state = 73, .external_lex_state = 2}, + [844] = {.lex_state = 73, .external_lex_state = 2}, + [845] = {.lex_state = 73, .external_lex_state = 2}, + [846] = {.lex_state = 73, .external_lex_state = 2}, + [847] = {.lex_state = 73, .external_lex_state = 2}, + [848] = {.lex_state = 73, .external_lex_state = 2}, + [849] = {.lex_state = 73, .external_lex_state = 2}, + [850] = {.lex_state = 73, .external_lex_state = 2}, + [851] = {.lex_state = 73, .external_lex_state = 2}, + [852] = {.lex_state = 73, .external_lex_state = 2}, + [853] = {.lex_state = 73, .external_lex_state = 2}, + [854] = {.lex_state = 73, .external_lex_state = 2}, + [855] = {.lex_state = 73, .external_lex_state = 2}, + [856] = {.lex_state = 73, .external_lex_state = 2}, + [857] = {.lex_state = 73, .external_lex_state = 2}, + [858] = {.lex_state = 73, .external_lex_state = 2}, + [859] = {.lex_state = 73, .external_lex_state = 2}, + [860] = {.lex_state = 73, .external_lex_state = 2}, + [861] = {.lex_state = 14, .external_lex_state = 2}, + [862] = {.lex_state = 73, .external_lex_state = 2}, + [863] = {.lex_state = 73, .external_lex_state = 2}, + [864] = {.lex_state = 73, .external_lex_state = 2}, + [865] = {.lex_state = 73, .external_lex_state = 2}, + [866] = {.lex_state = 73, .external_lex_state = 2}, + [867] = {.lex_state = 73, .external_lex_state = 2}, + [868] = {.lex_state = 73, .external_lex_state = 2}, + [869] = {.lex_state = 73, .external_lex_state = 2}, + [870] = {.lex_state = 73, .external_lex_state = 2}, + [871] = {.lex_state = 73, .external_lex_state = 2}, + [872] = {.lex_state = 73, .external_lex_state = 2}, + [873] = {.lex_state = 73, .external_lex_state = 2}, + [874] = {.lex_state = 73, .external_lex_state = 2}, + [875] = {.lex_state = 73, .external_lex_state = 2}, + [876] = {.lex_state = 73, .external_lex_state = 2}, + [877] = {.lex_state = 73, .external_lex_state = 2}, + [878] = {.lex_state = 73, .external_lex_state = 2}, + [879] = {.lex_state = 73, .external_lex_state = 2}, + [880] = {.lex_state = 73, .external_lex_state = 2}, + [881] = {.lex_state = 73, .external_lex_state = 2}, + [882] = {.lex_state = 73, .external_lex_state = 2}, + [883] = {.lex_state = 73, .external_lex_state = 2}, + [884] = {.lex_state = 73, .external_lex_state = 2}, + [885] = {.lex_state = 73, .external_lex_state = 2}, + [886] = {.lex_state = 73, .external_lex_state = 2}, + [887] = {.lex_state = 73, .external_lex_state = 2}, + [888] = {.lex_state = 73, .external_lex_state = 2}, + [889] = {.lex_state = 73, .external_lex_state = 2}, + [890] = {.lex_state = 73, .external_lex_state = 2}, + [891] = {.lex_state = 73, .external_lex_state = 2}, + [892] = {.lex_state = 73, .external_lex_state = 2}, + [893] = {.lex_state = 73, .external_lex_state = 2}, + [894] = {.lex_state = 73, .external_lex_state = 2}, + [895] = {.lex_state = 73, .external_lex_state = 2}, + [896] = {.lex_state = 73, .external_lex_state = 2}, + [897] = {.lex_state = 73, .external_lex_state = 2}, [898] = {.lex_state = 17}, - [899] = {.lex_state = 17}, + [899] = {.lex_state = 14, .external_lex_state = 2}, [900] = {.lex_state = 17}, [901] = {.lex_state = 17}, [902] = {.lex_state = 17}, @@ -11293,68 +12291,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [904] = {.lex_state = 17}, [905] = {.lex_state = 17}, [906] = {.lex_state = 17}, - [907] = {.lex_state = 17}, + [907] = {.lex_state = 14, .external_lex_state = 2}, [908] = {.lex_state = 17}, - [909] = {.lex_state = 17}, - [910] = {.lex_state = 17}, + [909] = {.lex_state = 14, .external_lex_state = 2}, + [910] = {.lex_state = 14, .external_lex_state = 2}, [911] = {.lex_state = 17}, [912] = {.lex_state = 17}, - [913] = {.lex_state = 17}, - [914] = {.lex_state = 17}, - [915] = {.lex_state = 17}, - [916] = {.lex_state = 17}, - [917] = {.lex_state = 17}, - [918] = {.lex_state = 17}, - [919] = {.lex_state = 17}, - [920] = {.lex_state = 17}, - [921] = {.lex_state = 17}, - [922] = {.lex_state = 17}, - [923] = {.lex_state = 17}, - [924] = {.lex_state = 17}, - [925] = {.lex_state = 17}, - [926] = {.lex_state = 17}, - [927] = {.lex_state = 17}, - [928] = {.lex_state = 17}, - [929] = {.lex_state = 17}, - [930] = {.lex_state = 17}, - [931] = {.lex_state = 17}, - [932] = {.lex_state = 17}, - [933] = {.lex_state = 17}, - [934] = {.lex_state = 17}, - [935] = {.lex_state = 17}, - [936] = {.lex_state = 17}, - [937] = {.lex_state = 17}, - [938] = {.lex_state = 17}, - [939] = {.lex_state = 17}, - [940] = {.lex_state = 17}, - [941] = {.lex_state = 17}, - [942] = {.lex_state = 17}, - [943] = {.lex_state = 17}, - [944] = {.lex_state = 17}, - [945] = {.lex_state = 17}, - [946] = {.lex_state = 17}, - [947] = {.lex_state = 17}, - [948] = {.lex_state = 17}, - [949] = {.lex_state = 17}, - [950] = {.lex_state = 17}, - [951] = {.lex_state = 17}, - [952] = {.lex_state = 17}, - [953] = {.lex_state = 17}, - [954] = {.lex_state = 17}, - [955] = {.lex_state = 17}, - [956] = {.lex_state = 17}, - [957] = {.lex_state = 17}, - [958] = {.lex_state = 17}, - [959] = {.lex_state = 17}, - [960] = {.lex_state = 17}, - [961] = {.lex_state = 17}, - [962] = {.lex_state = 17}, - [963] = {.lex_state = 17}, - [964] = {.lex_state = 17}, - [965] = {.lex_state = 17}, - [966] = {.lex_state = 17}, - [967] = {.lex_state = 17}, - [968] = {.lex_state = 17}, + [913] = {.lex_state = 14, .external_lex_state = 2}, + [914] = {.lex_state = 14, .external_lex_state = 2}, + [915] = {.lex_state = 14, .external_lex_state = 2}, + [916] = {.lex_state = 14, .external_lex_state = 2}, + [917] = {.lex_state = 14, .external_lex_state = 2}, + [918] = {.lex_state = 12, .external_lex_state = 2}, + [919] = {.lex_state = 14, .external_lex_state = 2}, + [920] = {.lex_state = 14, .external_lex_state = 2}, + [921] = {.lex_state = 14, .external_lex_state = 2}, + [922] = {.lex_state = 14, .external_lex_state = 2}, + [923] = {.lex_state = 14, .external_lex_state = 2}, + [924] = {.lex_state = 14, .external_lex_state = 2}, + [925] = {.lex_state = 14, .external_lex_state = 2}, + [926] = {.lex_state = 14, .external_lex_state = 2}, + [927] = {.lex_state = 14, .external_lex_state = 2}, + [928] = {.lex_state = 14, .external_lex_state = 2}, + [929] = {.lex_state = 14, .external_lex_state = 2}, + [930] = {.lex_state = 14, .external_lex_state = 2}, + [931] = {.lex_state = 14, .external_lex_state = 2}, + [932] = {.lex_state = 14, .external_lex_state = 2}, + [933] = {.lex_state = 14, .external_lex_state = 2}, + [934] = {.lex_state = 14, .external_lex_state = 2}, + [935] = {.lex_state = 14, .external_lex_state = 2}, + [936] = {.lex_state = 14, .external_lex_state = 2}, + [937] = {.lex_state = 14, .external_lex_state = 2}, + [938] = {.lex_state = 14, .external_lex_state = 2}, + [939] = {.lex_state = 14, .external_lex_state = 2}, + [940] = {.lex_state = 14, .external_lex_state = 2}, + [941] = {.lex_state = 14, .external_lex_state = 2}, + [942] = {.lex_state = 14, .external_lex_state = 2}, + [943] = {.lex_state = 14, .external_lex_state = 2}, + [944] = {.lex_state = 14, .external_lex_state = 2}, + [945] = {.lex_state = 14, .external_lex_state = 2}, + [946] = {.lex_state = 14, .external_lex_state = 2}, + [947] = {.lex_state = 14, .external_lex_state = 2}, + [948] = {.lex_state = 14, .external_lex_state = 2}, + [949] = {.lex_state = 14, .external_lex_state = 2}, + [950] = {.lex_state = 14, .external_lex_state = 2}, + [951] = {.lex_state = 14, .external_lex_state = 2}, + [952] = {.lex_state = 14, .external_lex_state = 2}, + [953] = {.lex_state = 14, .external_lex_state = 2}, + [954] = {.lex_state = 14, .external_lex_state = 2}, + [955] = {.lex_state = 14, .external_lex_state = 2}, + [956] = {.lex_state = 14, .external_lex_state = 2}, + [957] = {.lex_state = 14, .external_lex_state = 2}, + [958] = {.lex_state = 14, .external_lex_state = 2}, + [959] = {.lex_state = 14, .external_lex_state = 2}, + [960] = {.lex_state = 14, .external_lex_state = 2}, + [961] = {.lex_state = 14, .external_lex_state = 2}, + [962] = {.lex_state = 14, .external_lex_state = 2}, + [963] = {.lex_state = 14, .external_lex_state = 2}, + [964] = {.lex_state = 14, .external_lex_state = 2}, + [965] = {.lex_state = 14, .external_lex_state = 2}, + [966] = {.lex_state = 14, .external_lex_state = 2}, + [967] = {.lex_state = 14, .external_lex_state = 2}, + [968] = {.lex_state = 14, .external_lex_state = 2}, [969] = {.lex_state = 17}, [970] = {.lex_state = 17}, [971] = {.lex_state = 17}, @@ -11435,175 +12433,175 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1046] = {.lex_state = 17}, [1047] = {.lex_state = 17}, [1048] = {.lex_state = 17}, - [1049] = {.lex_state = 13, .external_lex_state = 2}, - [1050] = {.lex_state = 13, .external_lex_state = 2}, - [1051] = {.lex_state = 13, .external_lex_state = 2}, - [1052] = {.lex_state = 15, .external_lex_state = 2}, - [1053] = {.lex_state = 15, .external_lex_state = 2}, - [1054] = {.lex_state = 13, .external_lex_state = 2}, - [1055] = {.lex_state = 12, .external_lex_state = 2}, + [1049] = {.lex_state = 17}, + [1050] = {.lex_state = 17}, + [1051] = {.lex_state = 17}, + [1052] = {.lex_state = 17}, + [1053] = {.lex_state = 17}, + [1054] = {.lex_state = 17}, + [1055] = {.lex_state = 17}, [1056] = {.lex_state = 17}, - [1057] = {.lex_state = 13, .external_lex_state = 2}, - [1058] = {.lex_state = 13, .external_lex_state = 2}, - [1059] = {.lex_state = 13, .external_lex_state = 2}, - [1060] = {.lex_state = 9}, - [1061] = {.lex_state = 8}, - [1062] = {.lex_state = 8}, - [1063] = {.lex_state = 8}, - [1064] = {.lex_state = 14, .external_lex_state = 2}, - [1065] = {.lex_state = 23}, - [1066] = {.lex_state = 23}, - [1067] = {.lex_state = 23}, - [1068] = {.lex_state = 23}, - [1069] = {.lex_state = 23}, - [1070] = {.lex_state = 23}, - [1071] = {.lex_state = 23}, - [1072] = {.lex_state = 8}, - [1073] = {.lex_state = 23}, - [1074] = {.lex_state = 23}, - [1075] = {.lex_state = 26}, + [1057] = {.lex_state = 17}, + [1058] = {.lex_state = 17}, + [1059] = {.lex_state = 17}, + [1060] = {.lex_state = 17}, + [1061] = {.lex_state = 17}, + [1062] = {.lex_state = 17}, + [1063] = {.lex_state = 17}, + [1064] = {.lex_state = 17}, + [1065] = {.lex_state = 17}, + [1066] = {.lex_state = 17}, + [1067] = {.lex_state = 17}, + [1068] = {.lex_state = 17}, + [1069] = {.lex_state = 17}, + [1070] = {.lex_state = 17}, + [1071] = {.lex_state = 17}, + [1072] = {.lex_state = 17}, + [1073] = {.lex_state = 17}, + [1074] = {.lex_state = 17}, + [1075] = {.lex_state = 17}, [1076] = {.lex_state = 17}, [1077] = {.lex_state = 17}, - [1078] = {.lex_state = 8}, + [1078] = {.lex_state = 17}, [1079] = {.lex_state = 17}, - [1080] = {.lex_state = 8}, - [1081] = {.lex_state = 26}, - [1082] = {.lex_state = 8}, - [1083] = {.lex_state = 26}, - [1084] = {.lex_state = 8}, - [1085] = {.lex_state = 8}, - [1086] = {.lex_state = 8}, - [1087] = {.lex_state = 8}, + [1080] = {.lex_state = 17}, + [1081] = {.lex_state = 17}, + [1082] = {.lex_state = 17}, + [1083] = {.lex_state = 17}, + [1084] = {.lex_state = 17}, + [1085] = {.lex_state = 17}, + [1086] = {.lex_state = 17}, + [1087] = {.lex_state = 17}, [1088] = {.lex_state = 17}, - [1089] = {.lex_state = 26}, - [1090] = {.lex_state = 8}, - [1091] = {.lex_state = 26}, - [1092] = {.lex_state = 9}, - [1093] = {.lex_state = 9}, - [1094] = {.lex_state = 9}, - [1095] = {.lex_state = 14, .external_lex_state = 2}, - [1096] = {.lex_state = 14, .external_lex_state = 2}, - [1097] = {.lex_state = 9}, + [1089] = {.lex_state = 17}, + [1090] = {.lex_state = 17}, + [1091] = {.lex_state = 17}, + [1092] = {.lex_state = 17}, + [1093] = {.lex_state = 17}, + [1094] = {.lex_state = 17}, + [1095] = {.lex_state = 17}, + [1096] = {.lex_state = 17}, + [1097] = {.lex_state = 17}, [1098] = {.lex_state = 17}, [1099] = {.lex_state = 17}, - [1100] = {.lex_state = 9}, - [1101] = {.lex_state = 9}, + [1100] = {.lex_state = 17}, + [1101] = {.lex_state = 17}, [1102] = {.lex_state = 17}, [1103] = {.lex_state = 17}, - [1104] = {.lex_state = 9}, - [1105] = {.lex_state = 9}, - [1106] = {.lex_state = 23}, - [1107] = {.lex_state = 9}, - [1108] = {.lex_state = 9}, - [1109] = {.lex_state = 9}, - [1110] = {.lex_state = 9}, - [1111] = {.lex_state = 14, .external_lex_state = 2}, - [1112] = {.lex_state = 21}, - [1113] = {.lex_state = 14, .external_lex_state = 2}, - [1114] = {.lex_state = 23}, + [1104] = {.lex_state = 17}, + [1105] = {.lex_state = 17}, + [1106] = {.lex_state = 17}, + [1107] = {.lex_state = 17}, + [1108] = {.lex_state = 17}, + [1109] = {.lex_state = 17}, + [1110] = {.lex_state = 17}, + [1111] = {.lex_state = 17}, + [1112] = {.lex_state = 17}, + [1113] = {.lex_state = 17}, + [1114] = {.lex_state = 17}, [1115] = {.lex_state = 17}, - [1116] = {.lex_state = 12, .external_lex_state = 2}, - [1117] = {.lex_state = 9}, - [1118] = {.lex_state = 9}, - [1119] = {.lex_state = 9}, - [1120] = {.lex_state = 23}, - [1121] = {.lex_state = 23}, - [1122] = {.lex_state = 12, .external_lex_state = 2}, - [1123] = {.lex_state = 9}, - [1124] = {.lex_state = 12, .external_lex_state = 2}, - [1125] = {.lex_state = 9}, - [1126] = {.lex_state = 9}, - [1127] = {.lex_state = 21}, - [1128] = {.lex_state = 20}, - [1129] = {.lex_state = 9}, - [1130] = {.lex_state = 9}, - [1131] = {.lex_state = 20}, - [1132] = {.lex_state = 20}, - [1133] = {.lex_state = 23}, - [1134] = {.lex_state = 9}, - [1135] = {.lex_state = 23}, - [1136] = {.lex_state = 23}, - [1137] = {.lex_state = 23}, - [1138] = {.lex_state = 23}, - [1139] = {.lex_state = 23}, - [1140] = {.lex_state = 23}, - [1141] = {.lex_state = 23}, - [1142] = {.lex_state = 23}, - [1143] = {.lex_state = 23}, - [1144] = {.lex_state = 23}, - [1145] = {.lex_state = 23}, - [1146] = {.lex_state = 23}, - [1147] = {.lex_state = 23}, - [1148] = {.lex_state = 23}, - [1149] = {.lex_state = 23}, - [1150] = {.lex_state = 23}, - [1151] = {.lex_state = 8}, - [1152] = {.lex_state = 20}, - [1153] = {.lex_state = 20}, - [1154] = {.lex_state = 20}, - [1155] = {.lex_state = 20}, - [1156] = {.lex_state = 23}, - [1157] = {.lex_state = 23}, - [1158] = {.lex_state = 23}, - [1159] = {.lex_state = 23}, - [1160] = {.lex_state = 23}, - [1161] = {.lex_state = 23}, - [1162] = {.lex_state = 23}, - [1163] = {.lex_state = 23}, - [1164] = {.lex_state = 23}, - [1165] = {.lex_state = 23}, - [1166] = {.lex_state = 23}, - [1167] = {.lex_state = 23}, - [1168] = {.lex_state = 23}, - [1169] = {.lex_state = 23}, - [1170] = {.lex_state = 23}, - [1171] = {.lex_state = 23}, - [1172] = {.lex_state = 23}, - [1173] = {.lex_state = 23}, - [1174] = {.lex_state = 23}, - [1175] = {.lex_state = 23}, - [1176] = {.lex_state = 23}, - [1177] = {.lex_state = 23}, - [1178] = {.lex_state = 23}, - [1179] = {.lex_state = 23}, - [1180] = {.lex_state = 23}, - [1181] = {.lex_state = 23}, - [1182] = {.lex_state = 23}, - [1183] = {.lex_state = 23}, - [1184] = {.lex_state = 23}, - [1185] = {.lex_state = 23}, - [1186] = {.lex_state = 23}, - [1187] = {.lex_state = 23}, - [1188] = {.lex_state = 23}, - [1189] = {.lex_state = 23}, - [1190] = {.lex_state = 23}, - [1191] = {.lex_state = 23}, - [1192] = {.lex_state = 9}, - [1193] = {.lex_state = 20}, - [1194] = {.lex_state = 9}, - [1195] = {.lex_state = 20}, - [1196] = {.lex_state = 23}, - [1197] = {.lex_state = 23}, - [1198] = {.lex_state = 23}, - [1199] = {.lex_state = 23}, - [1200] = {.lex_state = 23}, - [1201] = {.lex_state = 23}, - [1202] = {.lex_state = 23}, - [1203] = {.lex_state = 23}, - [1204] = {.lex_state = 23}, - [1205] = {.lex_state = 23}, - [1206] = {.lex_state = 23}, - [1207] = {.lex_state = 23}, - [1208] = {.lex_state = 23}, - [1209] = {.lex_state = 23}, - [1210] = {.lex_state = 23}, - [1211] = {.lex_state = 23}, - [1212] = {.lex_state = 23}, - [1213] = {.lex_state = 23}, - [1214] = {.lex_state = 23}, - [1215] = {.lex_state = 23}, - [1216] = {.lex_state = 23}, - [1217] = {.lex_state = 23}, + [1116] = {.lex_state = 17}, + [1117] = {.lex_state = 17}, + [1118] = {.lex_state = 17}, + [1119] = {.lex_state = 17}, + [1120] = {.lex_state = 17}, + [1121] = {.lex_state = 17}, + [1122] = {.lex_state = 17}, + [1123] = {.lex_state = 17}, + [1124] = {.lex_state = 17}, + [1125] = {.lex_state = 17}, + [1126] = {.lex_state = 17}, + [1127] = {.lex_state = 17}, + [1128] = {.lex_state = 17}, + [1129] = {.lex_state = 17}, + [1130] = {.lex_state = 17}, + [1131] = {.lex_state = 17}, + [1132] = {.lex_state = 17}, + [1133] = {.lex_state = 17}, + [1134] = {.lex_state = 17}, + [1135] = {.lex_state = 17}, + [1136] = {.lex_state = 17}, + [1137] = {.lex_state = 17}, + [1138] = {.lex_state = 17}, + [1139] = {.lex_state = 17}, + [1140] = {.lex_state = 17}, + [1141] = {.lex_state = 17}, + [1142] = {.lex_state = 17}, + [1143] = {.lex_state = 17}, + [1144] = {.lex_state = 17}, + [1145] = {.lex_state = 17}, + [1146] = {.lex_state = 17}, + [1147] = {.lex_state = 17}, + [1148] = {.lex_state = 17}, + [1149] = {.lex_state = 17}, + [1150] = {.lex_state = 17}, + [1151] = {.lex_state = 17}, + [1152] = {.lex_state = 17}, + [1153] = {.lex_state = 17}, + [1154] = {.lex_state = 17}, + [1155] = {.lex_state = 17}, + [1156] = {.lex_state = 17}, + [1157] = {.lex_state = 17}, + [1158] = {.lex_state = 17}, + [1159] = {.lex_state = 17}, + [1160] = {.lex_state = 17}, + [1161] = {.lex_state = 17}, + [1162] = {.lex_state = 17}, + [1163] = {.lex_state = 17}, + [1164] = {.lex_state = 17}, + [1165] = {.lex_state = 17}, + [1166] = {.lex_state = 17}, + [1167] = {.lex_state = 17}, + [1168] = {.lex_state = 17}, + [1169] = {.lex_state = 17}, + [1170] = {.lex_state = 17}, + [1171] = {.lex_state = 17}, + [1172] = {.lex_state = 17}, + [1173] = {.lex_state = 17}, + [1174] = {.lex_state = 17}, + [1175] = {.lex_state = 17}, + [1176] = {.lex_state = 17}, + [1177] = {.lex_state = 17}, + [1178] = {.lex_state = 17}, + [1179] = {.lex_state = 17}, + [1180] = {.lex_state = 17}, + [1181] = {.lex_state = 17}, + [1182] = {.lex_state = 17}, + [1183] = {.lex_state = 17}, + [1184] = {.lex_state = 17}, + [1185] = {.lex_state = 17}, + [1186] = {.lex_state = 17}, + [1187] = {.lex_state = 17}, + [1188] = {.lex_state = 17}, + [1189] = {.lex_state = 17}, + [1190] = {.lex_state = 17}, + [1191] = {.lex_state = 17}, + [1192] = {.lex_state = 17}, + [1193] = {.lex_state = 17}, + [1194] = {.lex_state = 17}, + [1195] = {.lex_state = 17}, + [1196] = {.lex_state = 17}, + [1197] = {.lex_state = 17}, + [1198] = {.lex_state = 17}, + [1199] = {.lex_state = 17}, + [1200] = {.lex_state = 17}, + [1201] = {.lex_state = 17}, + [1202] = {.lex_state = 17}, + [1203] = {.lex_state = 13, .external_lex_state = 2}, + [1204] = {.lex_state = 13, .external_lex_state = 2}, + [1205] = {.lex_state = 13, .external_lex_state = 2}, + [1206] = {.lex_state = 15, .external_lex_state = 2}, + [1207] = {.lex_state = 15, .external_lex_state = 2}, + [1208] = {.lex_state = 13, .external_lex_state = 2}, + [1209] = {.lex_state = 12, .external_lex_state = 2}, + [1210] = {.lex_state = 17}, + [1211] = {.lex_state = 13, .external_lex_state = 2}, + [1212] = {.lex_state = 13, .external_lex_state = 2}, + [1213] = {.lex_state = 13, .external_lex_state = 2}, + [1214] = {.lex_state = 8}, + [1215] = {.lex_state = 9}, + [1216] = {.lex_state = 8}, + [1217] = {.lex_state = 8}, [1218] = {.lex_state = 23}, [1219] = {.lex_state = 23}, [1220] = {.lex_state = 23}, @@ -11613,37 +12611,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1224] = {.lex_state = 23}, [1225] = {.lex_state = 23}, [1226] = {.lex_state = 23}, - [1227] = {.lex_state = 23}, - [1228] = {.lex_state = 23}, - [1229] = {.lex_state = 23}, - [1230] = {.lex_state = 23}, - [1231] = {.lex_state = 23}, - [1232] = {.lex_state = 23}, - [1233] = {.lex_state = 23}, - [1234] = {.lex_state = 23}, - [1235] = {.lex_state = 23}, - [1236] = {.lex_state = 23}, - [1237] = {.lex_state = 23}, - [1238] = {.lex_state = 23}, - [1239] = {.lex_state = 23}, - [1240] = {.lex_state = 23}, - [1241] = {.lex_state = 23}, - [1242] = {.lex_state = 23}, - [1243] = {.lex_state = 23}, - [1244] = {.lex_state = 23}, - [1245] = {.lex_state = 23}, + [1227] = {.lex_state = 14, .external_lex_state = 2}, + [1228] = {.lex_state = 8}, + [1229] = {.lex_state = 8}, + [1230] = {.lex_state = 8}, + [1231] = {.lex_state = 26}, + [1232] = {.lex_state = 8}, + [1233] = {.lex_state = 17}, + [1234] = {.lex_state = 26}, + [1235] = {.lex_state = 8}, + [1236] = {.lex_state = 26}, + [1237] = {.lex_state = 17}, + [1238] = {.lex_state = 8}, + [1239] = {.lex_state = 8}, + [1240] = {.lex_state = 26}, + [1241] = {.lex_state = 8}, + [1242] = {.lex_state = 26}, + [1243] = {.lex_state = 17}, + [1244] = {.lex_state = 8}, + [1245] = {.lex_state = 14, .external_lex_state = 2}, [1246] = {.lex_state = 9}, - [1247] = {.lex_state = 20}, - [1248] = {.lex_state = 23}, - [1249] = {.lex_state = 23}, - [1250] = {.lex_state = 23}, - [1251] = {.lex_state = 23}, - [1252] = {.lex_state = 23}, - [1253] = {.lex_state = 23}, - [1254] = {.lex_state = 23}, - [1255] = {.lex_state = 23}, - [1256] = {.lex_state = 23}, - [1257] = {.lex_state = 23}, + [1247] = {.lex_state = 9}, + [1248] = {.lex_state = 9}, + [1249] = {.lex_state = 9}, + [1250] = {.lex_state = 17}, + [1251] = {.lex_state = 17}, + [1252] = {.lex_state = 9}, + [1253] = {.lex_state = 17}, + [1254] = {.lex_state = 9}, + [1255] = {.lex_state = 17}, + [1256] = {.lex_state = 17}, + [1257] = {.lex_state = 14, .external_lex_state = 2}, [1258] = {.lex_state = 23}, [1259] = {.lex_state = 23}, [1260] = {.lex_state = 23}, @@ -11662,7 +12660,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1273] = {.lex_state = 23}, [1274] = {.lex_state = 23}, [1275] = {.lex_state = 23}, - [1276] = {.lex_state = 9}, + [1276] = {.lex_state = 23}, [1277] = {.lex_state = 23}, [1278] = {.lex_state = 23}, [1279] = {.lex_state = 23}, @@ -11678,15 +12676,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1289] = {.lex_state = 23}, [1290] = {.lex_state = 23}, [1291] = {.lex_state = 23}, - [1292] = {.lex_state = 23}, - [1293] = {.lex_state = 23}, + [1292] = {.lex_state = 9}, + [1293] = {.lex_state = 20}, [1294] = {.lex_state = 23}, [1295] = {.lex_state = 23}, [1296] = {.lex_state = 23}, [1297] = {.lex_state = 23}, [1298] = {.lex_state = 23}, - [1299] = {.lex_state = 9}, - [1300] = {.lex_state = 20}, + [1299] = {.lex_state = 23}, + [1300] = {.lex_state = 23}, [1301] = {.lex_state = 23}, [1302] = {.lex_state = 23}, [1303] = {.lex_state = 23}, @@ -11738,8 +12736,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1349] = {.lex_state = 23}, [1350] = {.lex_state = 23}, [1351] = {.lex_state = 23}, - [1352] = {.lex_state = 9}, - [1353] = {.lex_state = 20}, + [1352] = {.lex_state = 23}, + [1353] = {.lex_state = 23}, [1354] = {.lex_state = 23}, [1355] = {.lex_state = 23}, [1356] = {.lex_state = 23}, @@ -11795,323 +12793,323 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1406] = {.lex_state = 23}, [1407] = {.lex_state = 23}, [1408] = {.lex_state = 23}, - [1409] = {.lex_state = 9}, - [1410] = {.lex_state = 17}, - [1411] = {.lex_state = 14, .external_lex_state = 2}, - [1412] = {.lex_state = 14, .external_lex_state = 2}, - [1413] = {.lex_state = 14, .external_lex_state = 2}, + [1409] = {.lex_state = 23}, + [1410] = {.lex_state = 9}, + [1411] = {.lex_state = 23}, + [1412] = {.lex_state = 23}, + [1413] = {.lex_state = 23}, [1414] = {.lex_state = 23}, - [1415] = {.lex_state = 14, .external_lex_state = 2}, + [1415] = {.lex_state = 23}, [1416] = {.lex_state = 9}, - [1417] = {.lex_state = 9}, - [1418] = {.lex_state = 9}, + [1417] = {.lex_state = 23}, + [1418] = {.lex_state = 23}, [1419] = {.lex_state = 23}, - [1420] = {.lex_state = 10}, - [1421] = {.lex_state = 9}, - [1422] = {.lex_state = 9}, - [1423] = {.lex_state = 9}, - [1424] = {.lex_state = 9}, - [1425] = {.lex_state = 9}, - [1426] = {.lex_state = 9}, - [1427] = {.lex_state = 9}, - [1428] = {.lex_state = 9}, - [1429] = {.lex_state = 9}, - [1430] = {.lex_state = 9}, - [1431] = {.lex_state = 9}, - [1432] = {.lex_state = 9}, + [1420] = {.lex_state = 9}, + [1421] = {.lex_state = 23}, + [1422] = {.lex_state = 23}, + [1423] = {.lex_state = 23}, + [1424] = {.lex_state = 23}, + [1425] = {.lex_state = 23}, + [1426] = {.lex_state = 23}, + [1427] = {.lex_state = 23}, + [1428] = {.lex_state = 23}, + [1429] = {.lex_state = 23}, + [1430] = {.lex_state = 23}, + [1431] = {.lex_state = 23}, + [1432] = {.lex_state = 23}, [1433] = {.lex_state = 9}, - [1434] = {.lex_state = 9}, - [1435] = {.lex_state = 9}, - [1436] = {.lex_state = 9}, + [1434] = {.lex_state = 23}, + [1435] = {.lex_state = 20}, + [1436] = {.lex_state = 23}, [1437] = {.lex_state = 9}, - [1438] = {.lex_state = 9}, - [1439] = {.lex_state = 9}, - [1440] = {.lex_state = 9}, + [1438] = {.lex_state = 23}, + [1439] = {.lex_state = 14, .external_lex_state = 2}, + [1440] = {.lex_state = 23}, [1441] = {.lex_state = 9}, [1442] = {.lex_state = 9}, [1443] = {.lex_state = 9}, - [1444] = {.lex_state = 9}, - [1445] = {.lex_state = 9}, - [1446] = {.lex_state = 9}, - [1447] = {.lex_state = 9}, - [1448] = {.lex_state = 9}, - [1449] = {.lex_state = 9}, - [1450] = {.lex_state = 9}, - [1451] = {.lex_state = 9}, - [1452] = {.lex_state = 9}, - [1453] = {.lex_state = 9}, - [1454] = {.lex_state = 9}, - [1455] = {.lex_state = 9}, - [1456] = {.lex_state = 9}, - [1457] = {.lex_state = 9}, - [1458] = {.lex_state = 9}, - [1459] = {.lex_state = 9}, - [1460] = {.lex_state = 9}, - [1461] = {.lex_state = 9}, - [1462] = {.lex_state = 9}, - [1463] = {.lex_state = 9}, - [1464] = {.lex_state = 9}, - [1465] = {.lex_state = 9}, - [1466] = {.lex_state = 9}, + [1444] = {.lex_state = 23}, + [1445] = {.lex_state = 23}, + [1446] = {.lex_state = 23}, + [1447] = {.lex_state = 20}, + [1448] = {.lex_state = 23}, + [1449] = {.lex_state = 23}, + [1450] = {.lex_state = 23}, + [1451] = {.lex_state = 23}, + [1452] = {.lex_state = 23}, + [1453] = {.lex_state = 23}, + [1454] = {.lex_state = 14, .external_lex_state = 2}, + [1455] = {.lex_state = 23}, + [1456] = {.lex_state = 23}, + [1457] = {.lex_state = 23}, + [1458] = {.lex_state = 23}, + [1459] = {.lex_state = 23}, + [1460] = {.lex_state = 23}, + [1461] = {.lex_state = 23}, + [1462] = {.lex_state = 23}, + [1463] = {.lex_state = 23}, + [1464] = {.lex_state = 23}, + [1465] = {.lex_state = 23}, + [1466] = {.lex_state = 23}, [1467] = {.lex_state = 9}, - [1468] = {.lex_state = 9}, - [1469] = {.lex_state = 9}, - [1470] = {.lex_state = 9}, - [1471] = {.lex_state = 9}, - [1472] = {.lex_state = 9}, - [1473] = {.lex_state = 9}, - [1474] = {.lex_state = 9}, - [1475] = {.lex_state = 9}, - [1476] = {.lex_state = 9}, - [1477] = {.lex_state = 9}, - [1478] = {.lex_state = 9}, - [1479] = {.lex_state = 9}, - [1480] = {.lex_state = 9}, - [1481] = {.lex_state = 9}, - [1482] = {.lex_state = 17}, - [1483] = {.lex_state = 9}, - [1484] = {.lex_state = 9}, - [1485] = {.lex_state = 9}, - [1486] = {.lex_state = 9}, - [1487] = {.lex_state = 9}, - [1488] = {.lex_state = 9}, - [1489] = {.lex_state = 9}, - [1490] = {.lex_state = 9}, - [1491] = {.lex_state = 9}, - [1492] = {.lex_state = 9}, - [1493] = {.lex_state = 9}, - [1494] = {.lex_state = 9}, - [1495] = {.lex_state = 9}, - [1496] = {.lex_state = 9}, - [1497] = {.lex_state = 9}, - [1498] = {.lex_state = 9}, - [1499] = {.lex_state = 9}, - [1500] = {.lex_state = 9}, - [1501] = {.lex_state = 9}, - [1502] = {.lex_state = 9}, - [1503] = {.lex_state = 9}, - [1504] = {.lex_state = 9}, - [1505] = {.lex_state = 9}, - [1506] = {.lex_state = 9}, + [1468] = {.lex_state = 23}, + [1469] = {.lex_state = 23}, + [1470] = {.lex_state = 23}, + [1471] = {.lex_state = 23}, + [1472] = {.lex_state = 23}, + [1473] = {.lex_state = 14, .external_lex_state = 2}, + [1474] = {.lex_state = 23}, + [1475] = {.lex_state = 23}, + [1476] = {.lex_state = 23}, + [1477] = {.lex_state = 23}, + [1478] = {.lex_state = 23}, + [1479] = {.lex_state = 23}, + [1480] = {.lex_state = 23}, + [1481] = {.lex_state = 23}, + [1482] = {.lex_state = 23}, + [1483] = {.lex_state = 23}, + [1484] = {.lex_state = 23}, + [1485] = {.lex_state = 23}, + [1486] = {.lex_state = 23}, + [1487] = {.lex_state = 23}, + [1488] = {.lex_state = 23}, + [1489] = {.lex_state = 23}, + [1490] = {.lex_state = 23}, + [1491] = {.lex_state = 23}, + [1492] = {.lex_state = 23}, + [1493] = {.lex_state = 23}, + [1494] = {.lex_state = 23}, + [1495] = {.lex_state = 23}, + [1496] = {.lex_state = 23}, + [1497] = {.lex_state = 23}, + [1498] = {.lex_state = 23}, + [1499] = {.lex_state = 23}, + [1500] = {.lex_state = 23}, + [1501] = {.lex_state = 23}, + [1502] = {.lex_state = 23}, + [1503] = {.lex_state = 23}, + [1504] = {.lex_state = 23}, + [1505] = {.lex_state = 23}, + [1506] = {.lex_state = 23}, [1507] = {.lex_state = 9}, - [1508] = {.lex_state = 9}, - [1509] = {.lex_state = 9}, - [1510] = {.lex_state = 9}, - [1511] = {.lex_state = 9}, - [1512] = {.lex_state = 9}, - [1513] = {.lex_state = 9}, - [1514] = {.lex_state = 9}, - [1515] = {.lex_state = 9}, - [1516] = {.lex_state = 9}, - [1517] = {.lex_state = 9}, - [1518] = {.lex_state = 9}, - [1519] = {.lex_state = 9}, - [1520] = {.lex_state = 9}, - [1521] = {.lex_state = 9}, + [1508] = {.lex_state = 23}, + [1509] = {.lex_state = 23}, + [1510] = {.lex_state = 23}, + [1511] = {.lex_state = 23}, + [1512] = {.lex_state = 23}, + [1513] = {.lex_state = 14, .external_lex_state = 2}, + [1514] = {.lex_state = 23}, + [1515] = {.lex_state = 21}, + [1516] = {.lex_state = 23}, + [1517] = {.lex_state = 23}, + [1518] = {.lex_state = 23}, + [1519] = {.lex_state = 23}, + [1520] = {.lex_state = 23}, + [1521] = {.lex_state = 23}, [1522] = {.lex_state = 9}, - [1523] = {.lex_state = 9}, - [1524] = {.lex_state = 9}, - [1525] = {.lex_state = 9}, - [1526] = {.lex_state = 9}, + [1523] = {.lex_state = 23}, + [1524] = {.lex_state = 23}, + [1525] = {.lex_state = 20}, + [1526] = {.lex_state = 23}, [1527] = {.lex_state = 9}, [1528] = {.lex_state = 9}, - [1529] = {.lex_state = 9}, - [1530] = {.lex_state = 9}, + [1529] = {.lex_state = 12, .external_lex_state = 2}, + [1530] = {.lex_state = 23}, [1531] = {.lex_state = 9}, - [1532] = {.lex_state = 9}, + [1532] = {.lex_state = 23}, [1533] = {.lex_state = 9}, [1534] = {.lex_state = 9}, - [1535] = {.lex_state = 9}, - [1536] = {.lex_state = 9}, - [1537] = {.lex_state = 9}, - [1538] = {.lex_state = 9}, - [1539] = {.lex_state = 9}, - [1540] = {.lex_state = 17}, - [1541] = {.lex_state = 17}, - [1542] = {.lex_state = 9}, - [1543] = {.lex_state = 9}, - [1544] = {.lex_state = 9}, - [1545] = {.lex_state = 9}, - [1546] = {.lex_state = 17}, - [1547] = {.lex_state = 17}, - [1548] = {.lex_state = 9}, - [1549] = {.lex_state = 9}, - [1550] = {.lex_state = 9}, - [1551] = {.lex_state = 9}, - [1552] = {.lex_state = 11}, - [1553] = {.lex_state = 11}, - [1554] = {.lex_state = 11}, - [1555] = {.lex_state = 9}, - [1556] = {.lex_state = 17}, + [1535] = {.lex_state = 23}, + [1536] = {.lex_state = 23}, + [1537] = {.lex_state = 23}, + [1538] = {.lex_state = 23}, + [1539] = {.lex_state = 14, .external_lex_state = 2}, + [1540] = {.lex_state = 23}, + [1541] = {.lex_state = 14, .external_lex_state = 2}, + [1542] = {.lex_state = 23}, + [1543] = {.lex_state = 23}, + [1544] = {.lex_state = 23}, + [1545] = {.lex_state = 23}, + [1546] = {.lex_state = 23}, + [1547] = {.lex_state = 23}, + [1548] = {.lex_state = 23}, + [1549] = {.lex_state = 23}, + [1550] = {.lex_state = 23}, + [1551] = {.lex_state = 23}, + [1552] = {.lex_state = 12, .external_lex_state = 2}, + [1553] = {.lex_state = 9}, + [1554] = {.lex_state = 23}, + [1555] = {.lex_state = 12, .external_lex_state = 2}, + [1556] = {.lex_state = 9}, [1557] = {.lex_state = 9}, - [1558] = {.lex_state = 9}, - [1559] = {.lex_state = 17}, - [1560] = {.lex_state = 9}, - [1561] = {.lex_state = 17}, - [1562] = {.lex_state = 17}, + [1558] = {.lex_state = 23}, + [1559] = {.lex_state = 23}, + [1560] = {.lex_state = 21}, + [1561] = {.lex_state = 20}, + [1562] = {.lex_state = 23}, [1563] = {.lex_state = 9}, - [1564] = {.lex_state = 9}, - [1565] = {.lex_state = 13, .external_lex_state = 2}, - [1566] = {.lex_state = 13, .external_lex_state = 2}, - [1567] = {.lex_state = 9}, - [1568] = {.lex_state = 9}, - [1569] = {.lex_state = 13, .external_lex_state = 2}, - [1570] = {.lex_state = 13, .external_lex_state = 2}, - [1571] = {.lex_state = 9}, - [1572] = {.lex_state = 9}, - [1573] = {.lex_state = 9}, - [1574] = {.lex_state = 9}, - [1575] = {.lex_state = 13, .external_lex_state = 2}, - [1576] = {.lex_state = 9}, - [1577] = {.lex_state = 13, .external_lex_state = 2}, + [1564] = {.lex_state = 23}, + [1565] = {.lex_state = 23}, + [1566] = {.lex_state = 9}, + [1567] = {.lex_state = 23}, + [1568] = {.lex_state = 23}, + [1569] = {.lex_state = 20}, + [1570] = {.lex_state = 23}, + [1571] = {.lex_state = 23}, + [1572] = {.lex_state = 20}, + [1573] = {.lex_state = 23}, + [1574] = {.lex_state = 23}, + [1575] = {.lex_state = 23}, + [1576] = {.lex_state = 23}, + [1577] = {.lex_state = 23}, [1578] = {.lex_state = 9}, - [1579] = {.lex_state = 9}, + [1579] = {.lex_state = 23}, [1580] = {.lex_state = 9}, - [1581] = {.lex_state = 17}, - [1582] = {.lex_state = 9}, - [1583] = {.lex_state = 10}, - [1584] = {.lex_state = 11}, - [1585] = {.lex_state = 9}, - [1586] = {.lex_state = 11}, - [1587] = {.lex_state = 10}, - [1588] = {.lex_state = 10}, - [1589] = {.lex_state = 9}, - [1590] = {.lex_state = 10}, - [1591] = {.lex_state = 11}, - [1592] = {.lex_state = 9}, - [1593] = {.lex_state = 9}, - [1594] = {.lex_state = 11}, - [1595] = {.lex_state = 9}, - [1596] = {.lex_state = 11}, - [1597] = {.lex_state = 11}, - [1598] = {.lex_state = 11}, - [1599] = {.lex_state = 9}, - [1600] = {.lex_state = 11}, - [1601] = {.lex_state = 9}, - [1602] = {.lex_state = 10}, - [1603] = {.lex_state = 11}, - [1604] = {.lex_state = 9}, - [1605] = {.lex_state = 17}, - [1606] = {.lex_state = 10}, - [1607] = {.lex_state = 17}, - [1608] = {.lex_state = 9}, - [1609] = {.lex_state = 9}, - [1610] = {.lex_state = 9}, - [1611] = {.lex_state = 10}, - [1612] = {.lex_state = 10}, - [1613] = {.lex_state = 10}, - [1614] = {.lex_state = 9}, - [1615] = {.lex_state = 10}, - [1616] = {.lex_state = 9}, - [1617] = {.lex_state = 10}, - [1618] = {.lex_state = 10}, - [1619] = {.lex_state = 9}, - [1620] = {.lex_state = 10}, - [1621] = {.lex_state = 10}, - [1622] = {.lex_state = 9}, - [1623] = {.lex_state = 10}, - [1624] = {.lex_state = 9}, - [1625] = {.lex_state = 9}, - [1626] = {.lex_state = 9}, - [1627] = {.lex_state = 9}, - [1628] = {.lex_state = 9}, - [1629] = {.lex_state = 9}, - [1630] = {.lex_state = 9}, - [1631] = {.lex_state = 9}, - [1632] = {.lex_state = 10}, - [1633] = {.lex_state = 10}, - [1634] = {.lex_state = 17}, - [1635] = {.lex_state = 10}, - [1636] = {.lex_state = 10}, - [1637] = {.lex_state = 9}, - [1638] = {.lex_state = 17}, - [1639] = {.lex_state = 9}, - [1640] = {.lex_state = 10}, - [1641] = {.lex_state = 22}, - [1642] = {.lex_state = 10}, - [1643] = {.lex_state = 10}, - [1644] = {.lex_state = 22}, - [1645] = {.lex_state = 10}, - [1646] = {.lex_state = 10}, - [1647] = {.lex_state = 9}, - [1648] = {.lex_state = 9}, - [1649] = {.lex_state = 9}, - [1650] = {.lex_state = 9}, - [1651] = {.lex_state = 22}, - [1652] = {.lex_state = 10}, - [1653] = {.lex_state = 10}, - [1654] = {.lex_state = 9}, - [1655] = {.lex_state = 9}, - [1656] = {.lex_state = 17}, - [1657] = {.lex_state = 10}, - [1658] = {.lex_state = 9}, - [1659] = {.lex_state = 10}, - [1660] = {.lex_state = 10}, - [1661] = {.lex_state = 22}, - [1662] = {.lex_state = 22}, - [1663] = {.lex_state = 9}, - [1664] = {.lex_state = 9}, - [1665] = {.lex_state = 9}, - [1666] = {.lex_state = 10}, - [1667] = {.lex_state = 9}, - [1668] = {.lex_state = 9}, - [1669] = {.lex_state = 10}, - [1670] = {.lex_state = 9}, - [1671] = {.lex_state = 22}, - [1672] = {.lex_state = 9}, - [1673] = {.lex_state = 22}, - [1674] = {.lex_state = 9}, - [1675] = {.lex_state = 9}, - [1676] = {.lex_state = 10}, - [1677] = {.lex_state = 9}, - [1678] = {.lex_state = 9}, - [1679] = {.lex_state = 10}, + [1581] = {.lex_state = 23}, + [1582] = {.lex_state = 23}, + [1583] = {.lex_state = 23}, + [1584] = {.lex_state = 23}, + [1585] = {.lex_state = 23}, + [1586] = {.lex_state = 23}, + [1587] = {.lex_state = 23}, + [1588] = {.lex_state = 23}, + [1589] = {.lex_state = 23}, + [1590] = {.lex_state = 23}, + [1591] = {.lex_state = 23}, + [1592] = {.lex_state = 23}, + [1593] = {.lex_state = 23}, + [1594] = {.lex_state = 23}, + [1595] = {.lex_state = 23}, + [1596] = {.lex_state = 23}, + [1597] = {.lex_state = 23}, + [1598] = {.lex_state = 23}, + [1599] = {.lex_state = 23}, + [1600] = {.lex_state = 23}, + [1601] = {.lex_state = 23}, + [1602] = {.lex_state = 23}, + [1603] = {.lex_state = 23}, + [1604] = {.lex_state = 23}, + [1605] = {.lex_state = 23}, + [1606] = {.lex_state = 23}, + [1607] = {.lex_state = 23}, + [1608] = {.lex_state = 23}, + [1609] = {.lex_state = 23}, + [1610] = {.lex_state = 23}, + [1611] = {.lex_state = 23}, + [1612] = {.lex_state = 23}, + [1613] = {.lex_state = 23}, + [1614] = {.lex_state = 23}, + [1615] = {.lex_state = 23}, + [1616] = {.lex_state = 23}, + [1617] = {.lex_state = 23}, + [1618] = {.lex_state = 23}, + [1619] = {.lex_state = 23}, + [1620] = {.lex_state = 23}, + [1621] = {.lex_state = 23}, + [1622] = {.lex_state = 23}, + [1623] = {.lex_state = 23}, + [1624] = {.lex_state = 23}, + [1625] = {.lex_state = 23}, + [1626] = {.lex_state = 23}, + [1627] = {.lex_state = 23}, + [1628] = {.lex_state = 23}, + [1629] = {.lex_state = 23}, + [1630] = {.lex_state = 23}, + [1631] = {.lex_state = 23}, + [1632] = {.lex_state = 23}, + [1633] = {.lex_state = 23}, + [1634] = {.lex_state = 9}, + [1635] = {.lex_state = 23}, + [1636] = {.lex_state = 23}, + [1637] = {.lex_state = 20}, + [1638] = {.lex_state = 23}, + [1639] = {.lex_state = 23}, + [1640] = {.lex_state = 23}, + [1641] = {.lex_state = 23}, + [1642] = {.lex_state = 23}, + [1643] = {.lex_state = 23}, + [1644] = {.lex_state = 23}, + [1645] = {.lex_state = 23}, + [1646] = {.lex_state = 23}, + [1647] = {.lex_state = 23}, + [1648] = {.lex_state = 23}, + [1649] = {.lex_state = 23}, + [1650] = {.lex_state = 23}, + [1651] = {.lex_state = 23}, + [1652] = {.lex_state = 23}, + [1653] = {.lex_state = 23}, + [1654] = {.lex_state = 23}, + [1655] = {.lex_state = 8}, + [1656] = {.lex_state = 23}, + [1657] = {.lex_state = 23}, + [1658] = {.lex_state = 20}, + [1659] = {.lex_state = 23}, + [1660] = {.lex_state = 23}, + [1661] = {.lex_state = 23}, + [1662] = {.lex_state = 23}, + [1663] = {.lex_state = 20}, + [1664] = {.lex_state = 20}, + [1665] = {.lex_state = 20}, + [1666] = {.lex_state = 23}, + [1667] = {.lex_state = 23}, + [1668] = {.lex_state = 23}, + [1669] = {.lex_state = 23}, + [1670] = {.lex_state = 23}, + [1671] = {.lex_state = 23}, + [1672] = {.lex_state = 23}, + [1673] = {.lex_state = 23}, + [1674] = {.lex_state = 23}, + [1675] = {.lex_state = 23}, + [1676] = {.lex_state = 23}, + [1677] = {.lex_state = 23}, + [1678] = {.lex_state = 23}, + [1679] = {.lex_state = 23}, [1680] = {.lex_state = 9}, [1681] = {.lex_state = 9}, [1682] = {.lex_state = 9}, - [1683] = {.lex_state = 10}, + [1683] = {.lex_state = 9}, [1684] = {.lex_state = 9}, - [1685] = {.lex_state = 10}, - [1686] = {.lex_state = 10}, + [1685] = {.lex_state = 9}, + [1686] = {.lex_state = 9}, [1687] = {.lex_state = 9}, [1688] = {.lex_state = 9}, - [1689] = {.lex_state = 10}, - [1690] = {.lex_state = 10}, - [1691] = {.lex_state = 10}, - [1692] = {.lex_state = 11}, + [1689] = {.lex_state = 9}, + [1690] = {.lex_state = 9}, + [1691] = {.lex_state = 9}, + [1692] = {.lex_state = 9}, [1693] = {.lex_state = 9}, - [1694] = {.lex_state = 22}, - [1695] = {.lex_state = 22}, - [1696] = {.lex_state = 22}, - [1697] = {.lex_state = 22}, - [1698] = {.lex_state = 22}, + [1694] = {.lex_state = 9}, + [1695] = {.lex_state = 9}, + [1696] = {.lex_state = 9}, + [1697] = {.lex_state = 9}, + [1698] = {.lex_state = 9}, [1699] = {.lex_state = 9}, [1700] = {.lex_state = 9}, - [1701] = {.lex_state = 9}, - [1702] = {.lex_state = 10}, - [1703] = {.lex_state = 10}, - [1704] = {.lex_state = 10}, + [1701] = {.lex_state = 10}, + [1702] = {.lex_state = 9}, + [1703] = {.lex_state = 9}, + [1704] = {.lex_state = 9}, [1705] = {.lex_state = 9}, - [1706] = {.lex_state = 10}, + [1706] = {.lex_state = 9}, [1707] = {.lex_state = 9}, [1708] = {.lex_state = 9}, - [1709] = {.lex_state = 10}, - [1710] = {.lex_state = 10}, - [1711] = {.lex_state = 10}, - [1712] = {.lex_state = 10}, - [1713] = {.lex_state = 10}, - [1714] = {.lex_state = 10}, - [1715] = {.lex_state = 10}, - [1716] = {.lex_state = 10}, - [1717] = {.lex_state = 10}, - [1718] = {.lex_state = 10}, - [1719] = {.lex_state = 10}, - [1720] = {.lex_state = 10}, - [1721] = {.lex_state = 10}, - [1722] = {.lex_state = 10}, + [1709] = {.lex_state = 9}, + [1710] = {.lex_state = 9}, + [1711] = {.lex_state = 9}, + [1712] = {.lex_state = 9}, + [1713] = {.lex_state = 9}, + [1714] = {.lex_state = 9}, + [1715] = {.lex_state = 9}, + [1716] = {.lex_state = 9}, + [1717] = {.lex_state = 9}, + [1718] = {.lex_state = 9}, + [1719] = {.lex_state = 9}, + [1720] = {.lex_state = 9}, + [1721] = {.lex_state = 9}, + [1722] = {.lex_state = 9}, [1723] = {.lex_state = 9}, [1724] = {.lex_state = 9}, - [1725] = {.lex_state = 10}, + [1725] = {.lex_state = 9}, [1726] = {.lex_state = 9}, [1727] = {.lex_state = 9}, [1728] = {.lex_state = 9}, @@ -12126,154 +13124,154 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1737] = {.lex_state = 9}, [1738] = {.lex_state = 9}, [1739] = {.lex_state = 9}, - [1740] = {.lex_state = 10}, - [1741] = {.lex_state = 10}, - [1742] = {.lex_state = 10}, - [1743] = {.lex_state = 10}, + [1740] = {.lex_state = 17}, + [1741] = {.lex_state = 9}, + [1742] = {.lex_state = 9}, + [1743] = {.lex_state = 9}, [1744] = {.lex_state = 9}, - [1745] = {.lex_state = 10}, - [1746] = {.lex_state = 10}, - [1747] = {.lex_state = 10}, + [1745] = {.lex_state = 9}, + [1746] = {.lex_state = 9}, + [1747] = {.lex_state = 9}, [1748] = {.lex_state = 9}, - [1749] = {.lex_state = 10}, - [1750] = {.lex_state = 10}, - [1751] = {.lex_state = 10}, - [1752] = {.lex_state = 10}, - [1753] = {.lex_state = 10}, - [1754] = {.lex_state = 10}, - [1755] = {.lex_state = 10}, - [1756] = {.lex_state = 10}, - [1757] = {.lex_state = 10}, - [1758] = {.lex_state = 10}, + [1749] = {.lex_state = 9}, + [1750] = {.lex_state = 9}, + [1751] = {.lex_state = 9}, + [1752] = {.lex_state = 9}, + [1753] = {.lex_state = 9}, + [1754] = {.lex_state = 9}, + [1755] = {.lex_state = 9}, + [1756] = {.lex_state = 9}, + [1757] = {.lex_state = 9}, + [1758] = {.lex_state = 9}, [1759] = {.lex_state = 9}, - [1760] = {.lex_state = 10}, - [1761] = {.lex_state = 10}, - [1762] = {.lex_state = 10}, + [1760] = {.lex_state = 9}, + [1761] = {.lex_state = 9}, + [1762] = {.lex_state = 9}, [1763] = {.lex_state = 9}, - [1764] = {.lex_state = 10}, - [1765] = {.lex_state = 10}, - [1766] = {.lex_state = 10}, - [1767] = {.lex_state = 10}, - [1768] = {.lex_state = 10}, - [1769] = {.lex_state = 10}, - [1770] = {.lex_state = 10}, - [1771] = {.lex_state = 10}, - [1772] = {.lex_state = 9}, - [1773] = {.lex_state = 10}, - [1774] = {.lex_state = 10}, - [1775] = {.lex_state = 10}, - [1776] = {.lex_state = 10}, - [1777] = {.lex_state = 10}, - [1778] = {.lex_state = 10}, - [1779] = {.lex_state = 10}, - [1780] = {.lex_state = 10}, - [1781] = {.lex_state = 10}, - [1782] = {.lex_state = 10}, - [1783] = {.lex_state = 10}, + [1764] = {.lex_state = 9}, + [1765] = {.lex_state = 9}, + [1766] = {.lex_state = 9}, + [1767] = {.lex_state = 9}, + [1768] = {.lex_state = 9}, + [1769] = {.lex_state = 9}, + [1770] = {.lex_state = 9}, + [1771] = {.lex_state = 9}, + [1772] = {.lex_state = 17}, + [1773] = {.lex_state = 17}, + [1774] = {.lex_state = 9}, + [1775] = {.lex_state = 9}, + [1776] = {.lex_state = 9}, + [1777] = {.lex_state = 9}, + [1778] = {.lex_state = 9}, + [1779] = {.lex_state = 9}, + [1780] = {.lex_state = 9}, + [1781] = {.lex_state = 9}, + [1782] = {.lex_state = 9}, + [1783] = {.lex_state = 9}, [1784] = {.lex_state = 9}, [1785] = {.lex_state = 9}, - [1786] = {.lex_state = 10}, - [1787] = {.lex_state = 10}, - [1788] = {.lex_state = 10}, - [1789] = {.lex_state = 10}, - [1790] = {.lex_state = 10}, - [1791] = {.lex_state = 10}, + [1786] = {.lex_state = 9}, + [1787] = {.lex_state = 9}, + [1788] = {.lex_state = 9}, + [1789] = {.lex_state = 9}, + [1790] = {.lex_state = 9}, + [1791] = {.lex_state = 9}, [1792] = {.lex_state = 9}, - [1793] = {.lex_state = 10}, - [1794] = {.lex_state = 10}, - [1795] = {.lex_state = 10}, - [1796] = {.lex_state = 10}, - [1797] = {.lex_state = 10}, - [1798] = {.lex_state = 10}, - [1799] = {.lex_state = 10}, - [1800] = {.lex_state = 10}, - [1801] = {.lex_state = 10}, - [1802] = {.lex_state = 10}, - [1803] = {.lex_state = 10}, - [1804] = {.lex_state = 10}, - [1805] = {.lex_state = 10}, - [1806] = {.lex_state = 10}, - [1807] = {.lex_state = 10}, - [1808] = {.lex_state = 10}, - [1809] = {.lex_state = 9}, - [1810] = {.lex_state = 10}, - [1811] = {.lex_state = 10}, - [1812] = {.lex_state = 10}, - [1813] = {.lex_state = 10}, - [1814] = {.lex_state = 10}, - [1815] = {.lex_state = 10}, - [1816] = {.lex_state = 10}, - [1817] = {.lex_state = 10}, - [1818] = {.lex_state = 10}, - [1819] = {.lex_state = 10}, - [1820] = {.lex_state = 10}, - [1821] = {.lex_state = 10}, - [1822] = {.lex_state = 10}, - [1823] = {.lex_state = 10}, - [1824] = {.lex_state = 10}, - [1825] = {.lex_state = 10}, - [1826] = {.lex_state = 10}, - [1827] = {.lex_state = 9}, - [1828] = {.lex_state = 10}, - [1829] = {.lex_state = 10}, - [1830] = {.lex_state = 10}, - [1831] = {.lex_state = 10}, - [1832] = {.lex_state = 10}, - [1833] = {.lex_state = 10}, - [1834] = {.lex_state = 10}, - [1835] = {.lex_state = 10}, - [1836] = {.lex_state = 10}, - [1837] = {.lex_state = 10}, - [1838] = {.lex_state = 10}, - [1839] = {.lex_state = 10}, - [1840] = {.lex_state = 10}, - [1841] = {.lex_state = 10}, - [1842] = {.lex_state = 10}, + [1793] = {.lex_state = 9}, + [1794] = {.lex_state = 9}, + [1795] = {.lex_state = 9}, + [1796] = {.lex_state = 9}, + [1797] = {.lex_state = 9}, + [1798] = {.lex_state = 9}, + [1799] = {.lex_state = 9}, + [1800] = {.lex_state = 9}, + [1801] = {.lex_state = 9}, + [1802] = {.lex_state = 17}, + [1803] = {.lex_state = 17}, + [1804] = {.lex_state = 9}, + [1805] = {.lex_state = 9}, + [1806] = {.lex_state = 17}, + [1807] = {.lex_state = 9}, + [1808] = {.lex_state = 9}, + [1809] = {.lex_state = 17}, + [1810] = {.lex_state = 9}, + [1811] = {.lex_state = 13, .external_lex_state = 2}, + [1812] = {.lex_state = 9}, + [1813] = {.lex_state = 9}, + [1814] = {.lex_state = 9}, + [1815] = {.lex_state = 9}, + [1816] = {.lex_state = 11}, + [1817] = {.lex_state = 17}, + [1818] = {.lex_state = 9}, + [1819] = {.lex_state = 9}, + [1820] = {.lex_state = 11}, + [1821] = {.lex_state = 9}, + [1822] = {.lex_state = 9}, + [1823] = {.lex_state = 9}, + [1824] = {.lex_state = 13, .external_lex_state = 2}, + [1825] = {.lex_state = 9}, + [1826] = {.lex_state = 13, .external_lex_state = 2}, + [1827] = {.lex_state = 13, .external_lex_state = 2}, + [1828] = {.lex_state = 9}, + [1829] = {.lex_state = 9}, + [1830] = {.lex_state = 17}, + [1831] = {.lex_state = 17}, + [1832] = {.lex_state = 9}, + [1833] = {.lex_state = 11}, + [1834] = {.lex_state = 13, .external_lex_state = 2}, + [1835] = {.lex_state = 9}, + [1836] = {.lex_state = 9}, + [1837] = {.lex_state = 9}, + [1838] = {.lex_state = 9}, + [1839] = {.lex_state = 17}, + [1840] = {.lex_state = 9}, + [1841] = {.lex_state = 13, .external_lex_state = 2}, + [1842] = {.lex_state = 17}, [1843] = {.lex_state = 9}, [1844] = {.lex_state = 10}, - [1845] = {.lex_state = 9}, - [1846] = {.lex_state = 10}, - [1847] = {.lex_state = 10}, + [1845] = {.lex_state = 11}, + [1846] = {.lex_state = 9}, + [1847] = {.lex_state = 9}, [1848] = {.lex_state = 9}, [1849] = {.lex_state = 9}, - [1850] = {.lex_state = 10}, + [1850] = {.lex_state = 9}, [1851] = {.lex_state = 9}, [1852] = {.lex_state = 9}, [1853] = {.lex_state = 9}, - [1854] = {.lex_state = 17}, - [1855] = {.lex_state = 9}, + [1854] = {.lex_state = 9}, + [1855] = {.lex_state = 11}, [1856] = {.lex_state = 10}, - [1857] = {.lex_state = 9}, - [1858] = {.lex_state = 10}, - [1859] = {.lex_state = 9}, - [1860] = {.lex_state = 9}, - [1861] = {.lex_state = 9}, - [1862] = {.lex_state = 9}, - [1863] = {.lex_state = 9}, - [1864] = {.lex_state = 9}, - [1865] = {.lex_state = 9}, - [1866] = {.lex_state = 9}, + [1857] = {.lex_state = 10}, + [1858] = {.lex_state = 11}, + [1859] = {.lex_state = 11}, + [1860] = {.lex_state = 10}, + [1861] = {.lex_state = 10}, + [1862] = {.lex_state = 11}, + [1863] = {.lex_state = 11}, + [1864] = {.lex_state = 11}, + [1865] = {.lex_state = 11}, + [1866] = {.lex_state = 11}, [1867] = {.lex_state = 9}, [1868] = {.lex_state = 9}, - [1869] = {.lex_state = 9}, + [1869] = {.lex_state = 17}, [1870] = {.lex_state = 9}, - [1871] = {.lex_state = 9}, - [1872] = {.lex_state = 9}, - [1873] = {.lex_state = 9}, - [1874] = {.lex_state = 9}, - [1875] = {.lex_state = 9}, - [1876] = {.lex_state = 17}, - [1877] = {.lex_state = 9}, - [1878] = {.lex_state = 9}, - [1879] = {.lex_state = 9}, - [1880] = {.lex_state = 9}, - [1881] = {.lex_state = 9}, - [1882] = {.lex_state = 10}, - [1883] = {.lex_state = 9}, - [1884] = {.lex_state = 9}, - [1885] = {.lex_state = 9}, + [1871] = {.lex_state = 10}, + [1872] = {.lex_state = 10}, + [1873] = {.lex_state = 10}, + [1874] = {.lex_state = 10}, + [1875] = {.lex_state = 10}, + [1876] = {.lex_state = 9}, + [1877] = {.lex_state = 10}, + [1878] = {.lex_state = 10}, + [1879] = {.lex_state = 10}, + [1880] = {.lex_state = 10}, + [1881] = {.lex_state = 10}, + [1882] = {.lex_state = 9}, + [1883] = {.lex_state = 17}, + [1884] = {.lex_state = 10}, + [1885] = {.lex_state = 10}, [1886] = {.lex_state = 10}, - [1887] = {.lex_state = 9}, + [1887] = {.lex_state = 17}, [1888] = {.lex_state = 9}, [1889] = {.lex_state = 9}, [1890] = {.lex_state = 9}, @@ -12286,46 +13284,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1897] = {.lex_state = 9}, [1898] = {.lex_state = 9}, [1899] = {.lex_state = 9}, - [1900] = {.lex_state = 9}, - [1901] = {.lex_state = 9}, - [1902] = {.lex_state = 10}, - [1903] = {.lex_state = 10}, + [1900] = {.lex_state = 17}, + [1901] = {.lex_state = 10}, + [1902] = {.lex_state = 9}, + [1903] = {.lex_state = 22}, [1904] = {.lex_state = 10}, [1905] = {.lex_state = 10}, - [1906] = {.lex_state = 10}, + [1906] = {.lex_state = 9}, [1907] = {.lex_state = 9}, - [1908] = {.lex_state = 10}, - [1909] = {.lex_state = 10}, - [1910] = {.lex_state = 9}, - [1911] = {.lex_state = 10}, - [1912] = {.lex_state = 9}, - [1913] = {.lex_state = 10}, - [1914] = {.lex_state = 9}, + [1908] = {.lex_state = 9}, + [1909] = {.lex_state = 9}, + [1910] = {.lex_state = 11}, + [1911] = {.lex_state = 22}, + [1912] = {.lex_state = 22}, + [1913] = {.lex_state = 22}, + [1914] = {.lex_state = 22}, [1915] = {.lex_state = 9}, - [1916] = {.lex_state = 10}, - [1917] = {.lex_state = 9}, + [1916] = {.lex_state = 22}, + [1917] = {.lex_state = 10}, [1918] = {.lex_state = 9}, - [1919] = {.lex_state = 17}, + [1919] = {.lex_state = 22}, [1920] = {.lex_state = 9}, - [1921] = {.lex_state = 9}, + [1921] = {.lex_state = 22}, [1922] = {.lex_state = 9}, - [1923] = {.lex_state = 10}, - [1924] = {.lex_state = 9}, - [1925] = {.lex_state = 9}, + [1923] = {.lex_state = 22}, + [1924] = {.lex_state = 10}, + [1925] = {.lex_state = 22}, [1926] = {.lex_state = 9}, - [1927] = {.lex_state = 10}, - [1928] = {.lex_state = 9}, - [1929] = {.lex_state = 9}, - [1930] = {.lex_state = 17}, - [1931] = {.lex_state = 9}, - [1932] = {.lex_state = 9}, - [1933] = {.lex_state = 9}, + [1927] = {.lex_state = 17}, + [1928] = {.lex_state = 10}, + [1929] = {.lex_state = 10}, + [1930] = {.lex_state = 9}, + [1931] = {.lex_state = 10}, + [1932] = {.lex_state = 10}, + [1933] = {.lex_state = 10}, [1934] = {.lex_state = 10}, [1935] = {.lex_state = 9}, - [1936] = {.lex_state = 17}, - [1937] = {.lex_state = 9}, - [1938] = {.lex_state = 9}, - [1939] = {.lex_state = 9}, + [1936] = {.lex_state = 9}, + [1937] = {.lex_state = 10}, + [1938] = {.lex_state = 10}, + [1939] = {.lex_state = 10}, [1940] = {.lex_state = 9}, [1941] = {.lex_state = 9}, [1942] = {.lex_state = 9}, @@ -12335,297 +13333,297 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1946] = {.lex_state = 9}, [1947] = {.lex_state = 9}, [1948] = {.lex_state = 9}, - [1949] = {.lex_state = 17}, + [1949] = {.lex_state = 9}, [1950] = {.lex_state = 9}, - [1951] = {.lex_state = 9}, + [1951] = {.lex_state = 10}, [1952] = {.lex_state = 9}, - [1953] = {.lex_state = 17}, - [1954] = {.lex_state = 17}, - [1955] = {.lex_state = 17}, - [1956] = {.lex_state = 17}, - [1957] = {.lex_state = 17}, - [1958] = {.lex_state = 17}, - [1959] = {.lex_state = 17}, - [1960] = {.lex_state = 17}, - [1961] = {.lex_state = 17}, - [1962] = {.lex_state = 17}, - [1963] = {.lex_state = 17}, - [1964] = {.lex_state = 17}, - [1965] = {.lex_state = 17}, - [1966] = {.lex_state = 17}, - [1967] = {.lex_state = 17}, - [1968] = {.lex_state = 17}, - [1969] = {.lex_state = 17}, - [1970] = {.lex_state = 17}, - [1971] = {.lex_state = 17}, - [1972] = {.lex_state = 17}, - [1973] = {.lex_state = 17}, - [1974] = {.lex_state = 17}, - [1975] = {.lex_state = 17}, - [1976] = {.lex_state = 31}, - [1977] = {.lex_state = 31}, - [1978] = {.lex_state = 18}, - [1979] = {.lex_state = 18}, - [1980] = {.lex_state = 18}, - [1981] = {.lex_state = 18}, - [1982] = {.lex_state = 18}, - [1983] = {.lex_state = 18}, - [1984] = {.lex_state = 17}, - [1985] = {.lex_state = 17}, - [1986] = {.lex_state = 17}, - [1987] = {.lex_state = 18}, - [1988] = {.lex_state = 18}, - [1989] = {.lex_state = 18}, - [1990] = {.lex_state = 18}, - [1991] = {.lex_state = 18}, - [1992] = {.lex_state = 17}, - [1993] = {.lex_state = 18}, - [1994] = {.lex_state = 13, .external_lex_state = 2}, - [1995] = {.lex_state = 17}, - [1996] = {.lex_state = 17}, - [1997] = {.lex_state = 17}, - [1998] = {.lex_state = 31}, - [1999] = {.lex_state = 18}, - [2000] = {.lex_state = 17}, - [2001] = {.lex_state = 18}, - [2002] = {.lex_state = 17}, - [2003] = {.lex_state = 17}, - [2004] = {.lex_state = 18}, - [2005] = {.lex_state = 17}, - [2006] = {.lex_state = 17}, - [2007] = {.lex_state = 31}, - [2008] = {.lex_state = 17}, - [2009] = {.lex_state = 31}, - [2010] = {.lex_state = 31}, - [2011] = {.lex_state = 31}, - [2012] = {.lex_state = 31}, - [2013] = {.lex_state = 17}, - [2014] = {.lex_state = 18}, - [2015] = {.lex_state = 17}, - [2016] = {.lex_state = 31}, - [2017] = {.lex_state = 18}, - [2018] = {.lex_state = 31}, - [2019] = {.lex_state = 17}, - [2020] = {.lex_state = 31}, - [2021] = {.lex_state = 17}, - [2022] = {.lex_state = 31}, - [2023] = {.lex_state = 31}, - [2024] = {.lex_state = 17}, - [2025] = {.lex_state = 31}, - [2026] = {.lex_state = 17}, - [2027] = {.lex_state = 31}, - [2028] = {.lex_state = 18}, - [2029] = {.lex_state = 18}, - [2030] = {.lex_state = 31}, - [2031] = {.lex_state = 17}, - [2032] = {.lex_state = 17}, - [2033] = {.lex_state = 31}, - [2034] = {.lex_state = 31}, - [2035] = {.lex_state = 31}, - [2036] = {.lex_state = 31}, - [2037] = {.lex_state = 31}, - [2038] = {.lex_state = 31}, - [2039] = {.lex_state = 17}, - [2040] = {.lex_state = 17}, - [2041] = {.lex_state = 17}, - [2042] = {.lex_state = 31}, - [2043] = {.lex_state = 17}, - [2044] = {.lex_state = 31}, - [2045] = {.lex_state = 31}, - [2046] = {.lex_state = 31}, - [2047] = {.lex_state = 31}, - [2048] = {.lex_state = 31}, - [2049] = {.lex_state = 18}, - [2050] = {.lex_state = 31}, - [2051] = {.lex_state = 31}, - [2052] = {.lex_state = 31}, - [2053] = {.lex_state = 31}, - [2054] = {.lex_state = 31}, - [2055] = {.lex_state = 17}, - [2056] = {.lex_state = 31}, - [2057] = {.lex_state = 31}, - [2058] = {.lex_state = 31}, - [2059] = {.lex_state = 31}, - [2060] = {.lex_state = 31}, - [2061] = {.lex_state = 31}, - [2062] = {.lex_state = 31}, - [2063] = {.lex_state = 31}, - [2064] = {.lex_state = 31}, - [2065] = {.lex_state = 31}, - [2066] = {.lex_state = 31}, - [2067] = {.lex_state = 31}, - [2068] = {.lex_state = 31}, - [2069] = {.lex_state = 31}, - [2070] = {.lex_state = 31}, - [2071] = {.lex_state = 17}, - [2072] = {.lex_state = 31}, - [2073] = {.lex_state = 17}, - [2074] = {.lex_state = 31}, - [2075] = {.lex_state = 31}, - [2076] = {.lex_state = 17}, - [2077] = {.lex_state = 17}, - [2078] = {.lex_state = 17}, - [2079] = {.lex_state = 17}, - [2080] = {.lex_state = 17}, - [2081] = {.lex_state = 17}, - [2082] = {.lex_state = 17}, - [2083] = {.lex_state = 18}, - [2084] = {.lex_state = 18}, - [2085] = {.lex_state = 18}, - [2086] = {.lex_state = 18}, - [2087] = {.lex_state = 31}, - [2088] = {.lex_state = 18}, - [2089] = {.lex_state = 18}, - [2090] = {.lex_state = 18}, - [2091] = {.lex_state = 18}, - [2092] = {.lex_state = 18}, - [2093] = {.lex_state = 18}, - [2094] = {.lex_state = 18}, - [2095] = {.lex_state = 18}, - [2096] = {.lex_state = 31}, - [2097] = {.lex_state = 19}, - [2098] = {.lex_state = 18}, - [2099] = {.lex_state = 17}, - [2100] = {.lex_state = 17}, - [2101] = {.lex_state = 17}, - [2102] = {.lex_state = 17}, - [2103] = {.lex_state = 17}, - [2104] = {.lex_state = 17}, - [2105] = {.lex_state = 17}, - [2106] = {.lex_state = 17}, - [2107] = {.lex_state = 17}, - [2108] = {.lex_state = 17}, - [2109] = {.lex_state = 17}, - [2110] = {.lex_state = 31}, - [2111] = {.lex_state = 17}, - [2112] = {.lex_state = 17}, - [2113] = {.lex_state = 17}, - [2114] = {.lex_state = 27}, - [2115] = {.lex_state = 18}, - [2116] = {.lex_state = 17}, - [2117] = {.lex_state = 17}, - [2118] = {.lex_state = 18}, - [2119] = {.lex_state = 18}, - [2120] = {.lex_state = 18}, - [2121] = {.lex_state = 17}, - [2122] = {.lex_state = 17}, - [2123] = {.lex_state = 31}, - [2124] = {.lex_state = 17}, - [2125] = {.lex_state = 18}, - [2126] = {.lex_state = 17}, - [2127] = {.lex_state = 19}, - [2128] = {.lex_state = 18}, - [2129] = {.lex_state = 17}, - [2130] = {.lex_state = 17}, - [2131] = {.lex_state = 17}, - [2132] = {.lex_state = 19}, - [2133] = {.lex_state = 31}, - [2134] = {.lex_state = 17}, - [2135] = {.lex_state = 18}, - [2136] = {.lex_state = 17}, - [2137] = {.lex_state = 19}, - [2138] = {.lex_state = 17}, - [2139] = {.lex_state = 17}, - [2140] = {.lex_state = 31}, - [2141] = {.lex_state = 24}, - [2142] = {.lex_state = 24}, - [2143] = {.lex_state = 18}, - [2144] = {.lex_state = 24}, - [2145] = {.lex_state = 17}, - [2146] = {.lex_state = 19}, - [2147] = {.lex_state = 24}, - [2148] = {.lex_state = 18}, - [2149] = {.lex_state = 18}, - [2150] = {.lex_state = 18}, - [2151] = {.lex_state = 17}, - [2152] = {.lex_state = 31}, - [2153] = {.lex_state = 18}, - [2154] = {.lex_state = 18}, - [2155] = {.lex_state = 27}, - [2156] = {.lex_state = 17}, - [2157] = {.lex_state = 31}, - [2158] = {.lex_state = 17}, - [2159] = {.lex_state = 31}, - [2160] = {.lex_state = 17}, - [2161] = {.lex_state = 31}, - [2162] = {.lex_state = 17}, - [2163] = {.lex_state = 31}, - [2164] = {.lex_state = 27}, - [2165] = {.lex_state = 31}, - [2166] = {.lex_state = 27}, - [2167] = {.lex_state = 31}, - [2168] = {.lex_state = 27}, - [2169] = {.lex_state = 31}, - [2170] = {.lex_state = 31}, - [2171] = {.lex_state = 31}, - [2172] = {.lex_state = 18}, - [2173] = {.lex_state = 31}, - [2174] = {.lex_state = 31}, - [2175] = {.lex_state = 31}, - [2176] = {.lex_state = 31}, - [2177] = {.lex_state = 31}, - [2178] = {.lex_state = 31}, - [2179] = {.lex_state = 31}, - [2180] = {.lex_state = 31}, - [2181] = {.lex_state = 31}, - [2182] = {.lex_state = 31}, - [2183] = {.lex_state = 31}, - [2184] = {.lex_state = 31}, - [2185] = {.lex_state = 31}, - [2186] = {.lex_state = 18}, - [2187] = {.lex_state = 31}, - [2188] = {.lex_state = 31}, - [2189] = {.lex_state = 31}, - [2190] = {.lex_state = 31}, - [2191] = {.lex_state = 31}, - [2192] = {.lex_state = 17}, - [2193] = {.lex_state = 19}, - [2194] = {.lex_state = 31}, - [2195] = {.lex_state = 17}, - [2196] = {.lex_state = 31}, - [2197] = {.lex_state = 18}, - [2198] = {.lex_state = 18}, - [2199] = {.lex_state = 31}, - [2200] = {.lex_state = 12}, - [2201] = {.lex_state = 27}, - [2202] = {.lex_state = 18}, - [2203] = {.lex_state = 18}, - [2204] = {.lex_state = 31}, - [2205] = {.lex_state = 31}, - [2206] = {.lex_state = 31}, - [2207] = {.lex_state = 31}, - [2208] = {.lex_state = 31}, - [2209] = {.lex_state = 31}, - [2210] = {.lex_state = 18}, - [2211] = {.lex_state = 31}, - [2212] = {.lex_state = 18}, + [1953] = {.lex_state = 10}, + [1954] = {.lex_state = 10}, + [1955] = {.lex_state = 22}, + [1956] = {.lex_state = 10}, + [1957] = {.lex_state = 10}, + [1958] = {.lex_state = 10}, + [1959] = {.lex_state = 9}, + [1960] = {.lex_state = 9}, + [1961] = {.lex_state = 22}, + [1962] = {.lex_state = 10}, + [1963] = {.lex_state = 10}, + [1964] = {.lex_state = 9}, + [1965] = {.lex_state = 9}, + [1966] = {.lex_state = 10}, + [1967] = {.lex_state = 10}, + [1968] = {.lex_state = 10}, + [1969] = {.lex_state = 10}, + [1970] = {.lex_state = 10}, + [1971] = {.lex_state = 10}, + [1972] = {.lex_state = 10}, + [1973] = {.lex_state = 10}, + [1974] = {.lex_state = 10}, + [1975] = {.lex_state = 10}, + [1976] = {.lex_state = 10}, + [1977] = {.lex_state = 10}, + [1978] = {.lex_state = 10}, + [1979] = {.lex_state = 9}, + [1980] = {.lex_state = 10}, + [1981] = {.lex_state = 10}, + [1982] = {.lex_state = 10}, + [1983] = {.lex_state = 9}, + [1984] = {.lex_state = 10}, + [1985] = {.lex_state = 10}, + [1986] = {.lex_state = 9}, + [1987] = {.lex_state = 10}, + [1988] = {.lex_state = 10}, + [1989] = {.lex_state = 10}, + [1990] = {.lex_state = 17}, + [1991] = {.lex_state = 9}, + [1992] = {.lex_state = 9}, + [1993] = {.lex_state = 9}, + [1994] = {.lex_state = 10}, + [1995] = {.lex_state = 9}, + [1996] = {.lex_state = 9}, + [1997] = {.lex_state = 9}, + [1998] = {.lex_state = 10}, + [1999] = {.lex_state = 10}, + [2000] = {.lex_state = 10}, + [2001] = {.lex_state = 10}, + [2002] = {.lex_state = 9}, + [2003] = {.lex_state = 9}, + [2004] = {.lex_state = 9}, + [2005] = {.lex_state = 10}, + [2006] = {.lex_state = 10}, + [2007] = {.lex_state = 10}, + [2008] = {.lex_state = 10}, + [2009] = {.lex_state = 10}, + [2010] = {.lex_state = 10}, + [2011] = {.lex_state = 17}, + [2012] = {.lex_state = 10}, + [2013] = {.lex_state = 10}, + [2014] = {.lex_state = 10}, + [2015] = {.lex_state = 10}, + [2016] = {.lex_state = 10}, + [2017] = {.lex_state = 10}, + [2018] = {.lex_state = 9}, + [2019] = {.lex_state = 9}, + [2020] = {.lex_state = 9}, + [2021] = {.lex_state = 10}, + [2022] = {.lex_state = 10}, + [2023] = {.lex_state = 10}, + [2024] = {.lex_state = 9}, + [2025] = {.lex_state = 9}, + [2026] = {.lex_state = 9}, + [2027] = {.lex_state = 9}, + [2028] = {.lex_state = 9}, + [2029] = {.lex_state = 9}, + [2030] = {.lex_state = 9}, + [2031] = {.lex_state = 9}, + [2032] = {.lex_state = 9}, + [2033] = {.lex_state = 9}, + [2034] = {.lex_state = 9}, + [2035] = {.lex_state = 10}, + [2036] = {.lex_state = 9}, + [2037] = {.lex_state = 10}, + [2038] = {.lex_state = 10}, + [2039] = {.lex_state = 10}, + [2040] = {.lex_state = 10}, + [2041] = {.lex_state = 10}, + [2042] = {.lex_state = 9}, + [2043] = {.lex_state = 10}, + [2044] = {.lex_state = 10}, + [2045] = {.lex_state = 10}, + [2046] = {.lex_state = 10}, + [2047] = {.lex_state = 10}, + [2048] = {.lex_state = 10}, + [2049] = {.lex_state = 9}, + [2050] = {.lex_state = 10}, + [2051] = {.lex_state = 10}, + [2052] = {.lex_state = 10}, + [2053] = {.lex_state = 9}, + [2054] = {.lex_state = 10}, + [2055] = {.lex_state = 10}, + [2056] = {.lex_state = 10}, + [2057] = {.lex_state = 10}, + [2058] = {.lex_state = 10}, + [2059] = {.lex_state = 10}, + [2060] = {.lex_state = 10}, + [2061] = {.lex_state = 10}, + [2062] = {.lex_state = 10}, + [2063] = {.lex_state = 10}, + [2064] = {.lex_state = 10}, + [2065] = {.lex_state = 10}, + [2066] = {.lex_state = 10}, + [2067] = {.lex_state = 10}, + [2068] = {.lex_state = 10}, + [2069] = {.lex_state = 9}, + [2070] = {.lex_state = 9}, + [2071] = {.lex_state = 9}, + [2072] = {.lex_state = 10}, + [2073] = {.lex_state = 10}, + [2074] = {.lex_state = 10}, + [2075] = {.lex_state = 10}, + [2076] = {.lex_state = 10}, + [2077] = {.lex_state = 10}, + [2078] = {.lex_state = 9}, + [2079] = {.lex_state = 10}, + [2080] = {.lex_state = 10}, + [2081] = {.lex_state = 10}, + [2082] = {.lex_state = 10}, + [2083] = {.lex_state = 10}, + [2084] = {.lex_state = 10}, + [2085] = {.lex_state = 10}, + [2086] = {.lex_state = 10}, + [2087] = {.lex_state = 10}, + [2088] = {.lex_state = 10}, + [2089] = {.lex_state = 10}, + [2090] = {.lex_state = 10}, + [2091] = {.lex_state = 10}, + [2092] = {.lex_state = 10}, + [2093] = {.lex_state = 10}, + [2094] = {.lex_state = 9}, + [2095] = {.lex_state = 10}, + [2096] = {.lex_state = 10}, + [2097] = {.lex_state = 10}, + [2098] = {.lex_state = 10}, + [2099] = {.lex_state = 10}, + [2100] = {.lex_state = 10}, + [2101] = {.lex_state = 10}, + [2102] = {.lex_state = 10}, + [2103] = {.lex_state = 10}, + [2104] = {.lex_state = 10}, + [2105] = {.lex_state = 10}, + [2106] = {.lex_state = 10}, + [2107] = {.lex_state = 10}, + [2108] = {.lex_state = 10}, + [2109] = {.lex_state = 10}, + [2110] = {.lex_state = 10}, + [2111] = {.lex_state = 10}, + [2112] = {.lex_state = 10}, + [2113] = {.lex_state = 10}, + [2114] = {.lex_state = 10}, + [2115] = {.lex_state = 10}, + [2116] = {.lex_state = 10}, + [2117] = {.lex_state = 9}, + [2118] = {.lex_state = 10}, + [2119] = {.lex_state = 9}, + [2120] = {.lex_state = 10}, + [2121] = {.lex_state = 9}, + [2122] = {.lex_state = 9}, + [2123] = {.lex_state = 9}, + [2124] = {.lex_state = 10}, + [2125] = {.lex_state = 9}, + [2126] = {.lex_state = 10}, + [2127] = {.lex_state = 9}, + [2128] = {.lex_state = 9}, + [2129] = {.lex_state = 10}, + [2130] = {.lex_state = 9}, + [2131] = {.lex_state = 10}, + [2132] = {.lex_state = 9}, + [2133] = {.lex_state = 9}, + [2134] = {.lex_state = 9}, + [2135] = {.lex_state = 10}, + [2136] = {.lex_state = 9}, + [2137] = {.lex_state = 9}, + [2138] = {.lex_state = 9}, + [2139] = {.lex_state = 9}, + [2140] = {.lex_state = 10}, + [2141] = {.lex_state = 9}, + [2142] = {.lex_state = 9}, + [2143] = {.lex_state = 9}, + [2144] = {.lex_state = 9}, + [2145] = {.lex_state = 10}, + [2146] = {.lex_state = 9}, + [2147] = {.lex_state = 9}, + [2148] = {.lex_state = 9}, + [2149] = {.lex_state = 9}, + [2150] = {.lex_state = 9}, + [2151] = {.lex_state = 9}, + [2152] = {.lex_state = 9}, + [2153] = {.lex_state = 9}, + [2154] = {.lex_state = 10}, + [2155] = {.lex_state = 9}, + [2156] = {.lex_state = 9}, + [2157] = {.lex_state = 9}, + [2158] = {.lex_state = 10}, + [2159] = {.lex_state = 9}, + [2160] = {.lex_state = 9}, + [2161] = {.lex_state = 9}, + [2162] = {.lex_state = 9}, + [2163] = {.lex_state = 10}, + [2164] = {.lex_state = 9}, + [2165] = {.lex_state = 9}, + [2166] = {.lex_state = 10}, + [2167] = {.lex_state = 9}, + [2168] = {.lex_state = 9}, + [2169] = {.lex_state = 9}, + [2170] = {.lex_state = 9}, + [2171] = {.lex_state = 9}, + [2172] = {.lex_state = 9}, + [2173] = {.lex_state = 9}, + [2174] = {.lex_state = 9}, + [2175] = {.lex_state = 9}, + [2176] = {.lex_state = 9}, + [2177] = {.lex_state = 9}, + [2178] = {.lex_state = 9}, + [2179] = {.lex_state = 10}, + [2180] = {.lex_state = 9}, + [2181] = {.lex_state = 9}, + [2182] = {.lex_state = 10}, + [2183] = {.lex_state = 9}, + [2184] = {.lex_state = 9}, + [2185] = {.lex_state = 9}, + [2186] = {.lex_state = 9}, + [2187] = {.lex_state = 9}, + [2188] = {.lex_state = 9}, + [2189] = {.lex_state = 9}, + [2190] = {.lex_state = 9}, + [2191] = {.lex_state = 10}, + [2192] = {.lex_state = 9}, + [2193] = {.lex_state = 9}, + [2194] = {.lex_state = 17}, + [2195] = {.lex_state = 9}, + [2196] = {.lex_state = 9}, + [2197] = {.lex_state = 9}, + [2198] = {.lex_state = 9}, + [2199] = {.lex_state = 9}, + [2200] = {.lex_state = 10}, + [2201] = {.lex_state = 9}, + [2202] = {.lex_state = 9}, + [2203] = {.lex_state = 9}, + [2204] = {.lex_state = 9}, + [2205] = {.lex_state = 9}, + [2206] = {.lex_state = 10}, + [2207] = {.lex_state = 9}, + [2208] = {.lex_state = 9}, + [2209] = {.lex_state = 9}, + [2210] = {.lex_state = 9}, + [2211] = {.lex_state = 9}, + [2212] = {.lex_state = 9}, [2213] = {.lex_state = 17}, [2214] = {.lex_state = 17}, - [2215] = {.lex_state = 17}, - [2216] = {.lex_state = 31}, + [2215] = {.lex_state = 9}, + [2216] = {.lex_state = 9}, [2217] = {.lex_state = 17}, - [2218] = {.lex_state = 19}, - [2219] = {.lex_state = 19}, - [2220] = {.lex_state = 8}, - [2221] = {.lex_state = 17}, - [2222] = {.lex_state = 17}, - [2223] = {.lex_state = 8}, - [2224] = {.lex_state = 72}, - [2225] = {.lex_state = 12}, - [2226] = {.lex_state = 31}, - [2227] = {.lex_state = 12}, - [2228] = {.lex_state = 12}, - [2229] = {.lex_state = 31}, - [2230] = {.lex_state = 27}, - [2231] = {.lex_state = 8}, - [2232] = {.lex_state = 31}, - [2233] = {.lex_state = 19}, + [2218] = {.lex_state = 17}, + [2219] = {.lex_state = 17}, + [2220] = {.lex_state = 9}, + [2221] = {.lex_state = 9}, + [2222] = {.lex_state = 9}, + [2223] = {.lex_state = 17}, + [2224] = {.lex_state = 9}, + [2225] = {.lex_state = 9}, + [2226] = {.lex_state = 17}, + [2227] = {.lex_state = 17}, + [2228] = {.lex_state = 17}, + [2229] = {.lex_state = 17}, + [2230] = {.lex_state = 17}, + [2231] = {.lex_state = 17}, + [2232] = {.lex_state = 17}, + [2233] = {.lex_state = 17}, [2234] = {.lex_state = 17}, - [2235] = {.lex_state = 31}, - [2236] = {.lex_state = 31}, - [2237] = {.lex_state = 31}, + [2235] = {.lex_state = 17}, + [2236] = {.lex_state = 17}, + [2237] = {.lex_state = 17}, [2238] = {.lex_state = 17}, - [2239] = {.lex_state = 19}, + [2239] = {.lex_state = 17}, [2240] = {.lex_state = 17}, [2241] = {.lex_state = 17}, [2242] = {.lex_state = 17}, @@ -12635,1358 +13633,1358 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2246] = {.lex_state = 17}, [2247] = {.lex_state = 17}, [2248] = {.lex_state = 17}, - [2249] = {.lex_state = 12}, + [2249] = {.lex_state = 17}, [2250] = {.lex_state = 17}, - [2251] = {.lex_state = 31}, + [2251] = {.lex_state = 17}, [2252] = {.lex_state = 17}, - [2253] = {.lex_state = 31}, - [2254] = {.lex_state = 31}, + [2253] = {.lex_state = 17}, + [2254] = {.lex_state = 17}, [2255] = {.lex_state = 17}, [2256] = {.lex_state = 31}, - [2257] = {.lex_state = 17}, - [2258] = {.lex_state = 17}, - [2259] = {.lex_state = 17}, - [2260] = {.lex_state = 19}, - [2261] = {.lex_state = 17}, - [2262] = {.lex_state = 31}, - [2263] = {.lex_state = 17}, + [2257] = {.lex_state = 31}, + [2258] = {.lex_state = 18}, + [2259] = {.lex_state = 18}, + [2260] = {.lex_state = 18}, + [2261] = {.lex_state = 18}, + [2262] = {.lex_state = 18}, + [2263] = {.lex_state = 18}, [2264] = {.lex_state = 17}, - [2265] = {.lex_state = 17}, + [2265] = {.lex_state = 18}, [2266] = {.lex_state = 17}, - [2267] = {.lex_state = 27}, - [2268] = {.lex_state = 17}, - [2269] = {.lex_state = 17}, + [2267] = {.lex_state = 17}, + [2268] = {.lex_state = 18}, + [2269] = {.lex_state = 18}, [2270] = {.lex_state = 17}, - [2271] = {.lex_state = 17}, - [2272] = {.lex_state = 27}, - [2273] = {.lex_state = 17}, + [2271] = {.lex_state = 18}, + [2272] = {.lex_state = 18}, + [2273] = {.lex_state = 18}, [2274] = {.lex_state = 17}, - [2275] = {.lex_state = 17}, + [2275] = {.lex_state = 31}, [2276] = {.lex_state = 17}, - [2277] = {.lex_state = 17}, + [2277] = {.lex_state = 13, .external_lex_state = 2}, [2278] = {.lex_state = 17}, [2279] = {.lex_state = 17}, - [2280] = {.lex_state = 17}, - [2281] = {.lex_state = 17}, + [2280] = {.lex_state = 18}, + [2281] = {.lex_state = 31}, [2282] = {.lex_state = 17}, [2283] = {.lex_state = 17}, - [2284] = {.lex_state = 17}, + [2284] = {.lex_state = 18}, [2285] = {.lex_state = 17}, [2286] = {.lex_state = 17}, [2287] = {.lex_state = 17}, - [2288] = {.lex_state = 24}, - [2289] = {.lex_state = 27}, - [2290] = {.lex_state = 17}, - [2291] = {.lex_state = 27}, - [2292] = {.lex_state = 27}, - [2293] = {.lex_state = 27}, - [2294] = {.lex_state = 17}, - [2295] = {.lex_state = 17}, - [2296] = {.lex_state = 17}, - [2297] = {.lex_state = 17}, - [2298] = {.lex_state = 27}, - [2299] = {.lex_state = 17}, - [2300] = {.lex_state = 17}, + [2288] = {.lex_state = 17}, + [2289] = {.lex_state = 31}, + [2290] = {.lex_state = 31}, + [2291] = {.lex_state = 31}, + [2292] = {.lex_state = 17}, + [2293] = {.lex_state = 18}, + [2294] = {.lex_state = 31}, + [2295] = {.lex_state = 31}, + [2296] = {.lex_state = 31}, + [2297] = {.lex_state = 31}, + [2298] = {.lex_state = 17}, + [2299] = {.lex_state = 31}, + [2300] = {.lex_state = 18}, [2301] = {.lex_state = 17}, - [2302] = {.lex_state = 17}, - [2303] = {.lex_state = 17}, - [2304] = {.lex_state = 27}, - [2305] = {.lex_state = 27}, - [2306] = {.lex_state = 27}, - [2307] = {.lex_state = 17}, - [2308] = {.lex_state = 17}, - [2309] = {.lex_state = 12}, - [2310] = {.lex_state = 27}, + [2302] = {.lex_state = 31}, + [2303] = {.lex_state = 31}, + [2304] = {.lex_state = 17}, + [2305] = {.lex_state = 18}, + [2306] = {.lex_state = 18}, + [2307] = {.lex_state = 31}, + [2308] = {.lex_state = 18}, + [2309] = {.lex_state = 17}, + [2310] = {.lex_state = 31}, [2311] = {.lex_state = 17}, [2312] = {.lex_state = 17}, [2313] = {.lex_state = 17}, [2314] = {.lex_state = 17}, - [2315] = {.lex_state = 27}, - [2316] = {.lex_state = 17}, - [2317] = {.lex_state = 27}, - [2318] = {.lex_state = 72}, - [2319] = {.lex_state = 72}, - [2320] = {.lex_state = 72}, - [2321] = {.lex_state = 72}, - [2322] = {.lex_state = 72}, - [2323] = {.lex_state = 72}, - [2324] = {.lex_state = 12}, - [2325] = {.lex_state = 72}, - [2326] = {.lex_state = 72}, - [2327] = {.lex_state = 169}, - [2328] = {.lex_state = 27}, - [2329] = {.lex_state = 72}, - [2330] = {.lex_state = 17}, - [2331] = {.lex_state = 72}, - [2332] = {.lex_state = 72}, + [2315] = {.lex_state = 31}, + [2316] = {.lex_state = 31}, + [2317] = {.lex_state = 31}, + [2318] = {.lex_state = 17}, + [2319] = {.lex_state = 31}, + [2320] = {.lex_state = 31}, + [2321] = {.lex_state = 17}, + [2322] = {.lex_state = 31}, + [2323] = {.lex_state = 17}, + [2324] = {.lex_state = 31}, + [2325] = {.lex_state = 31}, + [2326] = {.lex_state = 31}, + [2327] = {.lex_state = 31}, + [2328] = {.lex_state = 31}, + [2329] = {.lex_state = 31}, + [2330] = {.lex_state = 31}, + [2331] = {.lex_state = 31}, + [2332] = {.lex_state = 18}, [2333] = {.lex_state = 17}, - [2334] = {.lex_state = 72}, - [2335] = {.lex_state = 72}, - [2336] = {.lex_state = 27}, - [2337] = {.lex_state = 72}, - [2338] = {.lex_state = 31}, - [2339] = {.lex_state = 17}, - [2340] = {.lex_state = 27}, - [2341] = {.lex_state = 12}, - [2342] = {.lex_state = 17}, - [2343] = {.lex_state = 19}, - [2344] = {.lex_state = 5}, - [2345] = {.lex_state = 72}, - [2346] = {.lex_state = 72}, - [2347] = {.lex_state = 17}, - [2348] = {.lex_state = 72}, - [2349] = {.lex_state = 27}, - [2350] = {.lex_state = 72}, - [2351] = {.lex_state = 17}, - [2352] = {.lex_state = 72}, - [2353] = {.lex_state = 5}, - [2354] = {.lex_state = 12}, - [2355] = {.lex_state = 72}, - [2356] = {.lex_state = 72}, - [2357] = {.lex_state = 72}, - [2358] = {.lex_state = 72}, - [2359] = {.lex_state = 72}, - [2360] = {.lex_state = 72}, + [2334] = {.lex_state = 31}, + [2335] = {.lex_state = 17}, + [2336] = {.lex_state = 31}, + [2337] = {.lex_state = 31}, + [2338] = {.lex_state = 17}, + [2339] = {.lex_state = 31}, + [2340] = {.lex_state = 31}, + [2341] = {.lex_state = 31}, + [2342] = {.lex_state = 31}, + [2343] = {.lex_state = 31}, + [2344] = {.lex_state = 31}, + [2345] = {.lex_state = 31}, + [2346] = {.lex_state = 31}, + [2347] = {.lex_state = 31}, + [2348] = {.lex_state = 31}, + [2349] = {.lex_state = 31}, + [2350] = {.lex_state = 31}, + [2351] = {.lex_state = 31}, + [2352] = {.lex_state = 31}, + [2353] = {.lex_state = 31}, + [2354] = {.lex_state = 17}, + [2355] = {.lex_state = 17}, + [2356] = {.lex_state = 17}, + [2357] = {.lex_state = 17}, + [2358] = {.lex_state = 17}, + [2359] = {.lex_state = 17}, + [2360] = {.lex_state = 31}, [2361] = {.lex_state = 31}, - [2362] = {.lex_state = 27}, - [2363] = {.lex_state = 27}, - [2364] = {.lex_state = 27}, + [2362] = {.lex_state = 31}, + [2363] = {.lex_state = 17}, + [2364] = {.lex_state = 17}, [2365] = {.lex_state = 17}, - [2366] = {.lex_state = 17}, - [2367] = {.lex_state = 17}, - [2368] = {.lex_state = 72}, - [2369] = {.lex_state = 72}, - [2370] = {.lex_state = 5}, - [2371] = {.lex_state = 72}, - [2372] = {.lex_state = 17}, - [2373] = {.lex_state = 72}, - [2374] = {.lex_state = 72}, - [2375] = {.lex_state = 17}, - [2376] = {.lex_state = 17}, - [2377] = {.lex_state = 17}, - [2378] = {.lex_state = 17}, - [2379] = {.lex_state = 31}, - [2380] = {.lex_state = 31}, - [2381] = {.lex_state = 19}, + [2366] = {.lex_state = 18}, + [2367] = {.lex_state = 18}, + [2368] = {.lex_state = 18}, + [2369] = {.lex_state = 18}, + [2370] = {.lex_state = 18}, + [2371] = {.lex_state = 18}, + [2372] = {.lex_state = 18}, + [2373] = {.lex_state = 18}, + [2374] = {.lex_state = 18}, + [2375] = {.lex_state = 18}, + [2376] = {.lex_state = 18}, + [2377] = {.lex_state = 31}, + [2378] = {.lex_state = 18}, + [2379] = {.lex_state = 18}, + [2380] = {.lex_state = 19}, + [2381] = {.lex_state = 31}, [2382] = {.lex_state = 17}, [2383] = {.lex_state = 17}, - [2384] = {.lex_state = 19}, + [2384] = {.lex_state = 17}, [2385] = {.lex_state = 17}, - [2386] = {.lex_state = 19}, + [2386] = {.lex_state = 17}, [2387] = {.lex_state = 17}, [2388] = {.lex_state = 17}, - [2389] = {.lex_state = 5}, - [2390] = {.lex_state = 31}, + [2389] = {.lex_state = 17}, + [2390] = {.lex_state = 17}, [2391] = {.lex_state = 17}, - [2392] = {.lex_state = 31}, - [2393] = {.lex_state = 31}, - [2394] = {.lex_state = 19}, - [2395] = {.lex_state = 17}, - [2396] = {.lex_state = 17}, - [2397] = {.lex_state = 31}, - [2398] = {.lex_state = 17}, - [2399] = {.lex_state = 17}, - [2400] = {.lex_state = 17}, + [2392] = {.lex_state = 17}, + [2393] = {.lex_state = 24}, + [2394] = {.lex_state = 17}, + [2395] = {.lex_state = 18}, + [2396] = {.lex_state = 18}, + [2397] = {.lex_state = 27}, + [2398] = {.lex_state = 31}, + [2399] = {.lex_state = 18}, + [2400] = {.lex_state = 31}, [2401] = {.lex_state = 17}, - [2402] = {.lex_state = 17}, - [2403] = {.lex_state = 72}, - [2404] = {.lex_state = 5}, - [2405] = {.lex_state = 17}, + [2402] = {.lex_state = 18}, + [2403] = {.lex_state = 17}, + [2404] = {.lex_state = 17}, + [2405] = {.lex_state = 18}, [2406] = {.lex_state = 17}, [2407] = {.lex_state = 17}, - [2408] = {.lex_state = 27}, + [2408] = {.lex_state = 18}, [2409] = {.lex_state = 17}, - [2410] = {.lex_state = 17}, + [2410] = {.lex_state = 27}, [2411] = {.lex_state = 17}, [2412] = {.lex_state = 17}, - [2413] = {.lex_state = 17}, - [2414] = {.lex_state = 17}, - [2415] = {.lex_state = 19}, - [2416] = {.lex_state = 17}, - [2417] = {.lex_state = 17}, - [2418] = {.lex_state = 15}, + [2413] = {.lex_state = 31}, + [2414] = {.lex_state = 24}, + [2415] = {.lex_state = 18}, + [2416] = {.lex_state = 24}, + [2417] = {.lex_state = 31}, + [2418] = {.lex_state = 17}, [2419] = {.lex_state = 17}, - [2420] = {.lex_state = 17}, - [2421] = {.lex_state = 17}, - [2422] = {.lex_state = 17}, - [2423] = {.lex_state = 21}, - [2424] = {.lex_state = 21}, - [2425] = {.lex_state = 17}, - [2426] = {.lex_state = 17}, - [2427] = {.lex_state = 17}, + [2420] = {.lex_state = 18}, + [2421] = {.lex_state = 18}, + [2422] = {.lex_state = 24}, + [2423] = {.lex_state = 17}, + [2424] = {.lex_state = 17}, + [2425] = {.lex_state = 18}, + [2426] = {.lex_state = 18}, + [2427] = {.lex_state = 18}, [2428] = {.lex_state = 17}, - [2429] = {.lex_state = 5}, - [2430] = {.lex_state = 19}, - [2431] = {.lex_state = 17}, - [2432] = {.lex_state = 17}, - [2433] = {.lex_state = 31}, - [2434] = {.lex_state = 17}, - [2435] = {.lex_state = 15}, + [2429] = {.lex_state = 17}, + [2430] = {.lex_state = 18}, + [2431] = {.lex_state = 18}, + [2432] = {.lex_state = 19}, + [2433] = {.lex_state = 17}, + [2434] = {.lex_state = 19}, + [2435] = {.lex_state = 17}, [2436] = {.lex_state = 17}, - [2437] = {.lex_state = 17}, - [2438] = {.lex_state = 21}, - [2439] = {.lex_state = 17}, - [2440] = {.lex_state = 17}, - [2441] = {.lex_state = 31}, - [2442] = {.lex_state = 21}, - [2443] = {.lex_state = 31}, - [2444] = {.lex_state = 17}, - [2445] = {.lex_state = 17}, - [2446] = {.lex_state = 17}, - [2447] = {.lex_state = 17}, - [2448] = {.lex_state = 17}, - [2449] = {.lex_state = 31}, - [2450] = {.lex_state = 17}, + [2437] = {.lex_state = 18}, + [2438] = {.lex_state = 31}, + [2439] = {.lex_state = 19}, + [2440] = {.lex_state = 19}, + [2441] = {.lex_state = 24}, + [2442] = {.lex_state = 17}, + [2443] = {.lex_state = 18}, + [2444] = {.lex_state = 24}, + [2445] = {.lex_state = 18}, + [2446] = {.lex_state = 18}, + [2447] = {.lex_state = 18}, + [2448] = {.lex_state = 19}, + [2449] = {.lex_state = 17}, + [2450] = {.lex_state = 31}, [2451] = {.lex_state = 31}, - [2452] = {.lex_state = 31}, - [2453] = {.lex_state = 17}, + [2452] = {.lex_state = 27}, + [2453] = {.lex_state = 18}, [2454] = {.lex_state = 17}, [2455] = {.lex_state = 17}, [2456] = {.lex_state = 17}, - [2457] = {.lex_state = 17}, + [2457] = {.lex_state = 27}, [2458] = {.lex_state = 31}, - [2459] = {.lex_state = 17}, - [2460] = {.lex_state = 17}, - [2461] = {.lex_state = 17}, - [2462] = {.lex_state = 31}, - [2463] = {.lex_state = 5}, - [2464] = {.lex_state = 17}, - [2465] = {.lex_state = 19}, - [2466] = {.lex_state = 17}, - [2467] = {.lex_state = 21}, + [2459] = {.lex_state = 31}, + [2460] = {.lex_state = 31}, + [2461] = {.lex_state = 31}, + [2462] = {.lex_state = 27}, + [2463] = {.lex_state = 31}, + [2464] = {.lex_state = 31}, + [2465] = {.lex_state = 31}, + [2466] = {.lex_state = 31}, + [2467] = {.lex_state = 31}, [2468] = {.lex_state = 31}, - [2469] = {.lex_state = 72}, + [2469] = {.lex_state = 31}, [2470] = {.lex_state = 31}, - [2471] = {.lex_state = 17}, - [2472] = {.lex_state = 17}, - [2473] = {.lex_state = 17}, + [2471] = {.lex_state = 31}, + [2472] = {.lex_state = 31}, + [2473] = {.lex_state = 31}, [2474] = {.lex_state = 31}, - [2475] = {.lex_state = 21}, - [2476] = {.lex_state = 17}, - [2477] = {.lex_state = 23}, + [2475] = {.lex_state = 31}, + [2476] = {.lex_state = 27}, + [2477] = {.lex_state = 31}, [2478] = {.lex_state = 31}, [2479] = {.lex_state = 31}, - [2480] = {.lex_state = 17}, - [2481] = {.lex_state = 17}, - [2482] = {.lex_state = 17}, + [2480] = {.lex_state = 31}, + [2481] = {.lex_state = 31}, + [2482] = {.lex_state = 31}, [2483] = {.lex_state = 31}, - [2484] = {.lex_state = 17}, - [2485] = {.lex_state = 17}, - [2486] = {.lex_state = 17}, - [2487] = {.lex_state = 23}, + [2484] = {.lex_state = 31}, + [2485] = {.lex_state = 31}, + [2486] = {.lex_state = 31}, + [2487] = {.lex_state = 31}, [2488] = {.lex_state = 31}, - [2489] = {.lex_state = 23}, + [2489] = {.lex_state = 31}, [2490] = {.lex_state = 17}, - [2491] = {.lex_state = 19}, - [2492] = {.lex_state = 19}, - [2493] = {.lex_state = 19}, - [2494] = {.lex_state = 23}, - [2495] = {.lex_state = 19}, - [2496] = {.lex_state = 17}, - [2497] = {.lex_state = 17}, - [2498] = {.lex_state = 17}, - [2499] = {.lex_state = 23}, - [2500] = {.lex_state = 17}, - [2501] = {.lex_state = 17}, - [2502] = {.lex_state = 17}, - [2503] = {.lex_state = 23}, + [2491] = {.lex_state = 31}, + [2492] = {.lex_state = 31}, + [2493] = {.lex_state = 18}, + [2494] = {.lex_state = 12}, + [2495] = {.lex_state = 31}, + [2496] = {.lex_state = 31}, + [2497] = {.lex_state = 31}, + [2498] = {.lex_state = 18}, + [2499] = {.lex_state = 18}, + [2500] = {.lex_state = 18}, + [2501] = {.lex_state = 31}, + [2502] = {.lex_state = 31}, + [2503] = {.lex_state = 31}, [2504] = {.lex_state = 31}, - [2505] = {.lex_state = 31}, - [2506] = {.lex_state = 17}, + [2505] = {.lex_state = 17}, + [2506] = {.lex_state = 31}, [2507] = {.lex_state = 17}, - [2508] = {.lex_state = 31}, - [2509] = {.lex_state = 31}, - [2510] = {.lex_state = 31}, - [2511] = {.lex_state = 5}, - [2512] = {.lex_state = 31}, + [2508] = {.lex_state = 8}, + [2509] = {.lex_state = 17}, + [2510] = {.lex_state = 12}, + [2511] = {.lex_state = 19}, + [2512] = {.lex_state = 8}, [2513] = {.lex_state = 17}, - [2514] = {.lex_state = 23}, - [2515] = {.lex_state = 8}, - [2516] = {.lex_state = 31}, - [2517] = {.lex_state = 31}, - [2518] = {.lex_state = 23}, - [2519] = {.lex_state = 23}, - [2520] = {.lex_state = 31}, - [2521] = {.lex_state = 31}, - [2522] = {.lex_state = 23}, - [2523] = {.lex_state = 23}, - [2524] = {.lex_state = 31}, + [2514] = {.lex_state = 17}, + [2515] = {.lex_state = 17}, + [2516] = {.lex_state = 8}, + [2517] = {.lex_state = 72}, + [2518] = {.lex_state = 17}, + [2519] = {.lex_state = 19}, + [2520] = {.lex_state = 17}, + [2521] = {.lex_state = 17}, + [2522] = {.lex_state = 17}, + [2523] = {.lex_state = 17}, + [2524] = {.lex_state = 17}, [2525] = {.lex_state = 31}, - [2526] = {.lex_state = 31}, - [2527] = {.lex_state = 23}, - [2528] = {.lex_state = 23}, - [2529] = {.lex_state = 23}, - [2530] = {.lex_state = 8}, - [2531] = {.lex_state = 23}, - [2532] = {.lex_state = 23}, - [2533] = {.lex_state = 23}, - [2534] = {.lex_state = 23}, - [2535] = {.lex_state = 23}, - [2536] = {.lex_state = 23}, - [2537] = {.lex_state = 23}, - [2538] = {.lex_state = 23}, - [2539] = {.lex_state = 23}, - [2540] = {.lex_state = 23}, - [2541] = {.lex_state = 17}, + [2526] = {.lex_state = 17}, + [2527] = {.lex_state = 18}, + [2528] = {.lex_state = 31}, + [2529] = {.lex_state = 31}, + [2530] = {.lex_state = 17}, + [2531] = {.lex_state = 27}, + [2532] = {.lex_state = 19}, + [2533] = {.lex_state = 19}, + [2534] = {.lex_state = 19}, + [2535] = {.lex_state = 17}, + [2536] = {.lex_state = 12}, + [2537] = {.lex_state = 17}, + [2538] = {.lex_state = 17}, + [2539] = {.lex_state = 17}, + [2540] = {.lex_state = 17}, + [2541] = {.lex_state = 31}, [2542] = {.lex_state = 17}, - [2543] = {.lex_state = 8}, - [2544] = {.lex_state = 31}, - [2545] = {.lex_state = 31}, - [2546] = {.lex_state = 23, .external_lex_state = 3}, - [2547] = {.lex_state = 31}, - [2548] = {.lex_state = 31}, + [2543] = {.lex_state = 17}, + [2544] = {.lex_state = 17}, + [2545] = {.lex_state = 17}, + [2546] = {.lex_state = 17}, + [2547] = {.lex_state = 17}, + [2548] = {.lex_state = 12}, [2549] = {.lex_state = 31}, - [2550] = {.lex_state = 23}, + [2550] = {.lex_state = 31}, [2551] = {.lex_state = 17}, - [2552] = {.lex_state = 17}, - [2553] = {.lex_state = 17}, - [2554] = {.lex_state = 17}, + [2552] = {.lex_state = 31}, + [2553] = {.lex_state = 12}, + [2554] = {.lex_state = 31}, [2555] = {.lex_state = 31}, - [2556] = {.lex_state = 17}, - [2557] = {.lex_state = 17}, - [2558] = {.lex_state = 31}, - [2559] = {.lex_state = 31}, - [2560] = {.lex_state = 31}, - [2561] = {.lex_state = 19}, + [2556] = {.lex_state = 31}, + [2557] = {.lex_state = 31}, + [2558] = {.lex_state = 17}, + [2559] = {.lex_state = 17}, + [2560] = {.lex_state = 17}, + [2561] = {.lex_state = 17}, [2562] = {.lex_state = 17}, - [2563] = {.lex_state = 19}, - [2564] = {.lex_state = 31}, + [2563] = {.lex_state = 27}, + [2564] = {.lex_state = 17}, [2565] = {.lex_state = 17}, [2566] = {.lex_state = 17}, [2567] = {.lex_state = 17}, - [2568] = {.lex_state = 23}, - [2569] = {.lex_state = 23}, - [2570] = {.lex_state = 31}, - [2571] = {.lex_state = 31}, - [2572] = {.lex_state = 5}, - [2573] = {.lex_state = 8}, - [2574] = {.lex_state = 17}, - [2575] = {.lex_state = 72}, - [2576] = {.lex_state = 31}, + [2568] = {.lex_state = 27}, + [2569] = {.lex_state = 27}, + [2570] = {.lex_state = 27}, + [2571] = {.lex_state = 27}, + [2572] = {.lex_state = 17}, + [2573] = {.lex_state = 27}, + [2574] = {.lex_state = 27}, + [2575] = {.lex_state = 17}, + [2576] = {.lex_state = 17}, [2577] = {.lex_state = 17}, - [2578] = {.lex_state = 23}, - [2579] = {.lex_state = 17}, + [2578] = {.lex_state = 27}, + [2579] = {.lex_state = 27}, [2580] = {.lex_state = 17}, - [2581] = {.lex_state = 72}, - [2582] = {.lex_state = 23}, - [2583] = {.lex_state = 8}, - [2584] = {.lex_state = 23}, - [2585] = {.lex_state = 23}, - [2586] = {.lex_state = 8}, - [2587] = {.lex_state = 23}, - [2588] = {.lex_state = 33}, - [2589] = {.lex_state = 8}, - [2590] = {.lex_state = 72}, - [2591] = {.lex_state = 72}, - [2592] = {.lex_state = 23}, - [2593] = {.lex_state = 23}, - [2594] = {.lex_state = 33}, - [2595] = {.lex_state = 72}, - [2596] = {.lex_state = 72}, - [2597] = {.lex_state = 23, .external_lex_state = 4}, - [2598] = {.lex_state = 23}, - [2599] = {.lex_state = 23}, - [2600] = {.lex_state = 23, .external_lex_state = 4}, - [2601] = {.lex_state = 23}, - [2602] = {.lex_state = 23}, - [2603] = {.lex_state = 23}, + [2581] = {.lex_state = 17}, + [2582] = {.lex_state = 17}, + [2583] = {.lex_state = 17}, + [2584] = {.lex_state = 27}, + [2585] = {.lex_state = 17}, + [2586] = {.lex_state = 27}, + [2587] = {.lex_state = 17}, + [2588] = {.lex_state = 27}, + [2589] = {.lex_state = 27}, + [2590] = {.lex_state = 17}, + [2591] = {.lex_state = 17}, + [2592] = {.lex_state = 17}, + [2593] = {.lex_state = 17}, + [2594] = {.lex_state = 17}, + [2595] = {.lex_state = 17}, + [2596] = {.lex_state = 17}, + [2597] = {.lex_state = 17}, + [2598] = {.lex_state = 17}, + [2599] = {.lex_state = 17}, + [2600] = {.lex_state = 17}, + [2601] = {.lex_state = 17}, + [2602] = {.lex_state = 27}, + [2603] = {.lex_state = 17}, [2604] = {.lex_state = 17}, - [2605] = {.lex_state = 5}, + [2605] = {.lex_state = 17}, [2606] = {.lex_state = 17}, - [2607] = {.lex_state = 72}, - [2608] = {.lex_state = 8}, - [2609] = {.lex_state = 18}, - [2610] = {.lex_state = 8}, - [2611] = {.lex_state = 23}, - [2612] = {.lex_state = 72}, - [2613] = {.lex_state = 23}, - [2614] = {.lex_state = 23}, - [2615] = {.lex_state = 8}, - [2616] = {.lex_state = 8}, - [2617] = {.lex_state = 72}, - [2618] = {.lex_state = 23}, - [2619] = {.lex_state = 23, .external_lex_state = 4}, - [2620] = {.lex_state = 72}, - [2621] = {.lex_state = 8}, + [2607] = {.lex_state = 17}, + [2608] = {.lex_state = 17}, + [2609] = {.lex_state = 24}, + [2610] = {.lex_state = 17}, + [2611] = {.lex_state = 17}, + [2612] = {.lex_state = 12}, + [2613] = {.lex_state = 17}, + [2614] = {.lex_state = 27}, + [2615] = {.lex_state = 17}, + [2616] = {.lex_state = 17}, + [2617] = {.lex_state = 17}, + [2618] = {.lex_state = 17}, + [2619] = {.lex_state = 17}, + [2620] = {.lex_state = 17}, + [2621] = {.lex_state = 17}, [2622] = {.lex_state = 17}, - [2623] = {.lex_state = 8}, - [2624] = {.lex_state = 72}, - [2625] = {.lex_state = 72}, - [2626] = {.lex_state = 8}, - [2627] = {.lex_state = 8}, + [2623] = {.lex_state = 17}, + [2624] = {.lex_state = 27}, + [2625] = {.lex_state = 17}, + [2626] = {.lex_state = 17}, + [2627] = {.lex_state = 17}, [2628] = {.lex_state = 72}, - [2629] = {.lex_state = 8}, - [2630] = {.lex_state = 5}, - [2631] = {.lex_state = 8}, - [2632] = {.lex_state = 8}, - [2633] = {.lex_state = 8}, - [2634] = {.lex_state = 23}, + [2629] = {.lex_state = 72}, + [2630] = {.lex_state = 169}, + [2631] = {.lex_state = 17}, + [2632] = {.lex_state = 17}, + [2633] = {.lex_state = 72}, + [2634] = {.lex_state = 72}, [2635] = {.lex_state = 17}, - [2636] = {.lex_state = 8}, - [2637] = {.lex_state = 17}, - [2638] = {.lex_state = 23}, + [2636] = {.lex_state = 27}, + [2637] = {.lex_state = 27}, + [2638] = {.lex_state = 72}, [2639] = {.lex_state = 17}, - [2640] = {.lex_state = 8}, - [2641] = {.lex_state = 23}, + [2640] = {.lex_state = 27}, + [2641] = {.lex_state = 27}, [2642] = {.lex_state = 72}, - [2643] = {.lex_state = 17}, - [2644] = {.lex_state = 8}, - [2645] = {.lex_state = 8}, - [2646] = {.lex_state = 8}, - [2647] = {.lex_state = 31}, + [2643] = {.lex_state = 31}, + [2644] = {.lex_state = 27}, + [2645] = {.lex_state = 17}, + [2646] = {.lex_state = 17}, + [2647] = {.lex_state = 27}, [2648] = {.lex_state = 72}, [2649] = {.lex_state = 72}, - [2650] = {.lex_state = 17}, + [2650] = {.lex_state = 72}, [2651] = {.lex_state = 72}, - [2652] = {.lex_state = 31}, - [2653] = {.lex_state = 17}, - [2654] = {.lex_state = 23}, - [2655] = {.lex_state = 17}, - [2656] = {.lex_state = 17}, - [2657] = {.lex_state = 17}, - [2658] = {.lex_state = 31}, - [2659] = {.lex_state = 17}, - [2660] = {.lex_state = 17}, - [2661] = {.lex_state = 17}, + [2652] = {.lex_state = 72}, + [2653] = {.lex_state = 72}, + [2654] = {.lex_state = 31}, + [2655] = {.lex_state = 72}, + [2656] = {.lex_state = 72}, + [2657] = {.lex_state = 19}, + [2658] = {.lex_state = 17}, + [2659] = {.lex_state = 72}, + [2660] = {.lex_state = 72}, + [2661] = {.lex_state = 72}, [2662] = {.lex_state = 17}, - [2663] = {.lex_state = 23}, - [2664] = {.lex_state = 17}, - [2665] = {.lex_state = 17}, + [2663] = {.lex_state = 17}, + [2664] = {.lex_state = 72}, + [2665] = {.lex_state = 72}, [2666] = {.lex_state = 72}, - [2667] = {.lex_state = 17}, - [2668] = {.lex_state = 17}, + [2667] = {.lex_state = 72}, + [2668] = {.lex_state = 72}, [2669] = {.lex_state = 72}, - [2670] = {.lex_state = 17}, - [2671] = {.lex_state = 17}, - [2672] = {.lex_state = 17}, - [2673] = {.lex_state = 17}, + [2670] = {.lex_state = 72}, + [2671] = {.lex_state = 72}, + [2672] = {.lex_state = 5}, + [2673] = {.lex_state = 12}, [2674] = {.lex_state = 17}, - [2675] = {.lex_state = 17}, - [2676] = {.lex_state = 17}, - [2677] = {.lex_state = 33}, - [2678] = {.lex_state = 17}, - [2679] = {.lex_state = 72}, + [2675] = {.lex_state = 5}, + [2676] = {.lex_state = 12}, + [2677] = {.lex_state = 27}, + [2678] = {.lex_state = 72}, + [2679] = {.lex_state = 27}, [2680] = {.lex_state = 17}, - [2681] = {.lex_state = 17}, - [2682] = {.lex_state = 19}, - [2683] = {.lex_state = 17}, - [2684] = {.lex_state = 19}, - [2685] = {.lex_state = 19}, - [2686] = {.lex_state = 19}, + [2681] = {.lex_state = 12}, + [2682] = {.lex_state = 72}, + [2683] = {.lex_state = 72}, + [2684] = {.lex_state = 17}, + [2685] = {.lex_state = 5}, + [2686] = {.lex_state = 17}, [2687] = {.lex_state = 17}, - [2688] = {.lex_state = 17}, + [2688] = {.lex_state = 72}, [2689] = {.lex_state = 17}, - [2690] = {.lex_state = 23}, - [2691] = {.lex_state = 17}, - [2692] = {.lex_state = 17}, - [2693] = {.lex_state = 17}, - [2694] = {.lex_state = 17}, - [2695] = {.lex_state = 31}, + [2690] = {.lex_state = 17}, + [2691] = {.lex_state = 72}, + [2692] = {.lex_state = 19}, + [2693] = {.lex_state = 20}, + [2694] = {.lex_state = 31}, + [2695] = {.lex_state = 17}, [2696] = {.lex_state = 17}, - [2697] = {.lex_state = 72}, - [2698] = {.lex_state = 8}, - [2699] = {.lex_state = 72}, - [2700] = {.lex_state = 8}, - [2701] = {.lex_state = 23}, - [2702] = {.lex_state = 23}, - [2703] = {.lex_state = 23, .external_lex_state = 4}, - [2704] = {.lex_state = 72}, - [2705] = {.lex_state = 23}, - [2706] = {.lex_state = 23}, - [2707] = {.lex_state = 18}, - [2708] = {.lex_state = 72}, - [2709] = {.lex_state = 23}, - [2710] = {.lex_state = 31}, - [2711] = {.lex_state = 72}, - [2712] = {.lex_state = 23}, - [2713] = {.lex_state = 23}, - [2714] = {.lex_state = 23}, - [2715] = {.lex_state = 23, .external_lex_state = 4}, - [2716] = {.lex_state = 72}, - [2717] = {.lex_state = 8}, - [2718] = {.lex_state = 8}, - [2719] = {.lex_state = 31}, - [2720] = {.lex_state = 8}, - [2721] = {.lex_state = 8}, - [2722] = {.lex_state = 72}, + [2697] = {.lex_state = 17}, + [2698] = {.lex_state = 17}, + [2699] = {.lex_state = 17}, + [2700] = {.lex_state = 17}, + [2701] = {.lex_state = 31}, + [2702] = {.lex_state = 17}, + [2703] = {.lex_state = 17}, + [2704] = {.lex_state = 17}, + [2705] = {.lex_state = 17}, + [2706] = {.lex_state = 17}, + [2707] = {.lex_state = 17}, + [2708] = {.lex_state = 17}, + [2709] = {.lex_state = 27}, + [2710] = {.lex_state = 5}, + [2711] = {.lex_state = 31}, + [2712] = {.lex_state = 17}, + [2713] = {.lex_state = 31}, + [2714] = {.lex_state = 17}, + [2715] = {.lex_state = 31}, + [2716] = {.lex_state = 17}, + [2717] = {.lex_state = 31}, + [2718] = {.lex_state = 17}, + [2719] = {.lex_state = 19}, + [2720] = {.lex_state = 17}, + [2721] = {.lex_state = 19}, + [2722] = {.lex_state = 17}, [2723] = {.lex_state = 17}, - [2724] = {.lex_state = 8}, - [2725] = {.lex_state = 8}, - [2726] = {.lex_state = 8}, - [2727] = {.lex_state = 23}, - [2728] = {.lex_state = 23}, - [2729] = {.lex_state = 23}, - [2730] = {.lex_state = 72}, - [2731] = {.lex_state = 23, .external_lex_state = 4}, + [2724] = {.lex_state = 17}, + [2725] = {.lex_state = 31}, + [2726] = {.lex_state = 17}, + [2727] = {.lex_state = 31}, + [2728] = {.lex_state = 31}, + [2729] = {.lex_state = 17}, + [2730] = {.lex_state = 17}, + [2731] = {.lex_state = 17}, [2732] = {.lex_state = 17}, - [2733] = {.lex_state = 23}, - [2734] = {.lex_state = 33}, + [2733] = {.lex_state = 17}, + [2734] = {.lex_state = 17}, [2735] = {.lex_state = 72}, [2736] = {.lex_state = 17}, [2737] = {.lex_state = 17}, - [2738] = {.lex_state = 72}, + [2738] = {.lex_state = 20}, [2739] = {.lex_state = 17}, [2740] = {.lex_state = 17}, - [2741] = {.lex_state = 23}, - [2742] = {.lex_state = 23}, - [2743] = {.lex_state = 23, .external_lex_state = 4}, - [2744] = {.lex_state = 23}, - [2745] = {.lex_state = 23}, - [2746] = {.lex_state = 72}, - [2747] = {.lex_state = 23}, - [2748] = {.lex_state = 23}, - [2749] = {.lex_state = 23}, - [2750] = {.lex_state = 23, .external_lex_state = 4}, - [2751] = {.lex_state = 72}, - [2752] = {.lex_state = 8}, - [2753] = {.lex_state = 8}, - [2754] = {.lex_state = 8}, - [2755] = {.lex_state = 8}, - [2756] = {.lex_state = 23}, - [2757] = {.lex_state = 72}, - [2758] = {.lex_state = 23}, - [2759] = {.lex_state = 23, .external_lex_state = 4}, - [2760] = {.lex_state = 23}, - [2761] = {.lex_state = 23}, - [2762] = {.lex_state = 72}, - [2763] = {.lex_state = 23, .external_lex_state = 4}, - [2764] = {.lex_state = 72}, - [2765] = {.lex_state = 8}, - [2766] = {.lex_state = 8}, - [2767] = {.lex_state = 8}, - [2768] = {.lex_state = 8}, - [2769] = {.lex_state = 72}, - [2770] = {.lex_state = 23, .external_lex_state = 4}, - [2771] = {.lex_state = 23, .external_lex_state = 4}, - [2772] = {.lex_state = 8}, - [2773] = {.lex_state = 8}, - [2774] = {.lex_state = 72}, - [2775] = {.lex_state = 31}, - [2776] = {.lex_state = 8}, - [2777] = {.lex_state = 72}, - [2778] = {.lex_state = 23}, - [2779] = {.lex_state = 23, .external_lex_state = 4}, - [2780] = {.lex_state = 8}, - [2781] = {.lex_state = 8}, + [2741] = {.lex_state = 17}, + [2742] = {.lex_state = 17}, + [2743] = {.lex_state = 17}, + [2744] = {.lex_state = 17}, + [2745] = {.lex_state = 20}, + [2746] = {.lex_state = 17}, + [2747] = {.lex_state = 20}, + [2748] = {.lex_state = 19}, + [2749] = {.lex_state = 31}, + [2750] = {.lex_state = 17}, + [2751] = {.lex_state = 31}, + [2752] = {.lex_state = 17}, + [2753] = {.lex_state = 17}, + [2754] = {.lex_state = 20}, + [2755] = {.lex_state = 19}, + [2756] = {.lex_state = 17}, + [2757] = {.lex_state = 17}, + [2758] = {.lex_state = 20}, + [2759] = {.lex_state = 72}, + [2760] = {.lex_state = 17}, + [2761] = {.lex_state = 17}, + [2762] = {.lex_state = 17}, + [2763] = {.lex_state = 19}, + [2764] = {.lex_state = 17}, + [2765] = {.lex_state = 31}, + [2766] = {.lex_state = 17}, + [2767] = {.lex_state = 17}, + [2768] = {.lex_state = 17}, + [2769] = {.lex_state = 17}, + [2770] = {.lex_state = 31}, + [2771] = {.lex_state = 17}, + [2772] = {.lex_state = 17}, + [2773] = {.lex_state = 17}, + [2774] = {.lex_state = 17}, + [2775] = {.lex_state = 17}, + [2776] = {.lex_state = 17}, + [2777] = {.lex_state = 17}, + [2778] = {.lex_state = 17}, + [2779] = {.lex_state = 17}, + [2780] = {.lex_state = 17}, + [2781] = {.lex_state = 5}, [2782] = {.lex_state = 17}, - [2783] = {.lex_state = 18}, - [2784] = {.lex_state = 23}, - [2785] = {.lex_state = 5}, - [2786] = {.lex_state = 72}, - [2787] = {.lex_state = 72}, + [2783] = {.lex_state = 19}, + [2784] = {.lex_state = 17}, + [2785] = {.lex_state = 15}, + [2786] = {.lex_state = 5}, + [2787] = {.lex_state = 31}, [2788] = {.lex_state = 17}, - [2789] = {.lex_state = 17}, - [2790] = {.lex_state = 72}, + [2789] = {.lex_state = 31}, + [2790] = {.lex_state = 31}, [2791] = {.lex_state = 17}, - [2792] = {.lex_state = 23}, + [2792] = {.lex_state = 20}, [2793] = {.lex_state = 17}, - [2794] = {.lex_state = 19}, - [2795] = {.lex_state = 23}, - [2796] = {.lex_state = 19}, - [2797] = {.lex_state = 19}, - [2798] = {.lex_state = 31}, - [2799] = {.lex_state = 72}, - [2800] = {.lex_state = 23}, - [2801] = {.lex_state = 19}, - [2802] = {.lex_state = 72}, - [2803] = {.lex_state = 8}, - [2804] = {.lex_state = 8}, - [2805] = {.lex_state = 19}, + [2794] = {.lex_state = 17}, + [2795] = {.lex_state = 17}, + [2796] = {.lex_state = 17}, + [2797] = {.lex_state = 17}, + [2798] = {.lex_state = 17}, + [2799] = {.lex_state = 5}, + [2800] = {.lex_state = 17}, + [2801] = {.lex_state = 17}, + [2802] = {.lex_state = 17}, + [2803] = {.lex_state = 20}, + [2804] = {.lex_state = 17}, + [2805] = {.lex_state = 17}, [2806] = {.lex_state = 17}, - [2807] = {.lex_state = 23}, - [2808] = {.lex_state = 17}, - [2809] = {.lex_state = 19}, - [2810] = {.lex_state = 19}, - [2811] = {.lex_state = 19}, - [2812] = {.lex_state = 72}, - [2813] = {.lex_state = 72}, - [2814] = {.lex_state = 23}, - [2815] = {.lex_state = 23}, - [2816] = {.lex_state = 31}, - [2817] = {.lex_state = 23}, - [2818] = {.lex_state = 23}, - [2819] = {.lex_state = 23}, - [2820] = {.lex_state = 23}, - [2821] = {.lex_state = 23}, - [2822] = {.lex_state = 18}, - [2823] = {.lex_state = 18}, - [2824] = {.lex_state = 72}, - [2825] = {.lex_state = 5}, + [2807] = {.lex_state = 17}, + [2808] = {.lex_state = 31}, + [2809] = {.lex_state = 31}, + [2810] = {.lex_state = 17}, + [2811] = {.lex_state = 17}, + [2812] = {.lex_state = 17}, + [2813] = {.lex_state = 17}, + [2814] = {.lex_state = 17}, + [2815] = {.lex_state = 17}, + [2816] = {.lex_state = 17}, + [2817] = {.lex_state = 17}, + [2818] = {.lex_state = 17}, + [2819] = {.lex_state = 31}, + [2820] = {.lex_state = 15}, + [2821] = {.lex_state = 31}, + [2822] = {.lex_state = 17}, + [2823] = {.lex_state = 23}, + [2824] = {.lex_state = 23}, + [2825] = {.lex_state = 31}, [2826] = {.lex_state = 17}, [2827] = {.lex_state = 23}, - [2828] = {.lex_state = 72}, - [2829] = {.lex_state = 5}, - [2830] = {.lex_state = 17}, - [2831] = {.lex_state = 17}, - [2832] = {.lex_state = 17}, - [2833] = {.lex_state = 31}, - [2834] = {.lex_state = 8}, - [2835] = {.lex_state = 17}, - [2836] = {.lex_state = 8}, - [2837] = {.lex_state = 8}, - [2838] = {.lex_state = 31}, - [2839] = {.lex_state = 8}, - [2840] = {.lex_state = 17}, - [2841] = {.lex_state = 17}, + [2828] = {.lex_state = 23}, + [2829] = {.lex_state = 23}, + [2830] = {.lex_state = 31}, + [2831] = {.lex_state = 23}, + [2832] = {.lex_state = 23}, + [2833] = {.lex_state = 17}, + [2834] = {.lex_state = 5}, + [2835] = {.lex_state = 23}, + [2836] = {.lex_state = 23}, + [2837] = {.lex_state = 23}, + [2838] = {.lex_state = 23}, + [2839] = {.lex_state = 23}, + [2840] = {.lex_state = 19}, + [2841] = {.lex_state = 23}, [2842] = {.lex_state = 23}, - [2843] = {.lex_state = 8}, - [2844] = {.lex_state = 72}, - [2845] = {.lex_state = 17}, - [2846] = {.lex_state = 72}, - [2847] = {.lex_state = 72}, - [2848] = {.lex_state = 72}, - [2849] = {.lex_state = 72}, - [2850] = {.lex_state = 72}, - [2851] = {.lex_state = 72}, - [2852] = {.lex_state = 19}, - [2853] = {.lex_state = 72}, - [2854] = {.lex_state = 72}, - [2855] = {.lex_state = 72}, - [2856] = {.lex_state = 72}, - [2857] = {.lex_state = 72}, - [2858] = {.lex_state = 19}, - [2859] = {.lex_state = 72}, - [2860] = {.lex_state = 19}, - [2861] = {.lex_state = 72}, - [2862] = {.lex_state = 72}, - [2863] = {.lex_state = 72}, - [2864] = {.lex_state = 72}, - [2865] = {.lex_state = 72}, - [2866] = {.lex_state = 72}, - [2867] = {.lex_state = 8}, - [2868] = {.lex_state = 72}, - [2869] = {.lex_state = 19}, - [2870] = {.lex_state = 19}, - [2871] = {.lex_state = 72}, - [2872] = {.lex_state = 72}, - [2873] = {.lex_state = 19}, - [2874] = {.lex_state = 72}, - [2875] = {.lex_state = 19}, - [2876] = {.lex_state = 72}, - [2877] = {.lex_state = 72}, - [2878] = {.lex_state = 72}, + [2843] = {.lex_state = 23}, + [2844] = {.lex_state = 17}, + [2845] = {.lex_state = 23}, + [2846] = {.lex_state = 31}, + [2847] = {.lex_state = 17}, + [2848] = {.lex_state = 5}, + [2849] = {.lex_state = 31}, + [2850] = {.lex_state = 31}, + [2851] = {.lex_state = 23}, + [2852] = {.lex_state = 31}, + [2853] = {.lex_state = 17}, + [2854] = {.lex_state = 31}, + [2855] = {.lex_state = 8}, + [2856] = {.lex_state = 31}, + [2857] = {.lex_state = 31}, + [2858] = {.lex_state = 23}, + [2859] = {.lex_state = 31}, + [2860] = {.lex_state = 17}, + [2861] = {.lex_state = 31}, + [2862] = {.lex_state = 31}, + [2863] = {.lex_state = 31}, + [2864] = {.lex_state = 17}, + [2865] = {.lex_state = 17}, + [2866] = {.lex_state = 31}, + [2867] = {.lex_state = 31}, + [2868] = {.lex_state = 31}, + [2869] = {.lex_state = 23}, + [2870] = {.lex_state = 23}, + [2871] = {.lex_state = 23}, + [2872] = {.lex_state = 17}, + [2873] = {.lex_state = 17}, + [2874] = {.lex_state = 23}, + [2875] = {.lex_state = 17}, + [2876] = {.lex_state = 17}, + [2877] = {.lex_state = 17}, + [2878] = {.lex_state = 17}, [2879] = {.lex_state = 17}, - [2880] = {.lex_state = 72}, - [2881] = {.lex_state = 17}, - [2882] = {.lex_state = 72}, - [2883] = {.lex_state = 23, .external_lex_state = 4}, - [2884] = {.lex_state = 72}, - [2885] = {.lex_state = 17}, - [2886] = {.lex_state = 31}, - [2887] = {.lex_state = 72}, - [2888] = {.lex_state = 72}, - [2889] = {.lex_state = 72}, - [2890] = {.lex_state = 17}, - [2891] = {.lex_state = 17}, - [2892] = {.lex_state = 72}, - [2893] = {.lex_state = 21}, - [2894] = {.lex_state = 72}, - [2895] = {.lex_state = 21}, - [2896] = {.lex_state = 72}, - [2897] = {.lex_state = 72}, - [2898] = {.lex_state = 72}, - [2899] = {.lex_state = 72}, - [2900] = {.lex_state = 72}, - [2901] = {.lex_state = 72}, - [2902] = {.lex_state = 72}, - [2903] = {.lex_state = 72}, - [2904] = {.lex_state = 72}, + [2880] = {.lex_state = 17}, + [2881] = {.lex_state = 31}, + [2882] = {.lex_state = 23}, + [2883] = {.lex_state = 31}, + [2884] = {.lex_state = 31}, + [2885] = {.lex_state = 23}, + [2886] = {.lex_state = 8}, + [2887] = {.lex_state = 31}, + [2888] = {.lex_state = 23}, + [2889] = {.lex_state = 23}, + [2890] = {.lex_state = 23}, + [2891] = {.lex_state = 31}, + [2892] = {.lex_state = 23}, + [2893] = {.lex_state = 17}, + [2894] = {.lex_state = 31}, + [2895] = {.lex_state = 23}, + [2896] = {.lex_state = 17}, + [2897] = {.lex_state = 31}, + [2898] = {.lex_state = 23}, + [2899] = {.lex_state = 23}, + [2900] = {.lex_state = 17}, + [2901] = {.lex_state = 17}, + [2902] = {.lex_state = 17}, + [2903] = {.lex_state = 17}, + [2904] = {.lex_state = 17}, [2905] = {.lex_state = 17}, - [2906] = {.lex_state = 72}, - [2907] = {.lex_state = 72}, - [2908] = {.lex_state = 72}, - [2909] = {.lex_state = 17}, - [2910] = {.lex_state = 72}, - [2911] = {.lex_state = 72}, - [2912] = {.lex_state = 72}, - [2913] = {.lex_state = 72}, - [2914] = {.lex_state = 72}, - [2915] = {.lex_state = 72}, - [2916] = {.lex_state = 72}, - [2917] = {.lex_state = 21}, - [2918] = {.lex_state = 72}, - [2919] = {.lex_state = 72}, - [2920] = {.lex_state = 72}, - [2921] = {.lex_state = 72}, - [2922] = {.lex_state = 72}, - [2923] = {.lex_state = 72}, - [2924] = {.lex_state = 72}, - [2925] = {.lex_state = 72}, - [2926] = {.lex_state = 17}, - [2927] = {.lex_state = 72}, - [2928] = {.lex_state = 31}, - [2929] = {.lex_state = 72}, - [2930] = {.lex_state = 17}, - [2931] = {.lex_state = 72}, - [2932] = {.lex_state = 19}, - [2933] = {.lex_state = 19}, - [2934] = {.lex_state = 17}, - [2935] = {.lex_state = 72}, - [2936] = {.lex_state = 17}, - [2937] = {.lex_state = 19}, - [2938] = {.lex_state = 72}, - [2939] = {.lex_state = 72}, - [2940] = {.lex_state = 72}, + [2906] = {.lex_state = 17}, + [2907] = {.lex_state = 8}, + [2908] = {.lex_state = 17}, + [2909] = {.lex_state = 19}, + [2910] = {.lex_state = 31}, + [2911] = {.lex_state = 23, .external_lex_state = 3}, + [2912] = {.lex_state = 8}, + [2913] = {.lex_state = 17}, + [2914] = {.lex_state = 17}, + [2915] = {.lex_state = 23}, + [2916] = {.lex_state = 31}, + [2917] = {.lex_state = 23}, + [2918] = {.lex_state = 31}, + [2919] = {.lex_state = 19}, + [2920] = {.lex_state = 23}, + [2921] = {.lex_state = 19}, + [2922] = {.lex_state = 31}, + [2923] = {.lex_state = 17}, + [2924] = {.lex_state = 17}, + [2925] = {.lex_state = 31}, + [2926] = {.lex_state = 23}, + [2927] = {.lex_state = 17}, + [2928] = {.lex_state = 17}, + [2929] = {.lex_state = 19}, + [2930] = {.lex_state = 31}, + [2931] = {.lex_state = 19}, + [2932] = {.lex_state = 17}, + [2933] = {.lex_state = 72}, + [2934] = {.lex_state = 31}, + [2935] = {.lex_state = 31}, + [2936] = {.lex_state = 31}, + [2937] = {.lex_state = 23}, + [2938] = {.lex_state = 23}, + [2939] = {.lex_state = 17}, + [2940] = {.lex_state = 8}, [2941] = {.lex_state = 72}, - [2942] = {.lex_state = 72}, - [2943] = {.lex_state = 72}, - [2944] = {.lex_state = 19}, - [2945] = {.lex_state = 72}, - [2946] = {.lex_state = 19}, + [2942] = {.lex_state = 31}, + [2943] = {.lex_state = 23}, + [2944] = {.lex_state = 72}, + [2945] = {.lex_state = 17}, + [2946] = {.lex_state = 17}, [2947] = {.lex_state = 8}, - [2948] = {.lex_state = 72}, - [2949] = {.lex_state = 72}, - [2950] = {.lex_state = 19}, - [2951] = {.lex_state = 72}, - [2952] = {.lex_state = 72}, - [2953] = {.lex_state = 17}, - [2954] = {.lex_state = 72}, - [2955] = {.lex_state = 19}, - [2956] = {.lex_state = 72}, - [2957] = {.lex_state = 72}, - [2958] = {.lex_state = 72}, - [2959] = {.lex_state = 72}, - [2960] = {.lex_state = 72}, + [2948] = {.lex_state = 23}, + [2949] = {.lex_state = 23}, + [2950] = {.lex_state = 23, .external_lex_state = 4}, + [2951] = {.lex_state = 23}, + [2952] = {.lex_state = 17}, + [2953] = {.lex_state = 23}, + [2954] = {.lex_state = 23}, + [2955] = {.lex_state = 72}, + [2956] = {.lex_state = 23}, + [2957] = {.lex_state = 23}, + [2958] = {.lex_state = 23}, + [2959] = {.lex_state = 23}, + [2960] = {.lex_state = 23, .external_lex_state = 4}, [2961] = {.lex_state = 72}, [2962] = {.lex_state = 72}, - [2963] = {.lex_state = 72}, - [2964] = {.lex_state = 72}, - [2965] = {.lex_state = 72}, - [2966] = {.lex_state = 72}, + [2963] = {.lex_state = 8}, + [2964] = {.lex_state = 8}, + [2965] = {.lex_state = 8}, + [2966] = {.lex_state = 8}, [2967] = {.lex_state = 72}, - [2968] = {.lex_state = 72}, - [2969] = {.lex_state = 72}, - [2970] = {.lex_state = 72}, - [2971] = {.lex_state = 72}, - [2972] = {.lex_state = 72}, - [2973] = {.lex_state = 72}, + [2968] = {.lex_state = 17}, + [2969] = {.lex_state = 8}, + [2970] = {.lex_state = 17}, + [2971] = {.lex_state = 23}, + [2972] = {.lex_state = 17}, + [2973] = {.lex_state = 17}, [2974] = {.lex_state = 17}, - [2975] = {.lex_state = 72}, - [2976] = {.lex_state = 72}, - [2977] = {.lex_state = 72}, - [2978] = {.lex_state = 8}, + [2975] = {.lex_state = 8}, + [2976] = {.lex_state = 8}, + [2977] = {.lex_state = 17}, + [2978] = {.lex_state = 19}, [2979] = {.lex_state = 72}, - [2980] = {.lex_state = 72}, - [2981] = {.lex_state = 19}, - [2982] = {.lex_state = 72}, - [2983] = {.lex_state = 72}, - [2984] = {.lex_state = 72}, - [2985] = {.lex_state = 72}, - [2986] = {.lex_state = 72}, - [2987] = {.lex_state = 72}, - [2988] = {.lex_state = 8}, - [2989] = {.lex_state = 72}, - [2990] = {.lex_state = 19}, - [2991] = {.lex_state = 72}, + [2980] = {.lex_state = 23}, + [2981] = {.lex_state = 8}, + [2982] = {.lex_state = 31}, + [2983] = {.lex_state = 17}, + [2984] = {.lex_state = 23}, + [2985] = {.lex_state = 23}, + [2986] = {.lex_state = 17}, + [2987] = {.lex_state = 23, .external_lex_state = 4}, + [2988] = {.lex_state = 23}, + [2989] = {.lex_state = 19}, + [2990] = {.lex_state = 72}, + [2991] = {.lex_state = 23, .external_lex_state = 4}, [2992] = {.lex_state = 72}, [2993] = {.lex_state = 72}, - [2994] = {.lex_state = 72}, - [2995] = {.lex_state = 72}, - [2996] = {.lex_state = 72}, - [2997] = {.lex_state = 72}, - [2998] = {.lex_state = 72}, + [2994] = {.lex_state = 8}, + [2995] = {.lex_state = 8}, + [2996] = {.lex_state = 8}, + [2997] = {.lex_state = 8}, + [2998] = {.lex_state = 17}, [2999] = {.lex_state = 72}, [3000] = {.lex_state = 17}, - [3001] = {.lex_state = 17}, - [3002] = {.lex_state = 72}, - [3003] = {.lex_state = 72}, - [3004] = {.lex_state = 72}, - [3005] = {.lex_state = 72}, + [3001] = {.lex_state = 72}, + [3002] = {.lex_state = 23, .external_lex_state = 4}, + [3003] = {.lex_state = 23}, + [3004] = {.lex_state = 23, .external_lex_state = 4}, + [3005] = {.lex_state = 23, .external_lex_state = 4}, [3006] = {.lex_state = 72}, - [3007] = {.lex_state = 72}, - [3008] = {.lex_state = 72}, + [3007] = {.lex_state = 8}, + [3008] = {.lex_state = 8}, [3009] = {.lex_state = 72}, - [3010] = {.lex_state = 17}, - [3011] = {.lex_state = 72}, - [3012] = {.lex_state = 19}, - [3013] = {.lex_state = 8}, - [3014] = {.lex_state = 72}, - [3015] = {.lex_state = 72}, - [3016] = {.lex_state = 17}, - [3017] = {.lex_state = 72}, - [3018] = {.lex_state = 72}, - [3019] = {.lex_state = 72}, - [3020] = {.lex_state = 72}, - [3021] = {.lex_state = 8}, - [3022] = {.lex_state = 17}, - [3023] = {.lex_state = 72}, - [3024] = {.lex_state = 72}, - [3025] = {.lex_state = 72}, - [3026] = {.lex_state = 72}, - [3027] = {.lex_state = 72}, - [3028] = {.lex_state = 72}, + [3010] = {.lex_state = 23}, + [3011] = {.lex_state = 8}, + [3012] = {.lex_state = 17}, + [3013] = {.lex_state = 23}, + [3014] = {.lex_state = 17}, + [3015] = {.lex_state = 23, .external_lex_state = 4}, + [3016] = {.lex_state = 18}, + [3017] = {.lex_state = 23}, + [3018] = {.lex_state = 17}, + [3019] = {.lex_state = 8}, + [3020] = {.lex_state = 8}, + [3021] = {.lex_state = 72}, + [3022] = {.lex_state = 72}, + [3023] = {.lex_state = 23}, + [3024] = {.lex_state = 8}, + [3025] = {.lex_state = 8}, + [3026] = {.lex_state = 23}, + [3027] = {.lex_state = 23}, + [3028] = {.lex_state = 8}, [3029] = {.lex_state = 23}, [3030] = {.lex_state = 72}, - [3031] = {.lex_state = 72}, - [3032] = {.lex_state = 17}, - [3033] = {.lex_state = 72}, - [3034] = {.lex_state = 72}, - [3035] = {.lex_state = 19}, - [3036] = {.lex_state = 72}, - [3037] = {.lex_state = 19}, + [3031] = {.lex_state = 8}, + [3032] = {.lex_state = 33}, + [3033] = {.lex_state = 23}, + [3034] = {.lex_state = 23}, + [3035] = {.lex_state = 23}, + [3036] = {.lex_state = 5}, + [3037] = {.lex_state = 23}, [3038] = {.lex_state = 17}, - [3039] = {.lex_state = 72}, + [3039] = {.lex_state = 8}, [3040] = {.lex_state = 72}, - [3041] = {.lex_state = 72}, - [3042] = {.lex_state = 72}, - [3043] = {.lex_state = 72}, + [3041] = {.lex_state = 31}, + [3042] = {.lex_state = 17}, + [3043] = {.lex_state = 23}, [3044] = {.lex_state = 72}, - [3045] = {.lex_state = 8}, - [3046] = {.lex_state = 19}, - [3047] = {.lex_state = 19}, - [3048] = {.lex_state = 72}, - [3049] = {.lex_state = 72}, - [3050] = {.lex_state = 72}, - [3051] = {.lex_state = 72}, - [3052] = {.lex_state = 8}, - [3053] = {.lex_state = 72}, - [3054] = {.lex_state = 72}, - [3055] = {.lex_state = 21}, + [3045] = {.lex_state = 23}, + [3046] = {.lex_state = 8}, + [3047] = {.lex_state = 17}, + [3048] = {.lex_state = 19}, + [3049] = {.lex_state = 23, .external_lex_state = 4}, + [3050] = {.lex_state = 17}, + [3051] = {.lex_state = 19}, + [3052] = {.lex_state = 17}, + [3053] = {.lex_state = 23}, + [3054] = {.lex_state = 17}, + [3055] = {.lex_state = 72}, [3056] = {.lex_state = 72}, [3057] = {.lex_state = 72}, - [3058] = {.lex_state = 72}, - [3059] = {.lex_state = 21}, - [3060] = {.lex_state = 72}, - [3061] = {.lex_state = 72}, - [3062] = {.lex_state = 72}, - [3063] = {.lex_state = 72}, - [3064] = {.lex_state = 8}, + [3058] = {.lex_state = 31}, + [3059] = {.lex_state = 8}, + [3060] = {.lex_state = 17}, + [3061] = {.lex_state = 17}, + [3062] = {.lex_state = 23}, + [3063] = {.lex_state = 23}, + [3064] = {.lex_state = 72}, [3065] = {.lex_state = 19}, [3066] = {.lex_state = 72}, - [3067] = {.lex_state = 72}, + [3067] = {.lex_state = 18}, [3068] = {.lex_state = 72}, - [3069] = {.lex_state = 72}, - [3070] = {.lex_state = 72}, - [3071] = {.lex_state = 72}, - [3072] = {.lex_state = 23}, - [3073] = {.lex_state = 23}, - [3074] = {.lex_state = 72}, - [3075] = {.lex_state = 72}, - [3076] = {.lex_state = 19}, - [3077] = {.lex_state = 19}, + [3069] = {.lex_state = 23}, + [3070] = {.lex_state = 31}, + [3071] = {.lex_state = 19}, + [3072] = {.lex_state = 5}, + [3073] = {.lex_state = 72}, + [3074] = {.lex_state = 17}, + [3075] = {.lex_state = 17}, + [3076] = {.lex_state = 72}, + [3077] = {.lex_state = 8}, [3078] = {.lex_state = 72}, - [3079] = {.lex_state = 72}, + [3079] = {.lex_state = 23}, [3080] = {.lex_state = 72}, - [3081] = {.lex_state = 17}, - [3082] = {.lex_state = 72}, - [3083] = {.lex_state = 72}, - [3084] = {.lex_state = 72}, - [3085] = {.lex_state = 17}, + [3081] = {.lex_state = 23}, + [3082] = {.lex_state = 8}, + [3083] = {.lex_state = 23}, + [3084] = {.lex_state = 31}, + [3085] = {.lex_state = 8}, [3086] = {.lex_state = 19}, - [3087] = {.lex_state = 72}, - [3088] = {.lex_state = 72}, - [3089] = {.lex_state = 19}, - [3090] = {.lex_state = 23}, - [3091] = {.lex_state = 72}, - [3092] = {.lex_state = 19}, - [3093] = {.lex_state = 19}, + [3087] = {.lex_state = 17}, + [3088] = {.lex_state = 8}, + [3089] = {.lex_state = 23}, + [3090] = {.lex_state = 17}, + [3091] = {.lex_state = 23}, + [3092] = {.lex_state = 17}, + [3093] = {.lex_state = 72}, [3094] = {.lex_state = 19}, - [3095] = {.lex_state = 72}, - [3096] = {.lex_state = 72}, - [3097] = {.lex_state = 17}, - [3098] = {.lex_state = 72}, - [3099] = {.lex_state = 72}, - [3100] = {.lex_state = 19}, - [3101] = {.lex_state = 72}, - [3102] = {.lex_state = 19}, - [3103] = {.lex_state = 19}, + [3095] = {.lex_state = 23, .external_lex_state = 4}, + [3096] = {.lex_state = 19}, + [3097] = {.lex_state = 19}, + [3098] = {.lex_state = 17}, + [3099] = {.lex_state = 17}, + [3100] = {.lex_state = 72}, + [3101] = {.lex_state = 17}, + [3102] = {.lex_state = 72}, + [3103] = {.lex_state = 17}, [3104] = {.lex_state = 72}, [3105] = {.lex_state = 72}, - [3106] = {.lex_state = 72}, - [3107] = {.lex_state = 19}, - [3108] = {.lex_state = 19}, - [3109] = {.lex_state = 72}, - [3110] = {.lex_state = 72}, + [3106] = {.lex_state = 23}, + [3107] = {.lex_state = 23}, + [3108] = {.lex_state = 23}, + [3109] = {.lex_state = 17}, + [3110] = {.lex_state = 17}, [3111] = {.lex_state = 72}, - [3112] = {.lex_state = 72}, - [3113] = {.lex_state = 72}, - [3114] = {.lex_state = 72}, - [3115] = {.lex_state = 19}, - [3116] = {.lex_state = 72}, - [3117] = {.lex_state = 72}, + [3112] = {.lex_state = 23}, + [3113] = {.lex_state = 17}, + [3114] = {.lex_state = 17}, + [3115] = {.lex_state = 23}, + [3116] = {.lex_state = 33}, + [3117] = {.lex_state = 17}, [3118] = {.lex_state = 72}, - [3119] = {.lex_state = 72}, + [3119] = {.lex_state = 17}, [3120] = {.lex_state = 72}, - [3121] = {.lex_state = 72}, - [3122] = {.lex_state = 17}, - [3123] = {.lex_state = 8}, - [3124] = {.lex_state = 72}, - [3125] = {.lex_state = 17}, - [3126] = {.lex_state = 72}, - [3127] = {.lex_state = 72}, - [3128] = {.lex_state = 72}, - [3129] = {.lex_state = 72}, - [3130] = {.lex_state = 72}, - [3131] = {.lex_state = 72}, - [3132] = {.lex_state = 19}, + [3121] = {.lex_state = 23}, + [3122] = {.lex_state = 23}, + [3123] = {.lex_state = 23}, + [3124] = {.lex_state = 17}, + [3125] = {.lex_state = 23}, + [3126] = {.lex_state = 17}, + [3127] = {.lex_state = 31}, + [3128] = {.lex_state = 23}, + [3129] = {.lex_state = 23}, + [3130] = {.lex_state = 17}, + [3131] = {.lex_state = 23}, + [3132] = {.lex_state = 23}, [3133] = {.lex_state = 72}, [3134] = {.lex_state = 72}, - [3135] = {.lex_state = 72}, + [3135] = {.lex_state = 23, .external_lex_state = 4}, [3136] = {.lex_state = 72}, - [3137] = {.lex_state = 72}, - [3138] = {.lex_state = 72}, - [3139] = {.lex_state = 72}, - [3140] = {.lex_state = 19}, - [3141] = {.lex_state = 72}, - [3142] = {.lex_state = 72}, - [3143] = {.lex_state = 72}, - [3144] = {.lex_state = 8}, - [3145] = {.lex_state = 72}, - [3146] = {.lex_state = 72}, - [3147] = {.lex_state = 8}, + [3137] = {.lex_state = 23}, + [3138] = {.lex_state = 8}, + [3139] = {.lex_state = 23}, + [3140] = {.lex_state = 8}, + [3141] = {.lex_state = 8}, + [3142] = {.lex_state = 18}, + [3143] = {.lex_state = 5}, + [3144] = {.lex_state = 18}, + [3145] = {.lex_state = 8}, + [3146] = {.lex_state = 17}, + [3147] = {.lex_state = 5}, [3148] = {.lex_state = 8}, - [3149] = {.lex_state = 72}, - [3150] = {.lex_state = 17}, - [3151] = {.lex_state = 8}, - [3152] = {.lex_state = 72}, - [3153] = {.lex_state = 17}, - [3154] = {.lex_state = 72}, - [3155] = {.lex_state = 17}, - [3156] = {.lex_state = 72}, - [3157] = {.lex_state = 17}, - [3158] = {.lex_state = 72}, - [3159] = {.lex_state = 72}, - [3160] = {.lex_state = 72}, + [3149] = {.lex_state = 17}, + [3150] = {.lex_state = 19}, + [3151] = {.lex_state = 17}, + [3152] = {.lex_state = 17}, + [3153] = {.lex_state = 72}, + [3154] = {.lex_state = 23}, + [3155] = {.lex_state = 18}, + [3156] = {.lex_state = 17}, + [3157] = {.lex_state = 8}, + [3158] = {.lex_state = 23}, + [3159] = {.lex_state = 8}, + [3160] = {.lex_state = 17}, [3161] = {.lex_state = 17}, - [3162] = {.lex_state = 7}, - [3163] = {.lex_state = 72}, + [3162] = {.lex_state = 8}, + [3163] = {.lex_state = 5}, [3164] = {.lex_state = 72}, - [3165] = {.lex_state = 7}, - [3166] = {.lex_state = 72}, - [3167] = {.lex_state = 72}, - [3168] = {.lex_state = 72}, - [3169] = {.lex_state = 17}, - [3170] = {.lex_state = 17}, + [3165] = {.lex_state = 8}, + [3166] = {.lex_state = 17}, + [3167] = {.lex_state = 17}, + [3168] = {.lex_state = 23}, + [3169] = {.lex_state = 8}, + [3170] = {.lex_state = 31}, [3171] = {.lex_state = 17}, [3172] = {.lex_state = 17}, [3173] = {.lex_state = 17}, - [3174] = {.lex_state = 17}, - [3175] = {.lex_state = 17}, - [3176] = {.lex_state = 72}, - [3177] = {.lex_state = 72}, - [3178] = {.lex_state = 72}, - [3179] = {.lex_state = 72}, + [3174] = {.lex_state = 23, .external_lex_state = 4}, + [3175] = {.lex_state = 72}, + [3176] = {.lex_state = 17}, + [3177] = {.lex_state = 17}, + [3178] = {.lex_state = 23}, + [3179] = {.lex_state = 17}, [3180] = {.lex_state = 72}, - [3181] = {.lex_state = 72}, - [3182] = {.lex_state = 17}, - [3183] = {.lex_state = 72}, - [3184] = {.lex_state = 17}, - [3185] = {.lex_state = 17}, - [3186] = {.lex_state = 72}, - [3187] = {.lex_state = 72}, + [3181] = {.lex_state = 17}, + [3182] = {.lex_state = 31}, + [3183] = {.lex_state = 17}, + [3184] = {.lex_state = 8}, + [3185] = {.lex_state = 33}, + [3186] = {.lex_state = 8}, + [3187] = {.lex_state = 8}, [3188] = {.lex_state = 72}, - [3189] = {.lex_state = 72}, - [3190] = {.lex_state = 72}, + [3189] = {.lex_state = 17}, + [3190] = {.lex_state = 17}, [3191] = {.lex_state = 17}, [3192] = {.lex_state = 72}, - [3193] = {.lex_state = 72}, - [3194] = {.lex_state = 23}, - [3195] = {.lex_state = 72}, + [3193] = {.lex_state = 33}, + [3194] = {.lex_state = 31}, + [3195] = {.lex_state = 23}, [3196] = {.lex_state = 17}, - [3197] = {.lex_state = 72}, - [3198] = {.lex_state = 72}, - [3199] = {.lex_state = 17}, - [3200] = {.lex_state = 72}, + [3197] = {.lex_state = 8}, + [3198] = {.lex_state = 8}, + [3199] = {.lex_state = 23}, + [3200] = {.lex_state = 19}, [3201] = {.lex_state = 17}, - [3202] = {.lex_state = 72}, - [3203] = {.lex_state = 72}, - [3204] = {.lex_state = 72}, - [3205] = {.lex_state = 17}, - [3206] = {.lex_state = 72}, - [3207] = {.lex_state = 72}, - [3208] = {.lex_state = 17}, - [3209] = {.lex_state = 72}, - [3210] = {.lex_state = 72}, - [3211] = {.lex_state = 8}, - [3212] = {.lex_state = 72}, - [3213] = {.lex_state = 31}, - [3214] = {.lex_state = 72}, - [3215] = {.lex_state = 72}, + [3202] = {.lex_state = 8}, + [3203] = {.lex_state = 23}, + [3204] = {.lex_state = 8}, + [3205] = {.lex_state = 72}, + [3206] = {.lex_state = 23}, + [3207] = {.lex_state = 17}, + [3208] = {.lex_state = 72}, + [3209] = {.lex_state = 8}, + [3210] = {.lex_state = 8}, + [3211] = {.lex_state = 31}, + [3212] = {.lex_state = 17}, + [3213] = {.lex_state = 17}, + [3214] = {.lex_state = 8}, + [3215] = {.lex_state = 8}, [3216] = {.lex_state = 17}, [3217] = {.lex_state = 17}, [3218] = {.lex_state = 72}, [3219] = {.lex_state = 17}, - [3220] = {.lex_state = 72}, - [3221] = {.lex_state = 72}, - [3222] = {.lex_state = 72}, - [3223] = {.lex_state = 72}, + [3220] = {.lex_state = 17}, + [3221] = {.lex_state = 17}, + [3222] = {.lex_state = 17}, + [3223] = {.lex_state = 23}, [3224] = {.lex_state = 17}, - [3225] = {.lex_state = 72}, - [3226] = {.lex_state = 17}, + [3225] = {.lex_state = 8}, + [3226] = {.lex_state = 23}, [3227] = {.lex_state = 17}, - [3228] = {.lex_state = 17}, - [3229] = {.lex_state = 72}, - [3230] = {.lex_state = 72}, - [3231] = {.lex_state = 72}, - [3232] = {.lex_state = 72}, - [3233] = {.lex_state = 17}, - [3234] = {.lex_state = 72}, + [3228] = {.lex_state = 31}, + [3229] = {.lex_state = 23}, + [3230] = {.lex_state = 23, .external_lex_state = 4}, + [3231] = {.lex_state = 17}, + [3232] = {.lex_state = 23}, + [3233] = {.lex_state = 8}, + [3234] = {.lex_state = 23}, [3235] = {.lex_state = 17}, - [3236] = {.lex_state = 72}, + [3236] = {.lex_state = 17}, [3237] = {.lex_state = 72}, - [3238] = {.lex_state = 17}, - [3239] = {.lex_state = 72}, - [3240] = {.lex_state = 17}, + [3238] = {.lex_state = 72}, + [3239] = {.lex_state = 8}, + [3240] = {.lex_state = 72}, [3241] = {.lex_state = 72}, [3242] = {.lex_state = 72}, [3243] = {.lex_state = 72}, [3244] = {.lex_state = 72}, - [3245] = {.lex_state = 17}, - [3246] = {.lex_state = 17}, + [3245] = {.lex_state = 72}, + [3246] = {.lex_state = 72}, [3247] = {.lex_state = 72}, [3248] = {.lex_state = 72}, [3249] = {.lex_state = 72}, - [3250] = {.lex_state = 17}, - [3251] = {.lex_state = 17}, - [3252] = {.lex_state = 17}, - [3253] = {.lex_state = 17}, - [3254] = {.lex_state = 72}, + [3250] = {.lex_state = 72}, + [3251] = {.lex_state = 72}, + [3252] = {.lex_state = 72}, + [3253] = {.lex_state = 72}, + [3254] = {.lex_state = 17}, [3255] = {.lex_state = 72}, [3256] = {.lex_state = 72}, [3257] = {.lex_state = 17}, [3258] = {.lex_state = 72}, [3259] = {.lex_state = 17}, - [3260] = {.lex_state = 17}, + [3260] = {.lex_state = 72}, [3261] = {.lex_state = 17}, [3262] = {.lex_state = 72}, - [3263] = {.lex_state = 17}, - [3264] = {.lex_state = 17}, + [3263] = {.lex_state = 72}, + [3264] = {.lex_state = 8}, [3265] = {.lex_state = 17}, - [3266] = {.lex_state = 17}, - [3267] = {.lex_state = 17}, - [3268] = {.lex_state = 17}, - [3269] = {.lex_state = 72}, - [3270] = {.lex_state = 17}, + [3266] = {.lex_state = 72}, + [3267] = {.lex_state = 72}, + [3268] = {.lex_state = 72}, + [3269] = {.lex_state = 17}, + [3270] = {.lex_state = 72}, [3271] = {.lex_state = 72}, [3272] = {.lex_state = 72}, - [3273] = {.lex_state = 17}, - [3274] = {.lex_state = 17}, - [3275] = {.lex_state = 17}, - [3276] = {.lex_state = 17}, + [3273] = {.lex_state = 72}, + [3274] = {.lex_state = 72}, + [3275] = {.lex_state = 72}, + [3276] = {.lex_state = 72}, [3277] = {.lex_state = 72}, [3278] = {.lex_state = 72}, - [3279] = {.lex_state = 72}, - [3280] = {.lex_state = 17}, - [3281] = {.lex_state = 17}, - [3282] = {.lex_state = 17}, - [3283] = {.lex_state = 17}, - [3284] = {.lex_state = 17}, - [3285] = {.lex_state = 17}, - [3286] = {.lex_state = 17}, - [3287] = {.lex_state = 17}, - [3288] = {.lex_state = 17}, - [3289] = {.lex_state = 17}, - [3290] = {.lex_state = 17}, - [3291] = {.lex_state = 17}, - [3292] = {.lex_state = 17}, - [3293] = {.lex_state = 17}, - [3294] = {.lex_state = 17}, - [3295] = {.lex_state = 17}, - [3296] = {.lex_state = 17}, - [3297] = {.lex_state = 23, .external_lex_state = 5}, - [3298] = {.lex_state = 72}, - [3299] = {.lex_state = 72}, - [3300] = {.lex_state = 17}, - [3301] = {.lex_state = 72}, + [3279] = {.lex_state = 19}, + [3280] = {.lex_state = 72}, + [3281] = {.lex_state = 19}, + [3282] = {.lex_state = 72}, + [3283] = {.lex_state = 72}, + [3284] = {.lex_state = 72}, + [3285] = {.lex_state = 72}, + [3286] = {.lex_state = 72}, + [3287] = {.lex_state = 72}, + [3288] = {.lex_state = 72}, + [3289] = {.lex_state = 72}, + [3290] = {.lex_state = 72}, + [3291] = {.lex_state = 72}, + [3292] = {.lex_state = 72}, + [3293] = {.lex_state = 72}, + [3294] = {.lex_state = 72}, + [3295] = {.lex_state = 72}, + [3296] = {.lex_state = 72}, + [3297] = {.lex_state = 72}, + [3298] = {.lex_state = 19}, + [3299] = {.lex_state = 19}, + [3300] = {.lex_state = 19}, + [3301] = {.lex_state = 19}, [3302] = {.lex_state = 72}, [3303] = {.lex_state = 72}, - [3304] = {.lex_state = 17}, - [3305] = {.lex_state = 72}, + [3304] = {.lex_state = 19}, + [3305] = {.lex_state = 19}, [3306] = {.lex_state = 72}, [3307] = {.lex_state = 72}, - [3308] = {.lex_state = 72}, + [3308] = {.lex_state = 19}, [3309] = {.lex_state = 72}, [3310] = {.lex_state = 72}, - [3311] = {.lex_state = 17}, + [3311] = {.lex_state = 19}, [3312] = {.lex_state = 72}, [3313] = {.lex_state = 72}, [3314] = {.lex_state = 72}, [3315] = {.lex_state = 72}, - [3316] = {.lex_state = 72, .external_lex_state = 6}, - [3317] = {.lex_state = 72}, + [3316] = {.lex_state = 19}, + [3317] = {.lex_state = 19}, [3318] = {.lex_state = 72}, - [3319] = {.lex_state = 72}, - [3320] = {.lex_state = 8}, - [3321] = {.lex_state = 72}, - [3322] = {.lex_state = 23, .external_lex_state = 5}, - [3323] = {.lex_state = 72}, + [3319] = {.lex_state = 17}, + [3320] = {.lex_state = 72}, + [3321] = {.lex_state = 19}, + [3322] = {.lex_state = 72}, + [3323] = {.lex_state = 17}, [3324] = {.lex_state = 72}, - [3325] = {.lex_state = 17}, - [3326] = {.lex_state = 72}, - [3327] = {.lex_state = 72}, + [3325] = {.lex_state = 72}, + [3326] = {.lex_state = 17}, + [3327] = {.lex_state = 19}, [3328] = {.lex_state = 72}, - [3329] = {.lex_state = 17}, + [3329] = {.lex_state = 72}, [3330] = {.lex_state = 72}, [3331] = {.lex_state = 72}, [3332] = {.lex_state = 72}, - [3333] = {.lex_state = 17}, + [3333] = {.lex_state = 19}, [3334] = {.lex_state = 72}, - [3335] = {.lex_state = 17}, + [3335] = {.lex_state = 72}, [3336] = {.lex_state = 72}, - [3337] = {.lex_state = 17}, - [3338] = {.lex_state = 72}, + [3337] = {.lex_state = 72}, + [3338] = {.lex_state = 19}, [3339] = {.lex_state = 72}, [3340] = {.lex_state = 72}, - [3341] = {.lex_state = 17}, - [3342] = {.lex_state = 72}, + [3341] = {.lex_state = 72}, + [3342] = {.lex_state = 19}, [3343] = {.lex_state = 72}, - [3344] = {.lex_state = 17}, - [3345] = {.lex_state = 31}, + [3344] = {.lex_state = 72}, + [3345] = {.lex_state = 72}, [3346] = {.lex_state = 72}, - [3347] = {.lex_state = 72}, - [3348] = {.lex_state = 72, .external_lex_state = 6}, - [3349] = {.lex_state = 72}, + [3347] = {.lex_state = 17}, + [3348] = {.lex_state = 31}, + [3349] = {.lex_state = 17}, [3350] = {.lex_state = 72}, - [3351] = {.lex_state = 17}, + [3351] = {.lex_state = 20}, [3352] = {.lex_state = 72}, [3353] = {.lex_state = 72}, - [3354] = {.lex_state = 72}, + [3354] = {.lex_state = 17}, [3355] = {.lex_state = 72}, [3356] = {.lex_state = 72}, [3357] = {.lex_state = 72}, [3358] = {.lex_state = 72}, [3359] = {.lex_state = 72}, [3360] = {.lex_state = 72}, - [3361] = {.lex_state = 17}, - [3362] = {.lex_state = 17}, - [3363] = {.lex_state = 72}, + [3361] = {.lex_state = 72}, + [3362] = {.lex_state = 72}, + [3363] = {.lex_state = 8}, [3364] = {.lex_state = 72}, [3365] = {.lex_state = 72}, [3366] = {.lex_state = 72}, - [3367] = {.lex_state = 72}, + [3367] = {.lex_state = 17}, [3368] = {.lex_state = 72}, - [3369] = {.lex_state = 23, .external_lex_state = 5}, - [3370] = {.lex_state = 17}, + [3369] = {.lex_state = 72}, + [3370] = {.lex_state = 72}, [3371] = {.lex_state = 72}, - [3372] = {.lex_state = 72}, - [3373] = {.lex_state = 72}, - [3374] = {.lex_state = 17}, - [3375] = {.lex_state = 17}, - [3376] = {.lex_state = 31}, - [3377] = {.lex_state = 17}, + [3372] = {.lex_state = 19}, + [3373] = {.lex_state = 19}, + [3374] = {.lex_state = 8}, + [3375] = {.lex_state = 72}, + [3376] = {.lex_state = 72}, + [3377] = {.lex_state = 72}, [3378] = {.lex_state = 72}, [3379] = {.lex_state = 72}, [3380] = {.lex_state = 72}, [3381] = {.lex_state = 72}, - [3382] = {.lex_state = 17}, - [3383] = {.lex_state = 72}, + [3382] = {.lex_state = 72}, + [3383] = {.lex_state = 8}, [3384] = {.lex_state = 72}, [3385] = {.lex_state = 72}, [3386] = {.lex_state = 72}, - [3387] = {.lex_state = 72}, - [3388] = {.lex_state = 72}, - [3389] = {.lex_state = 17}, + [3387] = {.lex_state = 17}, + [3388] = {.lex_state = 19}, + [3389] = {.lex_state = 19}, [3390] = {.lex_state = 72}, - [3391] = {.lex_state = 72}, - [3392] = {.lex_state = 72}, + [3391] = {.lex_state = 19}, + [3392] = {.lex_state = 19}, [3393] = {.lex_state = 72}, - [3394] = {.lex_state = 72}, - [3395] = {.lex_state = 72}, - [3396] = {.lex_state = 17}, + [3394] = {.lex_state = 19}, + [3395] = {.lex_state = 19}, + [3396] = {.lex_state = 72}, [3397] = {.lex_state = 72}, [3398] = {.lex_state = 72}, [3399] = {.lex_state = 72}, [3400] = {.lex_state = 72}, - [3401] = {.lex_state = 31}, - [3402] = {.lex_state = 31}, + [3401] = {.lex_state = 72}, + [3402] = {.lex_state = 8}, [3403] = {.lex_state = 72}, [3404] = {.lex_state = 72}, - [3405] = {.lex_state = 21}, + [3405] = {.lex_state = 72}, [3406] = {.lex_state = 72}, - [3407] = {.lex_state = 72}, + [3407] = {.lex_state = 19}, [3408] = {.lex_state = 72}, - [3409] = {.lex_state = 17}, - [3410] = {.lex_state = 17}, - [3411] = {.lex_state = 17}, - [3412] = {.lex_state = 17}, - [3413] = {.lex_state = 17}, - [3414] = {.lex_state = 17}, + [3409] = {.lex_state = 72}, + [3410] = {.lex_state = 72}, + [3411] = {.lex_state = 72}, + [3412] = {.lex_state = 72}, + [3413] = {.lex_state = 72}, + [3414] = {.lex_state = 72}, [3415] = {.lex_state = 72}, - [3416] = {.lex_state = 17}, + [3416] = {.lex_state = 72}, [3417] = {.lex_state = 72}, [3418] = {.lex_state = 72}, - [3419] = {.lex_state = 72}, - [3420] = {.lex_state = 23}, - [3421] = {.lex_state = 72}, - [3422] = {.lex_state = 17}, + [3419] = {.lex_state = 19}, + [3420] = {.lex_state = 72}, + [3421] = {.lex_state = 17}, + [3422] = {.lex_state = 72}, [3423] = {.lex_state = 72}, - [3424] = {.lex_state = 17}, + [3424] = {.lex_state = 72}, [3425] = {.lex_state = 72}, [3426] = {.lex_state = 72}, [3427] = {.lex_state = 72}, - [3428] = {.lex_state = 17}, + [3428] = {.lex_state = 72}, [3429] = {.lex_state = 72}, - [3430] = {.lex_state = 17}, + [3430] = {.lex_state = 72}, [3431] = {.lex_state = 72}, - [3432] = {.lex_state = 17}, + [3432] = {.lex_state = 72}, [3433] = {.lex_state = 17}, - [3434] = {.lex_state = 31}, - [3435] = {.lex_state = 17}, + [3434] = {.lex_state = 72}, + [3435] = {.lex_state = 72}, [3436] = {.lex_state = 17}, [3437] = {.lex_state = 72}, - [3438] = {.lex_state = 17}, - [3439] = {.lex_state = 17}, - [3440] = {.lex_state = 72}, + [3438] = {.lex_state = 72}, + [3439] = {.lex_state = 72}, + [3440] = {.lex_state = 8}, [3441] = {.lex_state = 17}, - [3442] = {.lex_state = 17}, + [3442] = {.lex_state = 72}, [3443] = {.lex_state = 17}, [3444] = {.lex_state = 17}, - [3445] = {.lex_state = 72}, - [3446] = {.lex_state = 17}, - [3447] = {.lex_state = 17}, - [3448] = {.lex_state = 17}, + [3445] = {.lex_state = 8}, + [3446] = {.lex_state = 20}, + [3447] = {.lex_state = 72}, + [3448] = {.lex_state = 72}, [3449] = {.lex_state = 72}, [3450] = {.lex_state = 72}, [3451] = {.lex_state = 72}, - [3452] = {.lex_state = 72}, - [3453] = {.lex_state = 17}, + [3452] = {.lex_state = 17}, + [3453] = {.lex_state = 72}, [3454] = {.lex_state = 17}, [3455] = {.lex_state = 72}, - [3456] = {.lex_state = 72}, + [3456] = {.lex_state = 19}, [3457] = {.lex_state = 72}, - [3458] = {.lex_state = 72}, - [3459] = {.lex_state = 72}, - [3460] = {.lex_state = 72}, + [3458] = {.lex_state = 20}, + [3459] = {.lex_state = 17}, + [3460] = {.lex_state = 17}, [3461] = {.lex_state = 72}, - [3462] = {.lex_state = 17}, + [3462] = {.lex_state = 72}, [3463] = {.lex_state = 72}, [3464] = {.lex_state = 72}, - [3465] = {.lex_state = 72}, - [3466] = {.lex_state = 72}, - [3467] = {.lex_state = 72}, + [3465] = {.lex_state = 19}, + [3466] = {.lex_state = 19}, + [3467] = {.lex_state = 17}, [3468] = {.lex_state = 72}, [3469] = {.lex_state = 72}, - [3470] = {.lex_state = 21}, - [3471] = {.lex_state = 72}, - [3472] = {.lex_state = 8}, + [3470] = {.lex_state = 19}, + [3471] = {.lex_state = 19}, + [3472] = {.lex_state = 19}, [3473] = {.lex_state = 72}, - [3474] = {.lex_state = 72}, - [3475] = {.lex_state = 17}, + [3474] = {.lex_state = 19}, + [3475] = {.lex_state = 72}, [3476] = {.lex_state = 72}, [3477] = {.lex_state = 72}, - [3478] = {.lex_state = 17}, - [3479] = {.lex_state = 17}, + [3478] = {.lex_state = 72}, + [3479] = {.lex_state = 72}, [3480] = {.lex_state = 72}, - [3481] = {.lex_state = 72, .external_lex_state = 7}, + [3481] = {.lex_state = 72}, [3482] = {.lex_state = 72}, - [3483] = {.lex_state = 72}, - [3484] = {.lex_state = 72}, - [3485] = {.lex_state = 17}, - [3486] = {.lex_state = 72}, + [3483] = {.lex_state = 8}, + [3484] = {.lex_state = 8}, + [3485] = {.lex_state = 72}, + [3486] = {.lex_state = 31}, [3487] = {.lex_state = 72}, - [3488] = {.lex_state = 72, .external_lex_state = 8}, - [3489] = {.lex_state = 72, .external_lex_state = 8}, + [3488] = {.lex_state = 72}, + [3489] = {.lex_state = 72}, [3490] = {.lex_state = 72}, - [3491] = {.lex_state = 72}, + [3491] = {.lex_state = 19}, [3492] = {.lex_state = 72}, - [3493] = {.lex_state = 72}, + [3493] = {.lex_state = 17}, [3494] = {.lex_state = 72}, - [3495] = {.lex_state = 17}, - [3496] = {.lex_state = 17}, + [3495] = {.lex_state = 72}, + [3496] = {.lex_state = 19}, [3497] = {.lex_state = 72}, [3498] = {.lex_state = 72}, [3499] = {.lex_state = 72}, - [3500] = {.lex_state = 17}, - [3501] = {.lex_state = 17}, - [3502] = {.lex_state = 72}, - [3503] = {.lex_state = 17}, + [3500] = {.lex_state = 72}, + [3501] = {.lex_state = 72}, + [3502] = {.lex_state = 17}, + [3503] = {.lex_state = 72}, [3504] = {.lex_state = 72}, - [3505] = {.lex_state = 72}, - [3506] = {.lex_state = 17}, + [3505] = {.lex_state = 20}, + [3506] = {.lex_state = 72}, [3507] = {.lex_state = 72}, - [3508] = {.lex_state = 17}, - [3509] = {.lex_state = 73}, - [3510] = {.lex_state = 72}, - [3511] = {.lex_state = 72}, + [3508] = {.lex_state = 72}, + [3509] = {.lex_state = 72}, + [3510] = {.lex_state = 17}, + [3511] = {.lex_state = 23}, [3512] = {.lex_state = 72}, [3513] = {.lex_state = 72}, - [3514] = {.lex_state = 72}, - [3515] = {.lex_state = 72}, + [3514] = {.lex_state = 19}, + [3515] = {.lex_state = 17}, [3516] = {.lex_state = 17}, [3517] = {.lex_state = 72}, [3518] = {.lex_state = 72}, [3519] = {.lex_state = 72}, - [3520] = {.lex_state = 73}, + [3520] = {.lex_state = 23}, [3521] = {.lex_state = 72}, [3522] = {.lex_state = 17}, - [3523] = {.lex_state = 17}, - [3524] = {.lex_state = 72, .external_lex_state = 7}, - [3525] = {.lex_state = 17}, + [3523] = {.lex_state = 72}, + [3524] = {.lex_state = 72}, + [3525] = {.lex_state = 72}, [3526] = {.lex_state = 72}, [3527] = {.lex_state = 72}, - [3528] = {.lex_state = 72}, - [3529] = {.lex_state = 21}, + [3528] = {.lex_state = 17}, + [3529] = {.lex_state = 72}, [3530] = {.lex_state = 72}, - [3531] = {.lex_state = 17}, - [3532] = {.lex_state = 21}, - [3533] = {.lex_state = 17}, - [3534] = {.lex_state = 72}, + [3531] = {.lex_state = 23}, + [3532] = {.lex_state = 72}, + [3533] = {.lex_state = 72}, + [3534] = {.lex_state = 23, .external_lex_state = 4}, [3535] = {.lex_state = 23}, - [3536] = {.lex_state = 17}, - [3537] = {.lex_state = 72, .external_lex_state = 8}, + [3536] = {.lex_state = 8}, + [3537] = {.lex_state = 72}, [3538] = {.lex_state = 72}, - [3539] = {.lex_state = 72, .external_lex_state = 7}, + [3539] = {.lex_state = 72}, [3540] = {.lex_state = 72}, - [3541] = {.lex_state = 72}, - [3542] = {.lex_state = 17}, - [3543] = {.lex_state = 72, .external_lex_state = 9}, - [3544] = {.lex_state = 17}, + [3541] = {.lex_state = 17}, + [3542] = {.lex_state = 72}, + [3543] = {.lex_state = 72}, + [3544] = {.lex_state = 72}, [3545] = {.lex_state = 72}, [3546] = {.lex_state = 72}, [3547] = {.lex_state = 72}, - [3548] = {.lex_state = 72}, - [3549] = {.lex_state = 72, .external_lex_state = 8}, + [3548] = {.lex_state = 17}, + [3549] = {.lex_state = 72}, [3550] = {.lex_state = 72}, - [3551] = {.lex_state = 17}, - [3552] = {.lex_state = 72}, - [3553] = {.lex_state = 17}, + [3551] = {.lex_state = 72}, + [3552] = {.lex_state = 17}, + [3553] = {.lex_state = 72}, [3554] = {.lex_state = 72}, - [3555] = {.lex_state = 17}, - [3556] = {.lex_state = 21}, + [3555] = {.lex_state = 72}, + [3556] = {.lex_state = 8}, [3557] = {.lex_state = 72}, [3558] = {.lex_state = 72}, - [3559] = {.lex_state = 72}, + [3559] = {.lex_state = 8}, [3560] = {.lex_state = 72}, - [3561] = {.lex_state = 17}, - [3562] = {.lex_state = 72}, - [3563] = {.lex_state = 72}, - [3564] = {.lex_state = 73}, - [3565] = {.lex_state = 72}, - [3566] = {.lex_state = 23}, - [3567] = {.lex_state = 72}, - [3568] = {.lex_state = 72, .external_lex_state = 7}, + [3561] = {.lex_state = 8}, + [3562] = {.lex_state = 20}, + [3563] = {.lex_state = 8}, + [3564] = {.lex_state = 72}, + [3565] = {.lex_state = 17}, + [3566] = {.lex_state = 17}, + [3567] = {.lex_state = 8}, + [3568] = {.lex_state = 8}, [3569] = {.lex_state = 72}, - [3570] = {.lex_state = 73}, - [3571] = {.lex_state = 72}, + [3570] = {.lex_state = 17}, + [3571] = {.lex_state = 8}, [3572] = {.lex_state = 72}, [3573] = {.lex_state = 72}, - [3574] = {.lex_state = 21}, - [3575] = {.lex_state = 72, .external_lex_state = 8}, + [3574] = {.lex_state = 72}, + [3575] = {.lex_state = 17}, [3576] = {.lex_state = 72}, [3577] = {.lex_state = 72}, [3578] = {.lex_state = 72}, [3579] = {.lex_state = 72}, [3580] = {.lex_state = 72}, [3581] = {.lex_state = 72}, - [3582] = {.lex_state = 21}, - [3583] = {.lex_state = 17}, + [3582] = {.lex_state = 17}, + [3583] = {.lex_state = 72}, [3584] = {.lex_state = 72}, - [3585] = {.lex_state = 72, .external_lex_state = 9}, - [3586] = {.lex_state = 72}, - [3587] = {.lex_state = 72}, - [3588] = {.lex_state = 72}, - [3589] = {.lex_state = 72}, + [3585] = {.lex_state = 17}, + [3586] = {.lex_state = 17}, + [3587] = {.lex_state = 17}, + [3588] = {.lex_state = 17}, + [3589] = {.lex_state = 17}, [3590] = {.lex_state = 72}, [3591] = {.lex_state = 72}, - [3592] = {.lex_state = 17}, + [3592] = {.lex_state = 72}, [3593] = {.lex_state = 17}, [3594] = {.lex_state = 72}, [3595] = {.lex_state = 17}, - [3596] = {.lex_state = 72}, - [3597] = {.lex_state = 72}, - [3598] = {.lex_state = 72}, + [3596] = {.lex_state = 17}, + [3597] = {.lex_state = 17}, + [3598] = {.lex_state = 17}, [3599] = {.lex_state = 72}, - [3600] = {.lex_state = 8}, + [3600] = {.lex_state = 17}, [3601] = {.lex_state = 72}, [3602] = {.lex_state = 17}, [3603] = {.lex_state = 72}, @@ -13996,181 +14994,703 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3607] = {.lex_state = 72}, [3608] = {.lex_state = 72}, [3609] = {.lex_state = 72}, - [3610] = {.lex_state = 72}, - [3611] = {.lex_state = 72}, - [3612] = {.lex_state = 72}, + [3610] = {.lex_state = 17}, + [3611] = {.lex_state = 17}, + [3612] = {.lex_state = 17}, [3613] = {.lex_state = 17}, - [3614] = {.lex_state = 72}, - [3615] = {.lex_state = 72}, - [3616] = {.lex_state = 72}, - [3617] = {.lex_state = 72}, + [3614] = {.lex_state = 17}, + [3615] = {.lex_state = 17}, + [3616] = {.lex_state = 17}, + [3617] = {.lex_state = 17}, [3618] = {.lex_state = 72}, [3619] = {.lex_state = 72}, - [3620] = {.lex_state = 17}, - [3621] = {.lex_state = 17}, + [3620] = {.lex_state = 72}, + [3621] = {.lex_state = 72}, [3622] = {.lex_state = 72}, - [3623] = {.lex_state = 17}, - [3624] = {.lex_state = 72, .external_lex_state = 9}, + [3623] = {.lex_state = 72}, + [3624] = {.lex_state = 72}, [3625] = {.lex_state = 72}, - [3626] = {.lex_state = 17}, - [3627] = {.lex_state = 17}, + [3626] = {.lex_state = 72}, + [3627] = {.lex_state = 72}, [3628] = {.lex_state = 72}, - [3629] = {.lex_state = 72}, + [3629] = {.lex_state = 17}, [3630] = {.lex_state = 72}, [3631] = {.lex_state = 72}, - [3632] = {.lex_state = 17}, - [3633] = {.lex_state = 17}, + [3632] = {.lex_state = 72}, + [3633] = {.lex_state = 20}, [3634] = {.lex_state = 72}, - [3635] = {.lex_state = 17}, - [3636] = {.lex_state = 21}, - [3637] = {.lex_state = 17}, - [3638] = {.lex_state = 17}, + [3635] = {.lex_state = 72}, + [3636] = {.lex_state = 72}, + [3637] = {.lex_state = 72}, + [3638] = {.lex_state = 72}, [3639] = {.lex_state = 72}, [3640] = {.lex_state = 72}, [3641] = {.lex_state = 72}, - [3642] = {.lex_state = 17}, + [3642] = {.lex_state = 72}, [3643] = {.lex_state = 72}, - [3644] = {.lex_state = 72}, - [3645] = {.lex_state = 72, .external_lex_state = 9}, + [3644] = {.lex_state = 17}, + [3645] = {.lex_state = 17}, [3646] = {.lex_state = 72}, [3647] = {.lex_state = 72}, [3648] = {.lex_state = 72}, [3649] = {.lex_state = 72}, - [3650] = {.lex_state = 21}, - [3651] = {.lex_state = 72}, - [3652] = {.lex_state = 72, .external_lex_state = 9}, + [3650] = {.lex_state = 17}, + [3651] = {.lex_state = 17}, + [3652] = {.lex_state = 72}, [3653] = {.lex_state = 72}, [3654] = {.lex_state = 72}, - [3655] = {.lex_state = 72, .external_lex_state = 9}, - [3656] = {.lex_state = 72}, - [3657] = {.lex_state = 72}, - [3658] = {.lex_state = 72}, + [3655] = {.lex_state = 72}, + [3656] = {.lex_state = 17}, + [3657] = {.lex_state = 17}, + [3658] = {.lex_state = 17}, [3659] = {.lex_state = 72}, [3660] = {.lex_state = 72}, [3661] = {.lex_state = 72}, - [3662] = {.lex_state = 72}, - [3663] = {.lex_state = 72}, - [3664] = {.lex_state = 72}, - [3665] = {.lex_state = 72}, + [3662] = {.lex_state = 17}, + [3663] = {.lex_state = 17}, + [3664] = {.lex_state = 17}, + [3665] = {.lex_state = 17}, [3666] = {.lex_state = 17}, - [3667] = {.lex_state = 72}, - [3668] = {.lex_state = 17}, - [3669] = {.lex_state = 21}, + [3667] = {.lex_state = 23}, + [3668] = {.lex_state = 31}, + [3669] = {.lex_state = 72}, [3670] = {.lex_state = 72}, - [3671] = {.lex_state = 72}, - [3672] = {.lex_state = 72}, + [3671] = {.lex_state = 31}, + [3672] = {.lex_state = 17}, [3673] = {.lex_state = 72}, [3674] = {.lex_state = 17}, [3675] = {.lex_state = 72}, - [3676] = {.lex_state = 72}, - [3677] = {.lex_state = 21}, - [3678] = {.lex_state = 21}, - [3679] = {.lex_state = 17}, - [3680] = {.lex_state = 17}, - [3681] = {.lex_state = 17}, - [3682] = {.lex_state = 21}, - [3683] = {.lex_state = 21}, - [3684] = {.lex_state = 17}, + [3676] = {.lex_state = 31}, + [3677] = {.lex_state = 72}, + [3678] = {.lex_state = 17}, + [3679] = {.lex_state = 72}, + [3680] = {.lex_state = 72}, + [3681] = {.lex_state = 72}, + [3682] = {.lex_state = 72}, + [3683] = {.lex_state = 17}, + [3684] = {.lex_state = 72}, [3685] = {.lex_state = 17}, [3686] = {.lex_state = 17}, - [3687] = {.lex_state = 72}, - [3688] = {.lex_state = 21}, - [3689] = {.lex_state = 72}, - [3690] = {.lex_state = 72, .external_lex_state = 8}, + [3687] = {.lex_state = 17}, + [3688] = {.lex_state = 72}, + [3689] = {.lex_state = 23, .external_lex_state = 5}, + [3690] = {.lex_state = 72}, [3691] = {.lex_state = 72}, - [3692] = {.lex_state = 72}, - [3693] = {.lex_state = 21}, - [3694] = {.lex_state = 73}, - [3695] = {.lex_state = 72}, + [3692] = {.lex_state = 17}, + [3693] = {.lex_state = 72}, + [3694] = {.lex_state = 72}, + [3695] = {.lex_state = 17}, [3696] = {.lex_state = 72}, - [3697] = {.lex_state = 17}, - [3698] = {.lex_state = 21}, + [3697] = {.lex_state = 72}, + [3698] = {.lex_state = 17}, [3699] = {.lex_state = 72}, - [3700] = {.lex_state = 72}, - [3701] = {.lex_state = 72}, - [3702] = {.lex_state = 21}, + [3700] = {.lex_state = 17}, + [3701] = {.lex_state = 17}, + [3702] = {.lex_state = 17}, [3703] = {.lex_state = 72}, - [3704] = {.lex_state = 72}, - [3705] = {.lex_state = 73}, + [3704] = {.lex_state = 17}, + [3705] = {.lex_state = 17}, [3706] = {.lex_state = 17}, [3707] = {.lex_state = 72}, - [3708] = {.lex_state = 72}, - [3709] = {.lex_state = 72}, - [3710] = {.lex_state = 72}, - [3711] = {.lex_state = 21}, - [3712] = {.lex_state = 72}, - [3713] = {.lex_state = 72}, + [3708] = {.lex_state = 17}, + [3709] = {.lex_state = 17}, + [3710] = {.lex_state = 17}, + [3711] = {.lex_state = 17}, + [3712] = {.lex_state = 17}, + [3713] = {.lex_state = 17}, [3714] = {.lex_state = 72}, - [3715] = {.lex_state = 167}, - [3716] = {.lex_state = 72}, - [3717] = {.lex_state = 72}, - [3718] = {.lex_state = 72}, - [3719] = {.lex_state = 72}, - [3720] = {.lex_state = 73}, + [3715] = {.lex_state = 72}, + [3716] = {.lex_state = 17}, + [3717] = {.lex_state = 17}, + [3718] = {.lex_state = 17}, + [3719] = {.lex_state = 17}, + [3720] = {.lex_state = 17}, [3721] = {.lex_state = 17}, - [3722] = {.lex_state = 72}, - [3723] = {.lex_state = 72}, - [3724] = {.lex_state = 72}, - [3725] = {.lex_state = 8}, - [3726] = {.lex_state = 21}, - [3727] = {.lex_state = 72}, - [3728] = {.lex_state = 72}, - [3729] = {.lex_state = 21}, - [3730] = {.lex_state = 72}, - [3731] = {.lex_state = 72}, - [3732] = {.lex_state = 21}, - [3733] = {.lex_state = 17}, + [3722] = {.lex_state = 17}, + [3723] = {.lex_state = 17}, + [3724] = {.lex_state = 17}, + [3725] = {.lex_state = 17}, + [3726] = {.lex_state = 17}, + [3727] = {.lex_state = 17}, + [3728] = {.lex_state = 17}, + [3729] = {.lex_state = 17}, + [3730] = {.lex_state = 17}, + [3731] = {.lex_state = 17}, + [3732] = {.lex_state = 17}, + [3733] = {.lex_state = 8}, [3734] = {.lex_state = 72}, - [3735] = {.lex_state = 21}, - [3736] = {.lex_state = 21}, + [3735] = {.lex_state = 72}, + [3736] = {.lex_state = 72}, [3737] = {.lex_state = 72}, - [3738] = {.lex_state = 72}, - [3739] = {.lex_state = 21}, - [3740] = {.lex_state = 21}, - [3741] = {.lex_state = 21}, + [3738] = {.lex_state = 17}, + [3739] = {.lex_state = 72}, + [3740] = {.lex_state = 31}, + [3741] = {.lex_state = 72}, [3742] = {.lex_state = 17}, - [3743] = {.lex_state = 17}, + [3743] = {.lex_state = 72}, [3744] = {.lex_state = 72}, [3745] = {.lex_state = 72}, [3746] = {.lex_state = 17}, [3747] = {.lex_state = 72}, - [3748] = {.lex_state = 73}, - [3749] = {.lex_state = 72, .external_lex_state = 7}, - [3750] = {.lex_state = 17}, + [3748] = {.lex_state = 72}, + [3749] = {.lex_state = 72}, + [3750] = {.lex_state = 72}, [3751] = {.lex_state = 72}, [3752] = {.lex_state = 72}, [3753] = {.lex_state = 17}, - [3754] = {.lex_state = 17}, + [3754] = {.lex_state = 72}, [3755] = {.lex_state = 72}, - [3756] = {.lex_state = 21}, + [3756] = {.lex_state = 72}, [3757] = {.lex_state = 72}, - [3758] = {.lex_state = 72}, - [3759] = {.lex_state = 72}, + [3758] = {.lex_state = 17}, + [3759] = {.lex_state = 17}, [3760] = {.lex_state = 72}, [3761] = {.lex_state = 72}, - [3762] = {.lex_state = 21}, + [3762] = {.lex_state = 72, .external_lex_state = 6}, [3763] = {.lex_state = 17}, - [3764] = {.lex_state = 17}, + [3764] = {.lex_state = 72}, [3765] = {.lex_state = 72}, [3766] = {.lex_state = 17}, - [3767] = {.lex_state = 17}, - [3768] = {.lex_state = 17}, - [3769] = {.lex_state = 17}, + [3767] = {.lex_state = 72}, + [3768] = {.lex_state = 23, .external_lex_state = 5}, + [3769] = {.lex_state = 23, .external_lex_state = 5}, [3770] = {.lex_state = 72}, - [3771] = {.lex_state = 17}, - [3772] = {.lex_state = 17}, + [3771] = {.lex_state = 72}, + [3772] = {.lex_state = 72}, [3773] = {.lex_state = 72}, - [3774] = {.lex_state = 17}, + [3774] = {.lex_state = 31}, [3775] = {.lex_state = 72}, - [3776] = {.lex_state = 17}, + [3776] = {.lex_state = 72}, [3777] = {.lex_state = 72}, - [3778] = {(TSStateId)(-1),}, - [3779] = {(TSStateId)(-1),}, - [3780] = {(TSStateId)(-1),}, - [3781] = {(TSStateId)(-1),}, - [3782] = {(TSStateId)(-1),}, - [3783] = {(TSStateId)(-1),}, - [3784] = {(TSStateId)(-1),}, + [3778] = {.lex_state = 72}, + [3779] = {.lex_state = 7}, + [3780] = {.lex_state = 7}, + [3781] = {.lex_state = 72}, + [3782] = {.lex_state = 72}, + [3783] = {.lex_state = 17}, + [3784] = {.lex_state = 72}, + [3785] = {.lex_state = 72}, + [3786] = {.lex_state = 72}, + [3787] = {.lex_state = 72}, + [3788] = {.lex_state = 72}, + [3789] = {.lex_state = 72}, + [3790] = {.lex_state = 72}, + [3791] = {.lex_state = 72}, + [3792] = {.lex_state = 17}, + [3793] = {.lex_state = 72}, + [3794] = {.lex_state = 72}, + [3795] = {.lex_state = 72}, + [3796] = {.lex_state = 72}, + [3797] = {.lex_state = 72}, + [3798] = {.lex_state = 17}, + [3799] = {.lex_state = 72}, + [3800] = {.lex_state = 72}, + [3801] = {.lex_state = 17}, + [3802] = {.lex_state = 17}, + [3803] = {.lex_state = 72}, + [3804] = {.lex_state = 31}, + [3805] = {.lex_state = 72}, + [3806] = {.lex_state = 72}, + [3807] = {.lex_state = 72}, + [3808] = {.lex_state = 8}, + [3809] = {.lex_state = 17}, + [3810] = {.lex_state = 72}, + [3811] = {.lex_state = 72}, + [3812] = {.lex_state = 72}, + [3813] = {.lex_state = 17}, + [3814] = {.lex_state = 72}, + [3815] = {.lex_state = 72}, + [3816] = {.lex_state = 72}, + [3817] = {.lex_state = 72}, + [3818] = {.lex_state = 17}, + [3819] = {.lex_state = 72}, + [3820] = {.lex_state = 17}, + [3821] = {.lex_state = 72}, + [3822] = {.lex_state = 17}, + [3823] = {.lex_state = 72}, + [3824] = {.lex_state = 17}, + [3825] = {.lex_state = 72}, + [3826] = {.lex_state = 72}, + [3827] = {.lex_state = 72}, + [3828] = {.lex_state = 17}, + [3829] = {.lex_state = 72}, + [3830] = {.lex_state = 17}, + [3831] = {.lex_state = 72}, + [3832] = {.lex_state = 72}, + [3833] = {.lex_state = 72}, + [3834] = {.lex_state = 72}, + [3835] = {.lex_state = 72}, + [3836] = {.lex_state = 72}, + [3837] = {.lex_state = 72}, + [3838] = {.lex_state = 72}, + [3839] = {.lex_state = 72}, + [3840] = {.lex_state = 72}, + [3841] = {.lex_state = 72}, + [3842] = {.lex_state = 72}, + [3843] = {.lex_state = 72}, + [3844] = {.lex_state = 72}, + [3845] = {.lex_state = 17}, + [3846] = {.lex_state = 72}, + [3847] = {.lex_state = 72}, + [3848] = {.lex_state = 72}, + [3849] = {.lex_state = 72}, + [3850] = {.lex_state = 72}, + [3851] = {.lex_state = 72}, + [3852] = {.lex_state = 72}, + [3853] = {.lex_state = 72}, + [3854] = {.lex_state = 72}, + [3855] = {.lex_state = 72}, + [3856] = {.lex_state = 72}, + [3857] = {.lex_state = 72}, + [3858] = {.lex_state = 17}, + [3859] = {.lex_state = 72}, + [3860] = {.lex_state = 72}, + [3861] = {.lex_state = 72}, + [3862] = {.lex_state = 72}, + [3863] = {.lex_state = 72}, + [3864] = {.lex_state = 72}, + [3865] = {.lex_state = 17}, + [3866] = {.lex_state = 72}, + [3867] = {.lex_state = 17}, + [3868] = {.lex_state = 17}, + [3869] = {.lex_state = 72}, + [3870] = {.lex_state = 72}, + [3871] = {.lex_state = 17}, + [3872] = {.lex_state = 72}, + [3873] = {.lex_state = 17}, + [3874] = {.lex_state = 17}, + [3875] = {.lex_state = 72}, + [3876] = {.lex_state = 72}, + [3877] = {.lex_state = 72}, + [3878] = {.lex_state = 17}, + [3879] = {.lex_state = 72}, + [3880] = {.lex_state = 17}, + [3881] = {.lex_state = 17}, + [3882] = {.lex_state = 17}, + [3883] = {.lex_state = 17}, + [3884] = {.lex_state = 17}, + [3885] = {.lex_state = 72}, + [3886] = {.lex_state = 17}, + [3887] = {.lex_state = 72}, + [3888] = {.lex_state = 23}, + [3889] = {.lex_state = 17}, + [3890] = {.lex_state = 72}, + [3891] = {.lex_state = 17}, + [3892] = {.lex_state = 72}, + [3893] = {.lex_state = 72}, + [3894] = {.lex_state = 17}, + [3895] = {.lex_state = 17}, + [3896] = {.lex_state = 72}, + [3897] = {.lex_state = 17}, + [3898] = {.lex_state = 72, .external_lex_state = 6}, + [3899] = {.lex_state = 72}, + [3900] = {.lex_state = 17}, + [3901] = {.lex_state = 17}, + [3902] = {.lex_state = 17}, + [3903] = {.lex_state = 17}, + [3904] = {.lex_state = 17}, + [3905] = {.lex_state = 72}, + [3906] = {.lex_state = 72}, + [3907] = {.lex_state = 72}, + [3908] = {.lex_state = 17}, + [3909] = {.lex_state = 72}, + [3910] = {.lex_state = 72}, + [3911] = {.lex_state = 72}, + [3912] = {.lex_state = 17}, + [3913] = {.lex_state = 72}, + [3914] = {.lex_state = 72}, + [3915] = {.lex_state = 17}, + [3916] = {.lex_state = 72}, + [3917] = {.lex_state = 72}, + [3918] = {.lex_state = 72}, + [3919] = {.lex_state = 17}, + [3920] = {.lex_state = 72}, + [3921] = {.lex_state = 72}, + [3922] = {.lex_state = 17}, + [3923] = {.lex_state = 72}, + [3924] = {.lex_state = 17}, + [3925] = {.lex_state = 72}, + [3926] = {.lex_state = 72}, + [3927] = {.lex_state = 72}, + [3928] = {.lex_state = 73}, + [3929] = {.lex_state = 72}, + [3930] = {.lex_state = 72}, + [3931] = {.lex_state = 72}, + [3932] = {.lex_state = 72}, + [3933] = {.lex_state = 72}, + [3934] = {.lex_state = 17}, + [3935] = {.lex_state = 72}, + [3936] = {.lex_state = 72}, + [3937] = {.lex_state = 72}, + [3938] = {.lex_state = 17}, + [3939] = {.lex_state = 17}, + [3940] = {.lex_state = 72}, + [3941] = {.lex_state = 17}, + [3942] = {.lex_state = 72}, + [3943] = {.lex_state = 72}, + [3944] = {.lex_state = 17}, + [3945] = {.lex_state = 72}, + [3946] = {.lex_state = 72}, + [3947] = {.lex_state = 17}, + [3948] = {.lex_state = 73}, + [3949] = {.lex_state = 17}, + [3950] = {.lex_state = 72}, + [3951] = {.lex_state = 72}, + [3952] = {.lex_state = 17}, + [3953] = {.lex_state = 17}, + [3954] = {.lex_state = 72}, + [3955] = {.lex_state = 17}, + [3956] = {.lex_state = 72}, + [3957] = {.lex_state = 17}, + [3958] = {.lex_state = 17}, + [3959] = {.lex_state = 17}, + [3960] = {.lex_state = 17}, + [3961] = {.lex_state = 17}, + [3962] = {.lex_state = 20}, + [3963] = {.lex_state = 20}, + [3964] = {.lex_state = 72}, + [3965] = {.lex_state = 20}, + [3966] = {.lex_state = 72}, + [3967] = {.lex_state = 72}, + [3968] = {.lex_state = 72, .external_lex_state = 7}, + [3969] = {.lex_state = 72, .external_lex_state = 7}, + [3970] = {.lex_state = 20}, + [3971] = {.lex_state = 72}, + [3972] = {.lex_state = 17}, + [3973] = {.lex_state = 72, .external_lex_state = 8}, + [3974] = {.lex_state = 72}, + [3975] = {.lex_state = 17}, + [3976] = {.lex_state = 17}, + [3977] = {.lex_state = 72, .external_lex_state = 9}, + [3978] = {.lex_state = 20}, + [3979] = {.lex_state = 17}, + [3980] = {.lex_state = 72}, + [3981] = {.lex_state = 17}, + [3982] = {.lex_state = 72}, + [3983] = {.lex_state = 72}, + [3984] = {.lex_state = 17}, + [3985] = {.lex_state = 17}, + [3986] = {.lex_state = 72}, + [3987] = {.lex_state = 17}, + [3988] = {.lex_state = 72}, + [3989] = {.lex_state = 73}, + [3990] = {.lex_state = 17}, + [3991] = {.lex_state = 72}, + [3992] = {.lex_state = 72}, + [3993] = {.lex_state = 72}, + [3994] = {.lex_state = 72}, + [3995] = {.lex_state = 17}, + [3996] = {.lex_state = 17}, + [3997] = {.lex_state = 72}, + [3998] = {.lex_state = 72}, + [3999] = {.lex_state = 72}, + [4000] = {.lex_state = 72}, + [4001] = {.lex_state = 17}, + [4002] = {.lex_state = 17}, + [4003] = {.lex_state = 72}, + [4004] = {.lex_state = 17}, + [4005] = {.lex_state = 72}, + [4006] = {.lex_state = 72}, + [4007] = {.lex_state = 72}, + [4008] = {.lex_state = 72}, + [4009] = {.lex_state = 72}, + [4010] = {.lex_state = 72}, + [4011] = {.lex_state = 17}, + [4012] = {.lex_state = 72}, + [4013] = {.lex_state = 17}, + [4014] = {.lex_state = 72}, + [4015] = {.lex_state = 17}, + [4016] = {.lex_state = 20}, + [4017] = {.lex_state = 72}, + [4018] = {.lex_state = 72}, + [4019] = {.lex_state = 17}, + [4020] = {.lex_state = 17}, + [4021] = {.lex_state = 17}, + [4022] = {.lex_state = 72}, + [4023] = {.lex_state = 72}, + [4024] = {.lex_state = 73}, + [4025] = {.lex_state = 17}, + [4026] = {.lex_state = 72}, + [4027] = {.lex_state = 72, .external_lex_state = 7}, + [4028] = {.lex_state = 17}, + [4029] = {.lex_state = 72}, + [4030] = {.lex_state = 72}, + [4031] = {.lex_state = 17}, + [4032] = {.lex_state = 72}, + [4033] = {.lex_state = 72}, + [4034] = {.lex_state = 72}, + [4035] = {.lex_state = 72}, + [4036] = {.lex_state = 17}, + [4037] = {.lex_state = 72}, + [4038] = {.lex_state = 72}, + [4039] = {.lex_state = 17}, + [4040] = {.lex_state = 72}, + [4041] = {.lex_state = 72}, + [4042] = {.lex_state = 72}, + [4043] = {.lex_state = 72}, + [4044] = {.lex_state = 72}, + [4045] = {.lex_state = 72}, + [4046] = {.lex_state = 72}, + [4047] = {.lex_state = 20}, + [4048] = {.lex_state = 72}, + [4049] = {.lex_state = 72}, + [4050] = {.lex_state = 23}, + [4051] = {.lex_state = 72}, + [4052] = {.lex_state = 72}, + [4053] = {.lex_state = 72}, + [4054] = {.lex_state = 72}, + [4055] = {.lex_state = 17}, + [4056] = {.lex_state = 72}, + [4057] = {.lex_state = 72}, + [4058] = {.lex_state = 72}, + [4059] = {.lex_state = 72}, + [4060] = {.lex_state = 72}, + [4061] = {.lex_state = 72}, + [4062] = {.lex_state = 73}, + [4063] = {.lex_state = 73}, + [4064] = {.lex_state = 17}, + [4065] = {.lex_state = 72}, + [4066] = {.lex_state = 72}, + [4067] = {.lex_state = 17}, + [4068] = {.lex_state = 72}, + [4069] = {.lex_state = 72}, + [4070] = {.lex_state = 72}, + [4071] = {.lex_state = 72}, + [4072] = {.lex_state = 17}, + [4073] = {.lex_state = 17}, + [4074] = {.lex_state = 72}, + [4075] = {.lex_state = 72}, + [4076] = {.lex_state = 72}, + [4077] = {.lex_state = 17}, + [4078] = {.lex_state = 72, .external_lex_state = 8}, + [4079] = {.lex_state = 72}, + [4080] = {.lex_state = 72}, + [4081] = {.lex_state = 72}, + [4082] = {.lex_state = 72}, + [4083] = {.lex_state = 72}, + [4084] = {.lex_state = 72}, + [4085] = {.lex_state = 72}, + [4086] = {.lex_state = 17}, + [4087] = {.lex_state = 72}, + [4088] = {.lex_state = 72, .external_lex_state = 9}, + [4089] = {.lex_state = 72}, + [4090] = {.lex_state = 72}, + [4091] = {.lex_state = 72}, + [4092] = {.lex_state = 72}, + [4093] = {.lex_state = 8}, + [4094] = {.lex_state = 17}, + [4095] = {.lex_state = 17}, + [4096] = {.lex_state = 72}, + [4097] = {.lex_state = 72}, + [4098] = {.lex_state = 72, .external_lex_state = 7}, + [4099] = {.lex_state = 17}, + [4100] = {.lex_state = 72}, + [4101] = {.lex_state = 17}, + [4102] = {.lex_state = 17}, + [4103] = {.lex_state = 20}, + [4104] = {.lex_state = 72}, + [4105] = {.lex_state = 72}, + [4106] = {.lex_state = 17}, + [4107] = {.lex_state = 72}, + [4108] = {.lex_state = 72}, + [4109] = {.lex_state = 72}, + [4110] = {.lex_state = 17}, + [4111] = {.lex_state = 72}, + [4112] = {.lex_state = 72}, + [4113] = {.lex_state = 72}, + [4114] = {.lex_state = 20}, + [4115] = {.lex_state = 72}, + [4116] = {.lex_state = 17}, + [4117] = {.lex_state = 72, .external_lex_state = 8}, + [4118] = {.lex_state = 8}, + [4119] = {.lex_state = 72}, + [4120] = {.lex_state = 72}, + [4121] = {.lex_state = 72}, + [4122] = {.lex_state = 72}, + [4123] = {.lex_state = 20}, + [4124] = {.lex_state = 72}, + [4125] = {.lex_state = 72, .external_lex_state = 9}, + [4126] = {.lex_state = 72}, + [4127] = {.lex_state = 72}, + [4128] = {.lex_state = 17}, + [4129] = {.lex_state = 72, .external_lex_state = 8}, + [4130] = {.lex_state = 72}, + [4131] = {.lex_state = 72}, + [4132] = {.lex_state = 72}, + [4133] = {.lex_state = 72}, + [4134] = {.lex_state = 72}, + [4135] = {.lex_state = 17}, + [4136] = {.lex_state = 17}, + [4137] = {.lex_state = 72}, + [4138] = {.lex_state = 72, .external_lex_state = 8}, + [4139] = {.lex_state = 72}, + [4140] = {.lex_state = 17}, + [4141] = {.lex_state = 72}, + [4142] = {.lex_state = 72}, + [4143] = {.lex_state = 72}, + [4144] = {.lex_state = 72}, + [4145] = {.lex_state = 72, .external_lex_state = 8}, + [4146] = {.lex_state = 72}, + [4147] = {.lex_state = 72}, + [4148] = {.lex_state = 72}, + [4149] = {.lex_state = 72}, + [4150] = {.lex_state = 72}, + [4151] = {.lex_state = 72}, + [4152] = {.lex_state = 72}, + [4153] = {.lex_state = 72}, + [4154] = {.lex_state = 72}, + [4155] = {.lex_state = 72}, + [4156] = {.lex_state = 72}, + [4157] = {.lex_state = 72}, + [4158] = {.lex_state = 17}, + [4159] = {.lex_state = 17}, + [4160] = {.lex_state = 72}, + [4161] = {.lex_state = 20}, + [4162] = {.lex_state = 72}, + [4163] = {.lex_state = 17}, + [4164] = {.lex_state = 17}, + [4165] = {.lex_state = 72, .external_lex_state = 9}, + [4166] = {.lex_state = 17}, + [4167] = {.lex_state = 72}, + [4168] = {.lex_state = 72}, + [4169] = {.lex_state = 20}, + [4170] = {.lex_state = 20}, + [4171] = {.lex_state = 72}, + [4172] = {.lex_state = 72}, + [4173] = {.lex_state = 72}, + [4174] = {.lex_state = 72}, + [4175] = {.lex_state = 20}, + [4176] = {.lex_state = 72}, + [4177] = {.lex_state = 72}, + [4178] = {.lex_state = 20}, + [4179] = {.lex_state = 72}, + [4180] = {.lex_state = 72}, + [4181] = {.lex_state = 72, .external_lex_state = 7}, + [4182] = {.lex_state = 72}, + [4183] = {.lex_state = 72}, + [4184] = {.lex_state = 72}, + [4185] = {.lex_state = 72}, + [4186] = {.lex_state = 72}, + [4187] = {.lex_state = 72}, + [4188] = {.lex_state = 72}, + [4189] = {.lex_state = 20}, + [4190] = {.lex_state = 72}, + [4191] = {.lex_state = 20}, + [4192] = {.lex_state = 72}, + [4193] = {.lex_state = 72}, + [4194] = {.lex_state = 72}, + [4195] = {.lex_state = 20}, + [4196] = {.lex_state = 72}, + [4197] = {.lex_state = 72}, + [4198] = {.lex_state = 72}, + [4199] = {.lex_state = 20}, + [4200] = {.lex_state = 72}, + [4201] = {.lex_state = 72}, + [4202] = {.lex_state = 23}, + [4203] = {.lex_state = 20}, + [4204] = {.lex_state = 72}, + [4205] = {.lex_state = 20}, + [4206] = {.lex_state = 72}, + [4207] = {.lex_state = 17}, + [4208] = {.lex_state = 72}, + [4209] = {.lex_state = 72}, + [4210] = {.lex_state = 72}, + [4211] = {.lex_state = 72}, + [4212] = {.lex_state = 72}, + [4213] = {.lex_state = 72}, + [4214] = {.lex_state = 72}, + [4215] = {.lex_state = 72}, + [4216] = {.lex_state = 17}, + [4217] = {.lex_state = 20}, + [4218] = {.lex_state = 72}, + [4219] = {.lex_state = 8}, + [4220] = {.lex_state = 72, .external_lex_state = 9}, + [4221] = {.lex_state = 17}, + [4222] = {.lex_state = 17}, + [4223] = {.lex_state = 167}, + [4224] = {.lex_state = 72}, + [4225] = {.lex_state = 72}, + [4226] = {.lex_state = 20}, + [4227] = {.lex_state = 72}, + [4228] = {.lex_state = 72}, + [4229] = {.lex_state = 17}, + [4230] = {.lex_state = 72}, + [4231] = {.lex_state = 72}, + [4232] = {.lex_state = 72}, + [4233] = {.lex_state = 20}, + [4234] = {.lex_state = 72}, + [4235] = {.lex_state = 17}, + [4236] = {.lex_state = 72}, + [4237] = {.lex_state = 72}, + [4238] = {.lex_state = 72}, + [4239] = {.lex_state = 20}, + [4240] = {.lex_state = 72}, + [4241] = {.lex_state = 20}, + [4242] = {.lex_state = 72}, + [4243] = {.lex_state = 72}, + [4244] = {.lex_state = 20}, + [4245] = {.lex_state = 17}, + [4246] = {.lex_state = 72}, + [4247] = {.lex_state = 20}, + [4248] = {.lex_state = 72}, + [4249] = {.lex_state = 20}, + [4250] = {.lex_state = 72}, + [4251] = {.lex_state = 72}, + [4252] = {.lex_state = 20}, + [4253] = {.lex_state = 20}, + [4254] = {.lex_state = 20}, + [4255] = {.lex_state = 17}, + [4256] = {.lex_state = 72}, + [4257] = {.lex_state = 17}, + [4258] = {.lex_state = 72}, + [4259] = {.lex_state = 72}, + [4260] = {.lex_state = 72}, + [4261] = {.lex_state = 17}, + [4262] = {.lex_state = 72}, + [4263] = {.lex_state = 17}, + [4264] = {.lex_state = 17}, + [4265] = {.lex_state = 17}, + [4266] = {.lex_state = 17}, + [4267] = {.lex_state = 17}, + [4268] = {.lex_state = 17}, + [4269] = {.lex_state = 17}, + [4270] = {.lex_state = 72}, + [4271] = {.lex_state = 72}, + [4272] = {.lex_state = 72}, + [4273] = {.lex_state = 17}, + [4274] = {.lex_state = 72}, + [4275] = {.lex_state = 72}, + [4276] = {.lex_state = 73}, + [4277] = {.lex_state = 17}, + [4278] = {.lex_state = 72}, + [4279] = {.lex_state = 72}, + [4280] = {.lex_state = 72}, + [4281] = {.lex_state = 72}, + [4282] = {.lex_state = 72}, + [4283] = {.lex_state = 17}, + [4284] = {.lex_state = 17}, + [4285] = {.lex_state = 17}, + [4286] = {.lex_state = 72, .external_lex_state = 7}, + [4287] = {.lex_state = 17}, + [4288] = {.lex_state = 72}, + [4289] = {.lex_state = 72}, + [4290] = {.lex_state = 72}, + [4291] = {.lex_state = 17}, + [4292] = {.lex_state = 72}, + [4293] = {.lex_state = 72}, + [4294] = {.lex_state = 73}, + [4295] = {.lex_state = 17}, + [4296] = {.lex_state = 17}, + [4297] = {.lex_state = 72}, + [4298] = {.lex_state = 17}, + [4299] = {.lex_state = 72}, + [4300] = {(TSStateId)(-1),}, + [4301] = {(TSStateId)(-1),}, + [4302] = {(TSStateId)(-1),}, + [4303] = {(TSStateId)(-1),}, + [4304] = {(TSStateId)(-1),}, + [4305] = {(TSStateId)(-1),}, + [4306] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14329,83 +15849,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(3483), - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_source_file] = STATE(4213), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2208), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14485,89 +16006,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(2)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2119), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [ts_builtin_sym_end] = ACTIONS(119), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [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(119), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14639,89 +16161,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(3)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1897), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2208), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [ts_builtin_sym_end] = ACTIONS(123), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(123), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14793,83 +16316,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(4)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2208), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [ts_builtin_sym_end] = ACTIONS(119), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [ts_builtin_sym_end] = ACTIONS(123), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14947,82 +16471,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(5)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1898), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1986), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15101,89 +16626,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(6)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1910), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2208), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(127), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15255,89 +16781,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(7)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2208), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [ts_builtin_sym_end] = ACTIONS(129), + [sym_identifier] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(134), + [anon_sym_macro_rules_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(146), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_u8] = ACTIONS(152), + [anon_sym_i8] = ACTIONS(152), + [anon_sym_u16] = ACTIONS(152), + [anon_sym_i16] = ACTIONS(152), + [anon_sym_u32] = ACTIONS(152), + [anon_sym_i32] = ACTIONS(152), + [anon_sym_u64] = ACTIONS(152), + [anon_sym_i64] = ACTIONS(152), + [anon_sym_u128] = ACTIONS(152), + [anon_sym_i128] = ACTIONS(152), + [anon_sym_isize] = ACTIONS(152), + [anon_sym_usize] = ACTIONS(152), + [anon_sym_f32] = ACTIONS(152), + [anon_sym_f64] = ACTIONS(152), + [anon_sym_bool] = ACTIONS(152), + [anon_sym_str] = ACTIONS(152), + [anon_sym_char] = ACTIONS(152), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(161), + [anon_sym_DOT_DOT] = ACTIONS(164), + [anon_sym_COLON_COLON] = ACTIONS(167), + [anon_sym_POUND] = ACTIONS(170), + [anon_sym_SQUOTE] = ACTIONS(173), + [anon_sym_async] = ACTIONS(176), + [anon_sym_break] = ACTIONS(179), + [anon_sym_const] = ACTIONS(182), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_default] = ACTIONS(188), + [anon_sym_enum] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(194), + [anon_sym_for] = ACTIONS(197), + [anon_sym_gen] = ACTIONS(200), + [anon_sym_if] = ACTIONS(203), + [anon_sym_impl] = ACTIONS(206), + [anon_sym_let] = ACTIONS(209), + [anon_sym_loop] = ACTIONS(212), + [anon_sym_match] = ACTIONS(215), + [anon_sym_mod] = ACTIONS(218), + [anon_sym_pub] = ACTIONS(221), + [anon_sym_return] = ACTIONS(224), + [anon_sym_static] = ACTIONS(227), + [anon_sym_struct] = ACTIONS(230), + [anon_sym_trait] = ACTIONS(233), + [anon_sym_type] = ACTIONS(236), + [anon_sym_union] = ACTIONS(239), + [anon_sym_unsafe] = ACTIONS(242), + [anon_sym_use] = ACTIONS(245), + [anon_sym_while] = ACTIONS(248), + [anon_sym_extern] = ACTIONS(251), + [anon_sym_yield] = ACTIONS(254), + [anon_sym_move] = ACTIONS(257), + [anon_sym_try] = ACTIONS(260), + [sym_integer_literal] = ACTIONS(263), + [aux_sym_string_literal_token1] = ACTIONS(266), + [sym_char_literal] = ACTIONS(263), + [anon_sym_true] = ACTIONS(269), + [anon_sym_false] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(272), + [sym_super] = ACTIONS(275), + [sym_crate] = ACTIONS(278), + [sym_metavariable] = ACTIONS(281), + [sym__raw_string_literal_start] = ACTIONS(284), + [sym_float_literal] = ACTIONS(263), + }, + [STATE(8)] = { + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2053), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(8), + [sym_block_comment] = STATE(8), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [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(287), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15408,237 +17090,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(8)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(8), - [sym_block_comment] = STATE(8), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [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), - }, [STATE(9)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1874), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1993), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15717,82 +17246,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(10)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2123), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15871,82 +17401,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(11)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1772), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2127), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16025,82 +17556,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(12)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2208), + [sym_macro_invocation] = STATE(431), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(134), + [anon_sym_macro_rules_BANG] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(146), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_u8] = ACTIONS(152), + [anon_sym_i8] = ACTIONS(152), + [anon_sym_u16] = ACTIONS(152), + [anon_sym_i16] = ACTIONS(152), + [anon_sym_u32] = ACTIONS(152), + [anon_sym_i32] = ACTIONS(152), + [anon_sym_u64] = ACTIONS(152), + [anon_sym_i64] = ACTIONS(152), + [anon_sym_u128] = ACTIONS(152), + [anon_sym_i128] = ACTIONS(152), + [anon_sym_isize] = ACTIONS(152), + [anon_sym_usize] = ACTIONS(152), + [anon_sym_f32] = ACTIONS(152), + [anon_sym_f64] = ACTIONS(152), + [anon_sym_bool] = ACTIONS(152), + [anon_sym_str] = ACTIONS(152), + [anon_sym_char] = ACTIONS(152), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(155), + [anon_sym_PIPE] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(161), + [anon_sym_DOT_DOT] = ACTIONS(164), + [anon_sym_COLON_COLON] = ACTIONS(167), + [anon_sym_POUND] = ACTIONS(170), + [anon_sym_SQUOTE] = ACTIONS(173), + [anon_sym_async] = ACTIONS(176), + [anon_sym_break] = ACTIONS(179), + [anon_sym_const] = ACTIONS(182), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_default] = ACTIONS(188), + [anon_sym_enum] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(194), + [anon_sym_for] = ACTIONS(197), + [anon_sym_gen] = ACTIONS(200), + [anon_sym_if] = ACTIONS(203), + [anon_sym_impl] = ACTIONS(206), + [anon_sym_let] = ACTIONS(209), + [anon_sym_loop] = ACTIONS(212), + [anon_sym_match] = ACTIONS(215), + [anon_sym_mod] = ACTIONS(218), + [anon_sym_pub] = ACTIONS(221), + [anon_sym_return] = ACTIONS(224), + [anon_sym_static] = ACTIONS(227), + [anon_sym_struct] = ACTIONS(230), + [anon_sym_trait] = ACTIONS(233), + [anon_sym_type] = ACTIONS(236), + [anon_sym_union] = ACTIONS(239), + [anon_sym_unsafe] = ACTIONS(242), + [anon_sym_use] = ACTIONS(245), + [anon_sym_while] = ACTIONS(248), + [anon_sym_extern] = ACTIONS(251), + [anon_sym_yield] = ACTIONS(254), + [anon_sym_move] = ACTIONS(257), + [anon_sym_try] = ACTIONS(260), + [sym_integer_literal] = ACTIONS(263), + [aux_sym_string_literal_token1] = ACTIONS(266), + [sym_char_literal] = ACTIONS(263), + [anon_sym_true] = ACTIONS(269), + [anon_sym_false] = ACTIONS(269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(272), + [sym_super] = ACTIONS(275), + [sym_crate] = ACTIONS(278), + [sym_metavariable] = ACTIONS(281), + [sym__raw_string_literal_start] = ACTIONS(284), + [sym_float_literal] = ACTIONS(263), + }, + [STATE(13)] = { + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2133), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(13), + [sym_block_comment] = STATE(13), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16178,83 +17865,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(13)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(13), - [sym_block_comment] = STATE(13), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(14)] = { + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2137), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(14), + [sym_block_comment] = STATE(14), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16332,237 +18020,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(14)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(423), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(14), - [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [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), - }, [STATE(15)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2147), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16641,82 +18176,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(16)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2153), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), - [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16795,82 +18331,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(17)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2178), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16949,82 +18486,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(18)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1877), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2156), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), - [aux_sym_source_file_repeat1] = STATE(19), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17103,82 +18641,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(19)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1878), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2159), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17257,82 +18796,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(20)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1879), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2161), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17411,82 +18951,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(21)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1881), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2164), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17565,82 +19106,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(22)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1884), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2165), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), - [aux_sym_source_file_repeat1] = STATE(23), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17719,82 +19261,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(23)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1885), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2167), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(24), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17873,82 +19416,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(24)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1887), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2168), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(25), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18027,82 +19571,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(25)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2169), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(26), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18181,82 +19726,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(26)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1889), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2170), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18335,82 +19881,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(27)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1890), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2171), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18489,82 +20036,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(28)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1891), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2172), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(29), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18643,82 +20191,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(29)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1892), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2173), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(30), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18797,82 +20346,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(30)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1893), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2174), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), - [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18951,82 +20501,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(31)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1894), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2175), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(32), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19105,82 +20656,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(32)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1895), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2176), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(33), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19259,82 +20811,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(33)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1896), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2177), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(17), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19413,82 +20966,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(34)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1859), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(677), + [sym_empty_statement] = STATE(678), + [sym_expression_statement] = STATE(678), + [sym_macro_definition] = STATE(678), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(678), + [sym_mod_item] = STATE(678), + [sym_foreign_mod_item] = STATE(678), + [sym_struct_item] = STATE(678), + [sym_union_item] = STATE(678), + [sym_enum_item] = STATE(678), + [sym_extern_crate_declaration] = STATE(678), + [sym_const_item] = STATE(678), + [sym_static_item] = STATE(678), + [sym_type_item] = STATE(678), + [sym_function_item] = STATE(678), + [sym_function_signature_item] = STATE(678), + [sym_function_modifiers] = STATE(4207), + [sym_impl_item] = STATE(678), + [sym_trait_item] = STATE(678), + [sym_associated_type] = STATE(678), + [sym_let_declaration] = STATE(678), + [sym_use_declaration] = STATE(678), + [sym_extern_modifier] = STATE(2522), + [sym_visibility_modifier] = STATE(2288), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2155), + [sym_macro_invocation] = STATE(408), + [sym_scoped_identifier] = STATE(1854), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(416), + [sym_match_expression] = STATE(416), + [sym_while_expression] = STATE(416), + [sym_loop_expression] = STATE(416), + [sym_for_expression] = STATE(416), + [sym_const_block] = STATE(416), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4189), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(416), + [sym_async_block] = STATE(416), + [sym_gen_block] = STATE(416), + [sym_try_block] = STATE(416), + [sym_block] = STATE(416), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(18), + [aux_sym_mod_item_repeat1] = STATE(2251), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19567,53 +21121,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(35)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1568), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1829), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), [sym_identifier] = ACTIONS(339), @@ -19715,65 +21269,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(36)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1555), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1813), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(375), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_RBRACK] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_RBRACE] = ACTIONS(375), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(377), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19792,13 +21346,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(377), [anon_sym_SLASH] = ACTIONS(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), [anon_sym_AMP_AMP] = ACTIONS(375), [anon_sym_PIPE_PIPE] = ACTIONS(375), [anon_sym_LT_LT] = ACTIONS(377), @@ -19817,11 +21371,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(375), [anon_sym_BANG_EQ] = ACTIONS(375), [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(377), [anon_sym_GT_EQ] = ACTIONS(375), [anon_sym_LT_EQ] = ACTIONS(375), [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(377), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), @@ -19862,66 +21416,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(37)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1563), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1821), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_SEMI] = ACTIONS(379), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(379), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(387), + [anon_sym_RBRACK] = ACTIONS(379), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), [anon_sym_STAR] = ACTIONS(349), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19940,41 +21494,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(349), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(381), - [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(383), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(379), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -19990,7 +21544,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(389), + [anon_sym_else] = ACTIONS(381), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20009,58 +21563,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(38)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1573), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1819), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(391), [anon_sym_LBRACK] = ACTIONS(391), [anon_sym_RBRACK] = ACTIONS(391), @@ -20120,7 +21674,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(395), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -20156,66 +21710,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(39)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1571), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(35), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_RBRACK] = ACTIONS(397), + [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_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(395), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20233,42 +21787,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(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [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(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(397), + [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_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_as] = ACTIONS(397), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20284,7 +21838,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(399), + [anon_sym_else] = ACTIONS(397), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20303,66 +21857,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(40)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1571), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1819), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_RBRACK] = ACTIONS(397), + [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_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20380,42 +21934,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(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [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(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(397), + [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_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20431,7 +21985,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(399), + [anon_sym_else] = ACTIONS(393), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20450,66 +22004,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(41)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1813), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_RPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_RBRACK] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_RPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_RBRACK] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20527,42 +22081,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(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(349), - [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_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [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(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20578,7 +22132,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(403), + [anon_sym_else] = ACTIONS(377), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20597,65 +22151,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(42)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1838), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(401), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_RBRACE] = ACTIONS(401), [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(349), [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -20674,13 +22228,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(403), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_SLASH] = ACTIONS(403), [anon_sym_PERCENT] = ACTIONS(403), [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(385), [anon_sym_AMP_AMP] = ACTIONS(401), [anon_sym_PIPE_PIPE] = ACTIONS(401), [anon_sym_LT_LT] = ACTIONS(403), @@ -20699,11 +22253,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(403), + [anon_sym_LT] = ACTIONS(387), [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] = ACTIONS(389), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [anon_sym_DOT_DOT_EQ] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(401), @@ -20744,53 +22298,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(43)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1788), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2075), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), [sym_identifier] = ACTIONS(405), @@ -20887,63 +22441,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(44)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2007), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_EQ_GT] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -20961,41 +22515,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(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), [anon_sym_BANG] = ACTIONS(413), - [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_AMP] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21029,63 +22583,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(45)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2090), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_EQ_GT] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21103,41 +22657,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(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [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(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [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(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [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(399), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21171,197 +22725,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(46)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1723), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2000), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), - [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(469), - [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(37), - [anon_sym_as] = ACTIONS(347), - [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), - }, - [STATE(47)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1750), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(43), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(47), - [sym_block_comment] = STATE(47), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(391), [anon_sym_LBRACK] = ACTIONS(391), @@ -21420,7 +22832,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(493), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -21454,63 +22866,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(48)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1776), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(48), - [sym_block_comment] = STATE(48), + [STATE(47)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2090), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(47), + [sym_block_comment] = STATE(47), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(407), [anon_sym_EQ_GT] = ACTIONS(375), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(377), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), @@ -21529,13 +22941,13 @@ 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_DASH] = ACTIONS(377), [anon_sym_SLASH] = ACTIONS(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), [anon_sym_AMP_AMP] = ACTIONS(375), [anon_sym_PIPE_PIPE] = ACTIONS(375), [anon_sym_LT_LT] = ACTIONS(377), @@ -21554,11 +22966,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(375), [anon_sym_BANG_EQ] = ACTIONS(375), [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(377), [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] = ACTIONS(377), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(415), @@ -21596,64 +23008,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), }, - [STATE(49)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1783), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(49), - [sym_block_comment] = STATE(49), + [STATE(48)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2006), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [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(465), + [anon_sym_LBRACK] = ACTIONS(467), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_EQ_GT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21672,40 +23084,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), [anon_sym_DASH] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(381), - [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(383), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(469), + [anon_sym_PIPE] = ACTIONS(385), + [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(387), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(471), + [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(389), + [anon_sym_as] = ACTIONS(403), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21738,206 +23150,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), }, - [STATE(50)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1665), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(50), - [sym_block_comment] = STATE(50), - [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(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(471), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_as] = ACTIONS(347), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [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(475), - [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(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), - }, - [STATE(51)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(51), - [sym_block_comment] = STATE(51), + [STATE(49)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2001), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(43), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(49), + [sym_block_comment] = STATE(49), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(395), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_EQ_GT] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(395), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21955,41 +23225,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(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [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(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [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(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_as] = ACTIONS(397), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -22022,64 +23292,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), }, - [STATE(52)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(52), - [sym_block_comment] = STATE(52), + [STATE(50)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2000), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(50), + [sym_block_comment] = STATE(50), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_EQ_GT] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -22097,41 +23367,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(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), [anon_sym_BANG] = ACTIONS(413), - [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_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(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -22164,132 +23434,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(53)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(53), - [sym_block_comment] = STATE(53), - [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), + [STATE(51)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2019), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(51), + [sym_block_comment] = STATE(51), + [sym_identifier] = ACTIONS(475), + [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(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(479), + [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(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(347), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(487), [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_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22298,127 +23569,128 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(54)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1647), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(54), - [sym_block_comment] = STATE(54), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [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(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), + [STATE(52)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1902), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(52), + [sym_block_comment] = STATE(52), + [sym_identifier] = ACTIONS(475), + [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(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [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(399), - [anon_sym_PIPE] = ACTIONS(399), - [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(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_as] = ACTIONS(399), + [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(481), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_as] = ACTIONS(347), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -22426,7 +23698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -22439,92 +23711,233 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(55)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(46), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(55), - [sym_block_comment] = STATE(55), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(391), + [STATE(53)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1942), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(52), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(53), + [sym_block_comment] = STATE(53), + [sym_identifier] = ACTIONS(475), + [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(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [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(481), + [anon_sym_SQUOTE] = ACTIONS(397), + [anon_sym_as] = ACTIONS(397), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(485), + [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(485), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(54)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2148), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(54), + [sym_block_comment] = STATE(54), + [sym_identifier] = ACTIONS(475), + [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(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_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), [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_BANG] = ACTIONS(479), [anon_sym_AMP] = ACTIONS(393), [anon_sym_PIPE] = ACTIONS(393), [anon_sym_AMP_AMP] = ACTIONS(391), @@ -22552,26 +23965,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(487), [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_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22580,94 +23993,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(56)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(56), - [sym_block_comment] = STATE(56), - [sym_identifier] = ACTIONS(465), + [STATE(55)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2034), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(55), + [sym_block_comment] = STATE(55), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(377), [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(469), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(377), [anon_sym_SLASH] = ACTIONS(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), [anon_sym_AMP_AMP] = ACTIONS(375), [anon_sym_PIPE_PIPE] = ACTIONS(375), [anon_sym_LT_LT] = ACTIONS(377), @@ -22686,33 +24099,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(375), [anon_sym_BANG_EQ] = ACTIONS(375), [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(377), [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] = ACTIONS(377), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(487), [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_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22721,139 +24134,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(57)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(57), - [sym_block_comment] = STATE(57), - [sym_identifier] = ACTIONS(465), + [STATE(56)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2152), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(56), + [sym_block_comment] = STATE(56), + [sym_identifier] = ACTIONS(475), [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_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(487), [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_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22862,139 +24275,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(58)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1647), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(58), - [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [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(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [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(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(471), + [STATE(57)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2149), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(51), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(57), + [sym_block_comment] = STATE(57), + [sym_identifier] = ACTIONS(475), + [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(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(479), + [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(481), [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_as] = ACTIONS(399), + [anon_sym_as] = ACTIONS(397), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(487), [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(475), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23003,127 +24416,127 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(59)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(59), - [sym_block_comment] = STATE(59), - [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), + [STATE(58)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1941), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(58), + [sym_block_comment] = STATE(58), + [sym_identifier] = ACTIONS(475), + [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(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [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(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(403), - [anon_sym_as] = ACTIONS(403), + [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(481), + [anon_sym_SQUOTE] = ACTIONS(393), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -23131,7 +24544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -23144,139 +24557,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(60)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(60), - [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [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(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [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(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [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), + [STATE(59)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(59), + [sym_block_comment] = STATE(59), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(503), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [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(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(377), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(509), [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_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [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), @@ -23285,94 +24698,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(61)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(61), - [sym_block_comment] = STATE(61), - [sym_identifier] = ACTIONS(465), + [STATE(60)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1943), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(60), + [sym_block_comment] = STATE(60), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(503), [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_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(503), [anon_sym_SLASH] = ACTIONS(403), [anon_sym_PERCENT] = ACTIONS(403), [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_PIPE] = ACTIONS(385), [anon_sym_AMP_AMP] = ACTIONS(401), [anon_sym_PIPE_PIPE] = ACTIONS(401), [anon_sym_LT_LT] = ACTIONS(403), @@ -23391,21 +24804,21 @@ 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(403), + [anon_sym_LT] = ACTIONS(387), [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] = ACTIONS(525), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -23413,7 +24826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -23426,139 +24839,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(62)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(62), - [sym_block_comment] = STATE(62), - [sym_identifier] = ACTIONS(465), + [STATE(61)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1944), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(61), + [sym_block_comment] = STATE(61), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [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(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [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(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(503), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(503), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(509), [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_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [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), @@ -23567,139 +24980,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(63)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(63), - [sym_block_comment] = STATE(63), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(469), - [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(469), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(381), - [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(383), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(471), + [STATE(62)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2148), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(62), + [sym_block_comment] = STATE(62), + [sym_identifier] = ACTIONS(475), + [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(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(479), + [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(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(487), [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_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23708,139 +25121,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(64)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1650), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [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(389), - [anon_sym_STAR] = ACTIONS(503), - [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(503), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(381), - [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(383), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(471), + [STATE(63)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2034), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(63), + [sym_block_comment] = STATE(63), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [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(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(487), [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(475), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23849,87 +25262,87 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(65)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(50), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(65), - [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(391), + [STATE(64)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1941), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(64), + [sym_block_comment] = STATE(64), + [sym_identifier] = ACTIONS(475), + [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(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_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), [anon_sym_DASH] = ACTIONS(393), [anon_sym_SLASH] = ACTIONS(393), [anon_sym_PERCENT] = ACTIONS(393), @@ -23962,14 +25375,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(393), [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -23977,7 +25390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -23990,94 +25403,235 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(65)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2151), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(65), + [sym_block_comment] = STATE(65), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_PIPE] = ACTIONS(385), + [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(387), + [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_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(403), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(483), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(485), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(487), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(66)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(503), + [anon_sym_STAR] = ACTIONS(377), [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(503), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(377), [anon_sym_SLASH] = ACTIONS(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), [anon_sym_AMP_AMP] = ACTIONS(375), [anon_sym_PIPE_PIPE] = ACTIONS(375), [anon_sym_LT_LT] = ACTIONS(377), @@ -24096,21 +25650,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(375), [anon_sym_BANG_EQ] = ACTIONS(375), [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(377), [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(377), [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_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(377), [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -24118,7 +25672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -24131,26 +25685,26 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(67)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(146), + [sym_token_tree_pattern] = STATE(185), + [sym_token_binding_pattern] = STATE(185), + [sym_token_repetition_pattern] = STATE(185), + [sym__literal] = STATE(185), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [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), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(527), [anon_sym_SEMI] = ACTIONS(530), [anon_sym_LPAREN] = ACTIONS(533), @@ -24265,24 +25819,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(550), }, [STATE(68)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(146), + [sym_token_tree_pattern] = STATE(185), + [sym_token_binding_pattern] = STATE(185), + [sym_token_repetition_pattern] = STATE(185), + [sym__literal] = STATE(185), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [aux_sym_token_tree_pattern_repeat1] = STATE(75), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym_token_tree_pattern_repeat1] = STATE(77), + [aux_sym__non_special_token_repeat1] = STATE(136), [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_LBRACE] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_RBRACE] = ACTIONS(575), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -24389,24 +25943,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(69)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(146), + [sym_token_tree_pattern] = STATE(185), + [sym_token_binding_pattern] = STATE(185), + [sym_token_repetition_pattern] = STATE(185), + [sym__literal] = STATE(185), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [aux_sym_token_tree_pattern_repeat1] = STATE(76), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym_token_tree_pattern_repeat1] = STATE(73), + [aux_sym__non_special_token_repeat1] = STATE(136), [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_LBRACE] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_RBRACK] = ACTIONS(591), + [anon_sym_LBRACE] = ACTIONS(573), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -24513,24 +26067,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(70)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(146), + [sym_token_tree_pattern] = STATE(185), + [sym_token_binding_pattern] = STATE(185), + [sym_token_repetition_pattern] = STATE(185), + [sym__literal] = STATE(185), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [aux_sym_token_tree_pattern_repeat1] = STATE(77), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym_token_tree_pattern_repeat1] = STATE(74), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_RBRACE] = ACTIONS(591), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -24637,24 +26191,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(71)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(146), + [sym_token_tree_pattern] = STATE(185), + [sym_token_binding_pattern] = STATE(185), + [sym_token_repetition_pattern] = STATE(185), + [sym__literal] = STATE(185), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), - [aux_sym_token_tree_pattern_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym_token_tree_pattern_repeat1] = STATE(72), + [aux_sym__non_special_token_repeat1] = STATE(136), [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_LBRACE] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(573), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -24761,24 +26315,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(72)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(146), + [sym_token_tree_pattern] = STATE(185), + [sym_token_binding_pattern] = STATE(185), + [sym_token_repetition_pattern] = STATE(185), + [sym__literal] = STATE(185), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), - [aux_sym_token_tree_pattern_repeat1] = STATE(80), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(136), [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_LBRACE] = ACTIONS(575), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(573), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -24885,24 +26439,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(73)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(146), + [sym_token_tree_pattern] = STATE(185), + [sym_token_binding_pattern] = STATE(185), + [sym_token_repetition_pattern] = STATE(185), + [sym__literal] = STATE(185), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [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(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [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_LBRACE] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_RBRACK] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(573), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -25009,23 +26563,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(74)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(146), + [sym_token_tree_pattern] = STATE(185), + [sym_token_binding_pattern] = STATE(185), + [sym_token_repetition_pattern] = STATE(185), + [sym__literal] = STATE(185), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(573), [anon_sym_RBRACE] = ACTIONS(593), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), @@ -25133,24 +26687,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(75)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(146), + [sym_token_tree_pattern] = STATE(185), + [sym_token_binding_pattern] = STATE(185), + [sym_token_repetition_pattern] = STATE(185), + [sym__literal] = STATE(185), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [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_LBRACE] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(573), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -25257,24 +26811,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(76)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(146), + [sym_token_tree_pattern] = STATE(185), + [sym_token_binding_pattern] = STATE(185), + [sym_token_repetition_pattern] = STATE(185), + [sym__literal] = STATE(185), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [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(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [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_RBRACK] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_LBRACE] = ACTIONS(573), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -25381,23 +26935,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(77)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(146), + [sym_token_tree_pattern] = STATE(185), + [sym_token_binding_pattern] = STATE(185), + [sym_token_repetition_pattern] = STATE(185), + [sym__literal] = STATE(185), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [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), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(573), [anon_sym_RBRACE] = ACTIONS(595), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), @@ -25505,16 +27059,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(78)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), [sym_line_comment] = STATE(78), [sym_block_comment] = STATE(78), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(597), [anon_sym_SEMI] = ACTIONS(600), @@ -25629,24 +27183,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(620), }, [STATE(79)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(146), + [sym_token_tree_pattern] = STATE(185), + [sym_token_binding_pattern] = STATE(185), + [sym_token_repetition_pattern] = STATE(185), + [sym__literal] = STATE(185), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), - [aux_sym_token_tree_pattern_repeat1] = STATE(81), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym_token_tree_pattern_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_RPAREN] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(573), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -25753,24 +27307,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(80)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(146), + [sym_token_tree_pattern] = STATE(185), + [sym_token_binding_pattern] = STATE(185), + [sym_token_repetition_pattern] = STATE(185), + [sym__literal] = STATE(185), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [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(137), + [aux_sym_token_tree_pattern_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(136), [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_LBRACE] = ACTIONS(575), + [anon_sym_RPAREN] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(573), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -25877,24 +27431,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(81)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), + [aux_sym_token_tree_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_RPAREN] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_RBRACK] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(643), + [anon_sym_EQ_GT] = ACTIONS(637), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_u8] = ACTIONS(634), + [anon_sym_i8] = ACTIONS(634), + [anon_sym_u16] = ACTIONS(634), + [anon_sym_i16] = ACTIONS(634), + [anon_sym_u32] = ACTIONS(634), + [anon_sym_i32] = ACTIONS(634), + [anon_sym_u64] = ACTIONS(634), + [anon_sym_i64] = ACTIONS(634), + [anon_sym_u128] = ACTIONS(634), + [anon_sym_i128] = ACTIONS(634), + [anon_sym_isize] = ACTIONS(634), + [anon_sym_usize] = ACTIONS(634), + [anon_sym_f32] = ACTIONS(634), + [anon_sym_f64] = ACTIONS(634), + [anon_sym_bool] = ACTIONS(634), + [anon_sym_str] = ACTIONS(634), + [anon_sym_char] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(651), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_LT_LT] = ACTIONS(651), + [anon_sym_GT_GT] = ACTIONS(651), + [anon_sym_PLUS_EQ] = ACTIONS(637), + [anon_sym_DASH_EQ] = ACTIONS(637), + [anon_sym_STAR_EQ] = ACTIONS(637), + [anon_sym_SLASH_EQ] = ACTIONS(637), + [anon_sym_PERCENT_EQ] = ACTIONS(637), + [anon_sym_CARET_EQ] = ACTIONS(637), + [anon_sym_AMP_EQ] = ACTIONS(637), + [anon_sym_PIPE_EQ] = ACTIONS(637), + [anon_sym_LT_LT_EQ] = ACTIONS(637), + [anon_sym_GT_GT_EQ] = ACTIONS(637), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(637), + [anon_sym__] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_DOT_DOT] = ACTIONS(651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(637), + [anon_sym_DOT_DOT_EQ] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(637), + [anon_sym_COLON_COLON] = ACTIONS(637), + [anon_sym_DASH_GT] = ACTIONS(637), + [anon_sym_POUND] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(634), + [anon_sym_as] = ACTIONS(634), + [anon_sym_async] = ACTIONS(634), + [anon_sym_await] = ACTIONS(634), + [anon_sym_break] = ACTIONS(634), + [anon_sym_const] = ACTIONS(634), + [anon_sym_continue] = ACTIONS(634), + [anon_sym_default] = ACTIONS(634), + [anon_sym_enum] = ACTIONS(634), + [anon_sym_fn] = ACTIONS(634), + [anon_sym_for] = ACTIONS(634), + [anon_sym_gen] = ACTIONS(634), + [anon_sym_if] = ACTIONS(634), + [anon_sym_impl] = ACTIONS(634), + [anon_sym_let] = ACTIONS(634), + [anon_sym_loop] = ACTIONS(634), + [anon_sym_match] = ACTIONS(634), + [anon_sym_mod] = ACTIONS(634), + [anon_sym_pub] = ACTIONS(634), + [anon_sym_return] = ACTIONS(634), + [anon_sym_static] = ACTIONS(634), + [anon_sym_struct] = ACTIONS(634), + [anon_sym_trait] = ACTIONS(634), + [anon_sym_type] = ACTIONS(634), + [anon_sym_union] = ACTIONS(634), + [anon_sym_unsafe] = ACTIONS(634), + [anon_sym_use] = ACTIONS(634), + [anon_sym_where] = ACTIONS(634), + [anon_sym_while] = ACTIONS(634), + [sym_mutable_specifier] = ACTIONS(634), + [sym_integer_literal] = ACTIONS(657), + [aux_sym_string_literal_token1] = ACTIONS(660), + [sym_char_literal] = ACTIONS(657), + [anon_sym_true] = ACTIONS(663), + [anon_sym_false] = ACTIONS(663), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(634), + [sym_super] = ACTIONS(634), + [sym_crate] = ACTIONS(634), + [sym_metavariable] = ACTIONS(666), + [sym__raw_string_literal_start] = ACTIONS(669), + [sym_float_literal] = ACTIONS(657), + }, + [STATE(82)] = { + [sym__token_pattern] = STATE(146), + [sym_token_tree_pattern] = STATE(185), + [sym_token_binding_pattern] = STATE(185), + [sym_token_repetition_pattern] = STATE(185), + [sym__literal] = STATE(185), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), + [sym_line_comment] = STATE(82), + [sym_block_comment] = STATE(82), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_RPAREN] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(573), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -26000,149 +27678,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), }, - [STATE(82)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), - [sym_line_comment] = STATE(82), - [sym_block_comment] = STATE(82), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(645), - [anon_sym_LBRACK] = ACTIONS(647), - [anon_sym_RBRACK] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(645), - [anon_sym_EQ_GT] = ACTIONS(639), - [anon_sym_COLON] = ACTIONS(653), - [anon_sym_DOLLAR] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(639), - [anon_sym_u8] = ACTIONS(636), - [anon_sym_i8] = ACTIONS(636), - [anon_sym_u16] = ACTIONS(636), - [anon_sym_i16] = ACTIONS(636), - [anon_sym_u32] = ACTIONS(636), - [anon_sym_i32] = ACTIONS(636), - [anon_sym_u64] = ACTIONS(636), - [anon_sym_i64] = ACTIONS(636), - [anon_sym_u128] = ACTIONS(636), - [anon_sym_i128] = ACTIONS(636), - [anon_sym_isize] = ACTIONS(636), - [anon_sym_usize] = ACTIONS(636), - [anon_sym_f32] = ACTIONS(636), - [anon_sym_f64] = ACTIONS(636), - [anon_sym_bool] = ACTIONS(636), - [anon_sym_str] = ACTIONS(636), - [anon_sym_char] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_PERCENT] = ACTIONS(653), - [anon_sym_CARET] = ACTIONS(653), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_AMP_AMP] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_PLUS_EQ] = ACTIONS(639), - [anon_sym_DASH_EQ] = ACTIONS(639), - [anon_sym_STAR_EQ] = ACTIONS(639), - [anon_sym_SLASH_EQ] = ACTIONS(639), - [anon_sym_PERCENT_EQ] = ACTIONS(639), - [anon_sym_CARET_EQ] = ACTIONS(639), - [anon_sym_AMP_EQ] = ACTIONS(639), - [anon_sym_PIPE_EQ] = ACTIONS(639), - [anon_sym_LT_LT_EQ] = ACTIONS(639), - [anon_sym_GT_GT_EQ] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(653), - [anon_sym_EQ_EQ] = ACTIONS(639), - [anon_sym_BANG_EQ] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_GT_EQ] = ACTIONS(639), - [anon_sym_LT_EQ] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(639), - [anon_sym__] = ACTIONS(653), - [anon_sym_DOT] = ACTIONS(653), - [anon_sym_DOT_DOT] = ACTIONS(653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(639), - [anon_sym_COMMA] = ACTIONS(639), - [anon_sym_COLON_COLON] = ACTIONS(639), - [anon_sym_DASH_GT] = ACTIONS(639), - [anon_sym_POUND] = ACTIONS(639), - [anon_sym_SQUOTE] = ACTIONS(636), - [anon_sym_as] = ACTIONS(636), - [anon_sym_async] = ACTIONS(636), - [anon_sym_await] = ACTIONS(636), - [anon_sym_break] = ACTIONS(636), - [anon_sym_const] = ACTIONS(636), - [anon_sym_continue] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_enum] = ACTIONS(636), - [anon_sym_fn] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_gen] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_impl] = ACTIONS(636), - [anon_sym_let] = ACTIONS(636), - [anon_sym_loop] = ACTIONS(636), - [anon_sym_match] = ACTIONS(636), - [anon_sym_mod] = ACTIONS(636), - [anon_sym_pub] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_static] = ACTIONS(636), - [anon_sym_struct] = ACTIONS(636), - [anon_sym_trait] = ACTIONS(636), - [anon_sym_type] = ACTIONS(636), - [anon_sym_union] = ACTIONS(636), - [anon_sym_unsafe] = ACTIONS(636), - [anon_sym_use] = ACTIONS(636), - [anon_sym_where] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [sym_mutable_specifier] = ACTIONS(636), - [sym_integer_literal] = ACTIONS(659), - [aux_sym_string_literal_token1] = ACTIONS(662), - [sym_char_literal] = ACTIONS(659), - [anon_sym_true] = ACTIONS(665), - [anon_sym_false] = ACTIONS(665), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(636), - [sym_super] = ACTIONS(636), - [sym_crate] = ACTIONS(636), - [sym_metavariable] = ACTIONS(668), - [sym__raw_string_literal_start] = ACTIONS(671), - [sym_float_literal] = ACTIONS(659), - }, [STATE(83)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym__token_pattern] = STATE(146), + [sym_token_tree_pattern] = STATE(185), + [sym_token_binding_pattern] = STATE(185), + [sym_token_repetition_pattern] = STATE(185), + [sym__literal] = STATE(185), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [aux_sym_token_tree_pattern_repeat1] = STATE(74), - [aux_sym__non_special_token_repeat1] = STATE(137), + [aux_sym_token_tree_pattern_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(591), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_RBRACK] = ACTIONS(575), + [anon_sym_LBRACE] = ACTIONS(573), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -26249,23 +27803,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(84)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(78), [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), @@ -26371,22 +27925,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(85)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), [aux_sym_token_tree_repeat1] = STATE(88), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_RBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_RBRACE] = ACTIONS(706), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(708), @@ -26493,22 +28047,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(86)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym_token_tree_repeat1] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym_token_tree_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(712), [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(708), @@ -26615,22 +28169,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(87)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym_token_tree_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(712), [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_RBRACK] = ACTIONS(712), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(708), @@ -26737,22 +28291,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(88)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym_token_tree_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_RBRACK] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_RBRACE] = ACTIONS(712), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(708), @@ -26859,22 +28413,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(89)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(89), [sym_block_comment] = STATE(89), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym_token_tree_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(712), + [anon_sym_RBRACK] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(708), @@ -26981,145 +28535,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(90)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [aux_sym_token_tree_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_RBRACE] = ACTIONS(714), - [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_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [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(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [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(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), }, [STATE(91)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(95), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_RPAREN] = ACTIONS(716), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [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), @@ -27225,23 +28779,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(92)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(96), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [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), @@ -27347,23 +28901,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(93)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(97), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(682), + [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), @@ -27469,23 +29023,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(94)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(94), [sym_block_comment] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(98), + [aux_sym_token_tree_repeat1] = STATE(99), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [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(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [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(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(95)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(95), + [sym_block_comment] = STATE(95), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [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(718), + [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), @@ -27590,24 +29266,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), }, - [STATE(95)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(95), - [sym_block_comment] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(184), + [STATE(96)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(96), + [sym_block_comment] = STATE(96), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(714), - [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), @@ -27712,24 +29388,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), }, - [STATE(96)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(96), - [sym_block_comment] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(184), + [STATE(97)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(97), + [sym_block_comment] = STATE(97), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(78), [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_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), @@ -27834,24 +29510,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), }, - [STATE(97)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(97), - [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), + [STATE(98)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(98), + [sym_block_comment] = STATE(98), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(100), [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_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), @@ -27956,24 +29632,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), }, - [STATE(98)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(98), - [sym_block_comment] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(184), + [STATE(99)] = { + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), + [sym_line_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [aux_sym_token_tree_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [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(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [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(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(100)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(100), + [sym_block_comment] = STATE(100), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(78), [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(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), @@ -28078,24 +29876,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), }, - [STATE(99)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(99), - [sym_block_comment] = STATE(99), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), + [STATE(101)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(101), + [sym_block_comment] = STATE(101), + [aux_sym__non_special_token_repeat1] = STATE(181), + [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_RBRACK] = ACTIONS(714), - [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), @@ -28200,24 +29998,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), }, - [STATE(100)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(100), - [sym_block_comment] = STATE(100), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), + [STATE(102)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(102), + [sym_block_comment] = STATE(102), + [aux_sym__non_special_token_repeat1] = STATE(181), + [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(722), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [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), @@ -28322,24 +30120,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), }, - [STATE(101)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(101), - [sym_block_comment] = STATE(101), - [aux_sym__non_special_token_repeat1] = STATE(184), + [STATE(103)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(103), + [sym_block_comment] = STATE(103), + [aux_sym__non_special_token_repeat1] = STATE(181), + [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(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), + [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), + }, + [STATE(104)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(104), + [sym_block_comment] = STATE(104), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(730), + [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(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), + }, + [STATE(105)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(722), - [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), @@ -28444,24 +30486,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), }, - [STATE(102)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(102), - [sym_block_comment] = STATE(102), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(106), + [STATE(106)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(106), + [sym_block_comment] = STATE(106), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [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(732), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -28566,24 +30608,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), }, - [STATE(103)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(103), - [sym_block_comment] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(107), + [STATE(107)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(107), + [sym_block_comment] = STATE(107), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [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(732), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -28688,145 +30730,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(104)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(104), - [sym_block_comment] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(184), - [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_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(724), - [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), - }, - [STATE(105)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), - [sym_line_comment] = STATE(105), - [sym_block_comment] = STATE(105), - [aux_sym_token_tree_repeat1] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(136), + [STATE(108)] = { + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), + [sym_line_comment] = STATE(108), + [sym_block_comment] = STATE(108), + [aux_sym_token_tree_repeat1] = STATE(87), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(726), [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_RBRACK] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(708), @@ -28932,24 +30852,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), }, - [STATE(106)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(106), - [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), + [STATE(109)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(109), + [sym_block_comment] = STATE(109), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(125), [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_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(730), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29054,24 +30974,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), }, - [STATE(107)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(107), - [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(184), + [STATE(110)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(110), + [sym_block_comment] = STATE(110), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(78), [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(726), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29176,390 +31096,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), }, - [STATE(108)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), - [sym_line_comment] = STATE(108), - [sym_block_comment] = STATE(108), - [aux_sym_token_tree_repeat1] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [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(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [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(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [STATE(109)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), - [sym_line_comment] = STATE(109), - [sym_block_comment] = STATE(109), - [aux_sym_token_tree_repeat1] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_RBRACK] = ACTIONS(726), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [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(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [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(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [STATE(110)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), - [sym_line_comment] = STATE(110), - [sym_block_comment] = STATE(110), - [aux_sym_token_tree_repeat1] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(726), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [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(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [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(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, [STATE(111)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(115), [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(722), + [anon_sym_RPAREN] = ACTIONS(734), + [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), @@ -29665,23 +31219,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(112)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), [sym_line_comment] = STATE(112), [sym_block_comment] = STATE(112), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(116), [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_RBRACK] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29787,23 +31341,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(113)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), [sym_line_comment] = STATE(113), [sym_block_comment] = STATE(113), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(117), [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(734), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29909,23 +31463,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(114)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), [sym_line_comment] = STATE(114), [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(118), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [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(726), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -30031,145 +31585,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(115)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [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(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [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(181), + [aux_sym_delim_token_tree_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [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), + [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(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [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), }, [STATE(116)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), [sym_line_comment] = STATE(116), [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(78), [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(736), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -30275,23 +31829,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(117)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), [sym_line_comment] = STATE(117), [sym_block_comment] = STATE(117), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(78), [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_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), @@ -30397,23 +31951,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(118)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), [sym_line_comment] = STATE(118), [sym_block_comment] = STATE(118), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(110), [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_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), @@ -30519,22 +32073,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(119)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym_token_tree_repeat1] = STATE(131), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_RBRACK] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(704), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(708), @@ -30641,267 +32195,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(120)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [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(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [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(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [STATE(121)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), - [sym_line_comment] = STATE(121), - [sym_block_comment] = STATE(121), - [aux_sym_token_tree_repeat1] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [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(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [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(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [STATE(122)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(122), - [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(126), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(740), + [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), @@ -31006,24 +32316,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), }, - [STATE(123)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(123), - [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(127), + [STATE(121)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(121), + [sym_block_comment] = STATE(121), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(84), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(742), + [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), @@ -31128,24 +32438,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), }, - [STATE(124)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(124), - [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(84), + [STATE(122)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(122), + [sym_block_comment] = STATE(122), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(126), [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(738), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(742), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -31250,24 +32560,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), }, - [STATE(125)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(125), - [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(99), + [STATE(123)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(123), + [sym_block_comment] = STATE(123), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(127), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(716), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(742), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -31372,24 +32682,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), }, - [STATE(126)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(126), - [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(184), + [STATE(124)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(124), + [sym_block_comment] = STATE(124), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(78), [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_RBRACK] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -31494,24 +32804,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), }, - [STATE(127)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(127), - [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(184), + [STATE(125)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(125), + [sym_block_comment] = STATE(125), + [aux_sym__non_special_token_repeat1] = STATE(181), [aux_sym_delim_token_tree_repeat1] = STATE(78), [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_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(740), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -31616,24 +32926,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), }, - [STATE(128)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(128), - [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(100), + [STATE(126)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(126), + [sym_block_comment] = STATE(126), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [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_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), + [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), + }, + [STATE(127)] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), + [sym_line_comment] = STATE(127), + [sym_block_comment] = STATE(127), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [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), @@ -31738,23 +33170,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, + [STATE(128)] = { + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), + [sym_line_comment] = STATE(128), + [sym_block_comment] = STATE(128), + [aux_sym_token_tree_repeat1] = STATE(89), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_RBRACK] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [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(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [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(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, [STATE(129)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym_token_tree_repeat1] = STATE(90), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(698), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(742), [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_RBRACE] = ACTIONS(738), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(708), @@ -31861,23 +33415,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [STATE(130)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(90), + [aux_sym__non_special_token_repeat1] = STATE(181), + [aux_sym_delim_token_tree_repeat1] = STATE(114), [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(716), + [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), @@ -31983,267 +33537,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(131)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [aux_sym__non_special_token_repeat1] = STATE(184), - [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(740), - [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), + [aux_sym_token_tree_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(714), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [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(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [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(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), }, [STATE(132)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(177), + [sym_token_repetition] = STATE(177), + [sym__literal] = STATE(177), + [sym_string_literal] = STATE(164), + [sym_raw_string_literal] = STATE(164), + [sym_boolean_literal] = STATE(164), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(111), - [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_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), + [aux_sym_token_tree_repeat1] = STATE(86), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [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(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [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(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), }, [STATE(133)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(201), + [sym_string_literal] = STATE(207), + [sym_raw_string_literal] = STATE(207), + [sym_boolean_literal] = STATE(207), [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(181), + [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_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -32349,57 +33903,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(134)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1870), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [aux_sym_enum_variant_list_repeat1] = STATE(138), + [aux_sym_mod_item_repeat1] = STATE(138), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -32466,57 +34020,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(135)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1655), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1947), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [aux_sym_mod_item_repeat1] = STATE(1203), [sym_identifier] = ACTIONS(750), [anon_sym_LPAREN] = ACTIONS(753), [anon_sym_LBRACK] = ACTIONS(756), @@ -32585,7 +34139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(136)] = { [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), - [aux_sym__non_special_token_repeat1] = STATE(143), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(863), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(865), @@ -32702,21 +34256,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(137)] = { [sym_line_comment] = STATE(137), [sym_block_comment] = STATE(137), - [aux_sym__non_special_token_repeat1] = STATE(143), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_RBRACK] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_EQ_GT] = ACTIONS(869), + [anon_sym_COLON] = ACTIONS(874), [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_QMARK] = ACTIONS(869), [anon_sym_u8] = ACTIONS(867), [anon_sym_i8] = ACTIONS(867), [anon_sym_u16] = ACTIONS(867), @@ -32734,44 +34288,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(867), [anon_sym_str] = ACTIONS(867), [anon_sym_char] = ACTIONS(867), - [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_DASH] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_CARET] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(869), + [anon_sym_PIPE_PIPE] = ACTIONS(869), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_PLUS_EQ] = ACTIONS(869), + [anon_sym_DASH_EQ] = ACTIONS(869), + [anon_sym_STAR_EQ] = ACTIONS(869), + [anon_sym_SLASH_EQ] = ACTIONS(869), + [anon_sym_PERCENT_EQ] = ACTIONS(869), + [anon_sym_CARET_EQ] = ACTIONS(869), + [anon_sym_AMP_EQ] = ACTIONS(869), + [anon_sym_PIPE_EQ] = ACTIONS(869), + [anon_sym_LT_LT_EQ] = ACTIONS(869), + [anon_sym_GT_GT_EQ] = ACTIONS(869), + [anon_sym_EQ] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(869), + [anon_sym_BANG_EQ] = ACTIONS(869), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(869), + [anon_sym_LT_EQ] = ACTIONS(869), + [anon_sym_AT] = ACTIONS(869), + [anon_sym__] = ACTIONS(874), + [anon_sym_DOT] = ACTIONS(874), + [anon_sym_DOT_DOT] = ACTIONS(874), + [anon_sym_DOT_DOT_DOT] = ACTIONS(869), + [anon_sym_DOT_DOT_EQ] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_COLON_COLON] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(869), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(867), [anon_sym_as] = ACTIONS(867), [anon_sym_async] = ACTIONS(867), @@ -32802,9 +34356,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(867), [anon_sym_while] = ACTIONS(867), [sym_mutable_specifier] = ACTIONS(867), - [sym_integer_literal] = ACTIONS(869), - [aux_sym_string_literal_token1] = ACTIONS(869), - [sym_char_literal] = ACTIONS(869), + [sym_integer_literal] = ACTIONS(872), + [aux_sym_string_literal_token1] = ACTIONS(872), + [sym_char_literal] = ACTIONS(872), [anon_sym_true] = ACTIONS(867), [anon_sym_false] = ACTIONS(867), [anon_sym_SLASH_SLASH] = ACTIONS(103), @@ -32812,62 +34366,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(867), [sym_super] = ACTIONS(867), [sym_crate] = ACTIONS(867), - [sym_metavariable] = ACTIONS(869), - [sym__raw_string_literal_start] = ACTIONS(869), - [sym_float_literal] = ACTIONS(869), + [sym_metavariable] = ACTIONS(872), + [sym__raw_string_literal_start] = ACTIONS(872), + [sym_float_literal] = ACTIONS(872), }, [STATE(138)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1674), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1952), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(138), [sym_block_comment] = STATE(138), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [aux_sym_mod_item_repeat1] = STATE(1203), [sym_identifier] = ACTIONS(750), [anon_sym_LPAREN] = ACTIONS(753), [anon_sym_LBRACK] = ACTIONS(756), @@ -32934,61 +34488,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(842), }, [STATE(139)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1619), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1867), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(139), [sym_block_comment] = STATE(139), - [aux_sym_enum_variant_list_repeat1] = STATE(140), + [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(871), + [anon_sym_RBRACK] = ACTIONS(877), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33014,7 +34568,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(873), + [anon_sym_COMMA] = ACTIONS(879), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33051,61 +34605,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(140)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1639), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1890), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(140), [sym_block_comment] = STATE(140), - [aux_sym_enum_variant_list_repeat1] = STATE(135), + [aux_sym_mod_item_repeat1] = STATE(142), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(875), + [anon_sym_RBRACK] = ACTIONS(881), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33131,7 +34685,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(877), + [anon_sym_COMMA] = ACTIONS(883), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33168,61 +34722,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(141)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1654), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(141), [sym_block_comment] = STATE(141), - [aux_sym_enum_variant_list_repeat1] = STATE(213), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_RPAREN] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_RBRACK] = ACTIONS(887), + [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(885), + [anon_sym_i8] = ACTIONS(885), + [anon_sym_u16] = ACTIONS(885), + [anon_sym_i16] = ACTIONS(885), + [anon_sym_u32] = ACTIONS(885), + [anon_sym_i32] = ACTIONS(885), + [anon_sym_u64] = ACTIONS(885), + [anon_sym_i64] = ACTIONS(885), + [anon_sym_u128] = ACTIONS(885), + [anon_sym_i128] = ACTIONS(885), + [anon_sym_isize] = ACTIONS(885), + [anon_sym_usize] = ACTIONS(885), + [anon_sym_f32] = ACTIONS(885), + [anon_sym_f64] = ACTIONS(885), + [anon_sym_bool] = ACTIONS(885), + [anon_sym_str] = ACTIONS(885), + [anon_sym_char] = ACTIONS(885), + [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(885), + [anon_sym_as] = ACTIONS(885), + [anon_sym_async] = ACTIONS(885), + [anon_sym_await] = ACTIONS(885), + [anon_sym_break] = ACTIONS(885), + [anon_sym_const] = ACTIONS(885), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_default] = ACTIONS(885), + [anon_sym_enum] = ACTIONS(885), + [anon_sym_fn] = ACTIONS(885), + [anon_sym_for] = ACTIONS(885), + [anon_sym_gen] = ACTIONS(885), + [anon_sym_if] = ACTIONS(885), + [anon_sym_impl] = ACTIONS(885), + [anon_sym_let] = ACTIONS(885), + [anon_sym_loop] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_mod] = ACTIONS(885), + [anon_sym_pub] = ACTIONS(885), + [anon_sym_return] = ACTIONS(885), + [anon_sym_static] = ACTIONS(885), + [anon_sym_struct] = ACTIONS(885), + [anon_sym_trait] = ACTIONS(885), + [anon_sym_type] = ACTIONS(885), + [anon_sym_union] = ACTIONS(885), + [anon_sym_unsafe] = ACTIONS(885), + [anon_sym_use] = ACTIONS(885), + [anon_sym_where] = ACTIONS(885), + [anon_sym_while] = ACTIONS(885), + [sym_mutable_specifier] = ACTIONS(885), + [sym_integer_literal] = ACTIONS(887), + [aux_sym_string_literal_token1] = ACTIONS(887), + [sym_char_literal] = ACTIONS(887), + [anon_sym_true] = ACTIONS(885), + [anon_sym_false] = ACTIONS(885), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(885), + [sym_super] = ACTIONS(885), + [sym_crate] = ACTIONS(885), + [sym_metavariable] = ACTIONS(887), + [sym__raw_string_literal_start] = ACTIONS(887), + [sym_float_literal] = ACTIONS(887), + }, + [STATE(142)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1891), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), + [aux_sym_mod_item_repeat1] = STATE(135), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(879), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(889), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33248,7 +34919,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(881), + [anon_sym_COMMA] = ACTIONS(891), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33284,61 +34955,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), }, - [STATE(142)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1681), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(142), - [sym_block_comment] = STATE(142), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [STATE(143)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1946), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [aux_sym_mod_item_repeat1] = STATE(206), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(883), + [anon_sym_RPAREN] = ACTIONS(893), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -33365,7 +35036,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(885), + [anon_sym_COMMA] = ACTIONS(895), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33401,179 +35072,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), }, - [STATE(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), - }, [STATE(144)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1625), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1926), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(144), [sym_block_comment] = STATE(144), - [aux_sym_enum_variant_list_repeat1] = STATE(134), + [aux_sym_mod_item_repeat1] = STATE(213), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(897), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(897), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33636,61 +35190,409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(145)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(145), [sym_block_comment] = STATE(145), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_RBRACK] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_COLON] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_QMARK] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(901), + [anon_sym_i8] = ACTIONS(901), + [anon_sym_u16] = ACTIONS(901), + [anon_sym_i16] = ACTIONS(901), + [anon_sym_u32] = ACTIONS(901), + [anon_sym_i32] = ACTIONS(901), + [anon_sym_u64] = ACTIONS(901), + [anon_sym_i64] = ACTIONS(901), + [anon_sym_u128] = ACTIONS(901), + [anon_sym_i128] = ACTIONS(901), + [anon_sym_isize] = ACTIONS(901), + [anon_sym_usize] = ACTIONS(901), + [anon_sym_f32] = ACTIONS(901), + [anon_sym_f64] = ACTIONS(901), + [anon_sym_bool] = ACTIONS(901), + [anon_sym_str] = ACTIONS(901), + [anon_sym_char] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_PERCENT] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_AMP_AMP] = ACTIONS(903), + [anon_sym_PIPE_PIPE] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_PLUS_EQ] = ACTIONS(903), + [anon_sym_DASH_EQ] = ACTIONS(903), + [anon_sym_STAR_EQ] = ACTIONS(903), + [anon_sym_SLASH_EQ] = ACTIONS(903), + [anon_sym_PERCENT_EQ] = ACTIONS(903), + [anon_sym_CARET_EQ] = ACTIONS(903), + [anon_sym_AMP_EQ] = ACTIONS(903), + [anon_sym_PIPE_EQ] = ACTIONS(903), + [anon_sym_LT_LT_EQ] = ACTIONS(903), + [anon_sym_GT_GT_EQ] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_AT] = ACTIONS(903), + [anon_sym__] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_COLON_COLON] = ACTIONS(903), + [anon_sym_DASH_GT] = ACTIONS(903), + [anon_sym_POUND] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_await] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [anon_sym_enum] = ACTIONS(901), + [anon_sym_fn] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_gen] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_impl] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_pub] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_static] = ACTIONS(901), + [anon_sym_struct] = ACTIONS(901), + [anon_sym_trait] = ACTIONS(901), + [anon_sym_type] = ACTIONS(901), + [anon_sym_union] = ACTIONS(901), + [anon_sym_unsafe] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [sym_mutable_specifier] = ACTIONS(901), + [sym_integer_literal] = ACTIONS(903), + [aux_sym_string_literal_token1] = ACTIONS(903), + [sym_char_literal] = ACTIONS(903), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(901), + [sym_super] = ACTIONS(901), + [sym_crate] = ACTIONS(901), + [sym_metavariable] = ACTIONS(903), + [sym__raw_string_literal_start] = ACTIONS(903), + [sym_float_literal] = ACTIONS(903), + }, + [STATE(146)] = { + [sym_line_comment] = STATE(146), + [sym_block_comment] = STATE(146), + [sym_identifier] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_RBRACK] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_EQ_GT] = ACTIONS(907), + [anon_sym_COLON] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_QMARK] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(905), + [anon_sym_i8] = ACTIONS(905), + [anon_sym_u16] = ACTIONS(905), + [anon_sym_i16] = ACTIONS(905), + [anon_sym_u32] = ACTIONS(905), + [anon_sym_i32] = ACTIONS(905), + [anon_sym_u64] = ACTIONS(905), + [anon_sym_i64] = ACTIONS(905), + [anon_sym_u128] = ACTIONS(905), + [anon_sym_i128] = ACTIONS(905), + [anon_sym_isize] = ACTIONS(905), + [anon_sym_usize] = ACTIONS(905), + [anon_sym_f32] = ACTIONS(905), + [anon_sym_f64] = ACTIONS(905), + [anon_sym_bool] = ACTIONS(905), + [anon_sym_str] = ACTIONS(905), + [anon_sym_char] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_SLASH] = ACTIONS(905), + [anon_sym_PERCENT] = ACTIONS(905), + [anon_sym_CARET] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [anon_sym_PLUS_EQ] = ACTIONS(907), + [anon_sym_DASH_EQ] = ACTIONS(907), + [anon_sym_STAR_EQ] = ACTIONS(907), + [anon_sym_SLASH_EQ] = ACTIONS(907), + [anon_sym_PERCENT_EQ] = ACTIONS(907), + [anon_sym_CARET_EQ] = ACTIONS(907), + [anon_sym_AMP_EQ] = ACTIONS(907), + [anon_sym_PIPE_EQ] = ACTIONS(907), + [anon_sym_LT_LT_EQ] = ACTIONS(907), + [anon_sym_GT_GT_EQ] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(905), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_BANG_EQ] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(907), + [anon_sym__] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(907), + [anon_sym_DASH_GT] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(907), + [anon_sym_SQUOTE] = ACTIONS(905), + [anon_sym_as] = ACTIONS(905), + [anon_sym_async] = ACTIONS(905), + [anon_sym_await] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_default] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [anon_sym_fn] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_gen] = ACTIONS(905), + [anon_sym_if] = ACTIONS(905), + [anon_sym_impl] = ACTIONS(905), + [anon_sym_let] = ACTIONS(905), + [anon_sym_loop] = ACTIONS(905), + [anon_sym_match] = ACTIONS(905), + [anon_sym_mod] = ACTIONS(905), + [anon_sym_pub] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_static] = ACTIONS(905), + [anon_sym_struct] = ACTIONS(905), + [anon_sym_trait] = ACTIONS(905), + [anon_sym_type] = ACTIONS(905), + [anon_sym_union] = ACTIONS(905), + [anon_sym_unsafe] = ACTIONS(905), + [anon_sym_use] = ACTIONS(905), + [anon_sym_where] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [sym_mutable_specifier] = ACTIONS(905), + [sym_integer_literal] = ACTIONS(907), + [aux_sym_string_literal_token1] = ACTIONS(907), + [sym_char_literal] = ACTIONS(907), + [anon_sym_true] = ACTIONS(905), + [anon_sym_false] = ACTIONS(905), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(905), + [sym_super] = ACTIONS(905), + [sym_crate] = ACTIONS(905), + [sym_metavariable] = ACTIONS(907), + [sym__raw_string_literal_start] = ACTIONS(907), + [sym_float_literal] = ACTIONS(907), + }, + [STATE(147)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1995), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_let_condition] = STATE(3511), + [sym__let_chain] = STATE(3520), + [sym__condition] = STATE(3029), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(147), + [sym_block_comment] = STATE(147), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), + [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(485), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(148)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(148), + [sym_block_comment] = STATE(148), + [aux_sym_mod_item_repeat1] = STATE(205), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(901), + [anon_sym_RBRACK] = ACTIONS(917), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33751,1338 +35653,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), }, - [STATE(146)] = { - [sym_line_comment] = STATE(146), - [sym_block_comment] = STATE(146), - [sym_identifier] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_RBRACK] = ACTIONS(905), - [anon_sym_LBRACE] = ACTIONS(905), - [anon_sym_RBRACE] = ACTIONS(905), - [anon_sym_EQ_GT] = ACTIONS(905), - [anon_sym_COLON] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_QMARK] = ACTIONS(905), - [anon_sym_u8] = ACTIONS(903), - [anon_sym_i8] = ACTIONS(903), - [anon_sym_u16] = ACTIONS(903), - [anon_sym_i16] = ACTIONS(903), - [anon_sym_u32] = ACTIONS(903), - [anon_sym_i32] = ACTIONS(903), - [anon_sym_u64] = ACTIONS(903), - [anon_sym_i64] = ACTIONS(903), - [anon_sym_u128] = ACTIONS(903), - [anon_sym_i128] = ACTIONS(903), - [anon_sym_isize] = ACTIONS(903), - [anon_sym_usize] = ACTIONS(903), - [anon_sym_f32] = ACTIONS(903), - [anon_sym_f64] = ACTIONS(903), - [anon_sym_bool] = ACTIONS(903), - [anon_sym_str] = ACTIONS(903), - [anon_sym_char] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_PERCENT] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(903), - [anon_sym_GT_GT] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(905), - [anon_sym_DASH_EQ] = ACTIONS(905), - [anon_sym_STAR_EQ] = ACTIONS(905), - [anon_sym_SLASH_EQ] = ACTIONS(905), - [anon_sym_PERCENT_EQ] = ACTIONS(905), - [anon_sym_CARET_EQ] = ACTIONS(905), - [anon_sym_AMP_EQ] = ACTIONS(905), - [anon_sym_PIPE_EQ] = ACTIONS(905), - [anon_sym_LT_LT_EQ] = ACTIONS(905), - [anon_sym_GT_GT_EQ] = ACTIONS(905), - [anon_sym_EQ] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(905), - [anon_sym_BANG_EQ] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(905), - [anon_sym_LT_EQ] = ACTIONS(905), - [anon_sym_AT] = ACTIONS(905), - [anon_sym__] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT_DOT] = ACTIONS(905), - [anon_sym_DOT_DOT_EQ] = ACTIONS(905), - [anon_sym_COMMA] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(905), - [anon_sym_DASH_GT] = ACTIONS(905), - [anon_sym_POUND] = ACTIONS(905), - [anon_sym_SQUOTE] = ACTIONS(903), - [anon_sym_as] = ACTIONS(903), - [anon_sym_async] = ACTIONS(903), - [anon_sym_await] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_default] = ACTIONS(903), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_fn] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_gen] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_impl] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_loop] = ACTIONS(903), - [anon_sym_match] = ACTIONS(903), - [anon_sym_mod] = ACTIONS(903), - [anon_sym_pub] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_static] = ACTIONS(903), - [anon_sym_struct] = ACTIONS(903), - [anon_sym_trait] = ACTIONS(903), - [anon_sym_type] = ACTIONS(903), - [anon_sym_union] = ACTIONS(903), - [anon_sym_unsafe] = ACTIONS(903), - [anon_sym_use] = ACTIONS(903), - [anon_sym_where] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [sym_mutable_specifier] = ACTIONS(903), - [sym_integer_literal] = ACTIONS(905), - [aux_sym_string_literal_token1] = ACTIONS(905), - [sym_char_literal] = ACTIONS(905), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(903), - [sym_super] = ACTIONS(903), - [sym_crate] = ACTIONS(903), - [sym_metavariable] = ACTIONS(905), - [sym__raw_string_literal_start] = ACTIONS(905), - [sym_float_literal] = ACTIONS(905), - }, - [STATE(147)] = { - [sym_line_comment] = STATE(147), - [sym_block_comment] = STATE(147), - [sym_identifier] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_RBRACK] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_EQ_GT] = ACTIONS(909), - [anon_sym_COLON] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(907), - [anon_sym_i8] = ACTIONS(907), - [anon_sym_u16] = ACTIONS(907), - [anon_sym_i16] = ACTIONS(907), - [anon_sym_u32] = ACTIONS(907), - [anon_sym_i32] = ACTIONS(907), - [anon_sym_u64] = ACTIONS(907), - [anon_sym_i64] = ACTIONS(907), - [anon_sym_u128] = ACTIONS(907), - [anon_sym_i128] = ACTIONS(907), - [anon_sym_isize] = ACTIONS(907), - [anon_sym_usize] = ACTIONS(907), - [anon_sym_f32] = ACTIONS(907), - [anon_sym_f64] = ACTIONS(907), - [anon_sym_bool] = ACTIONS(907), - [anon_sym_str] = ACTIONS(907), - [anon_sym_char] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(909), - [anon_sym_PIPE_PIPE] = ACTIONS(909), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS_EQ] = ACTIONS(909), - [anon_sym_DASH_EQ] = ACTIONS(909), - [anon_sym_STAR_EQ] = ACTIONS(909), - [anon_sym_SLASH_EQ] = ACTIONS(909), - [anon_sym_PERCENT_EQ] = ACTIONS(909), - [anon_sym_CARET_EQ] = ACTIONS(909), - [anon_sym_AMP_EQ] = ACTIONS(909), - [anon_sym_PIPE_EQ] = ACTIONS(909), - [anon_sym_LT_LT_EQ] = ACTIONS(909), - [anon_sym_GT_GT_EQ] = ACTIONS(909), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_AT] = ACTIONS(909), - [anon_sym__] = ACTIONS(907), - [anon_sym_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_COMMA] = ACTIONS(909), - [anon_sym_COLON_COLON] = ACTIONS(909), - [anon_sym_DASH_GT] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(907), - [anon_sym_as] = ACTIONS(907), - [anon_sym_async] = ACTIONS(907), - [anon_sym_await] = ACTIONS(907), - [anon_sym_break] = ACTIONS(907), - [anon_sym_const] = ACTIONS(907), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_default] = ACTIONS(907), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_fn] = ACTIONS(907), - [anon_sym_for] = ACTIONS(907), - [anon_sym_gen] = ACTIONS(907), - [anon_sym_if] = ACTIONS(907), - [anon_sym_impl] = ACTIONS(907), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(907), - [anon_sym_match] = ACTIONS(907), - [anon_sym_mod] = ACTIONS(907), - [anon_sym_pub] = ACTIONS(907), - [anon_sym_return] = ACTIONS(907), - [anon_sym_static] = ACTIONS(907), - [anon_sym_struct] = ACTIONS(907), - [anon_sym_trait] = ACTIONS(907), - [anon_sym_type] = ACTIONS(907), - [anon_sym_union] = ACTIONS(907), - [anon_sym_unsafe] = ACTIONS(907), - [anon_sym_use] = ACTIONS(907), - [anon_sym_where] = ACTIONS(907), - [anon_sym_while] = ACTIONS(907), - [sym_mutable_specifier] = ACTIONS(907), - [sym_integer_literal] = ACTIONS(909), - [aux_sym_string_literal_token1] = ACTIONS(909), - [sym_char_literal] = ACTIONS(909), - [anon_sym_true] = ACTIONS(907), - [anon_sym_false] = ACTIONS(907), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(907), - [sym_crate] = ACTIONS(907), - [sym_metavariable] = ACTIONS(909), - [sym__raw_string_literal_start] = ACTIONS(909), - [sym_float_literal] = ACTIONS(909), - }, - [STATE(148)] = { - [sym_line_comment] = STATE(148), - [sym_block_comment] = STATE(148), - [sym_identifier] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_RPAREN] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(865), - [anon_sym_RBRACK] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_EQ_GT] = ACTIONS(865), - [anon_sym_COLON] = ACTIONS(863), - [anon_sym_DOLLAR] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_QMARK] = ACTIONS(865), - [anon_sym_u8] = ACTIONS(863), - [anon_sym_i8] = ACTIONS(863), - [anon_sym_u16] = ACTIONS(863), - [anon_sym_i16] = ACTIONS(863), - [anon_sym_u32] = ACTIONS(863), - [anon_sym_i32] = ACTIONS(863), - [anon_sym_u64] = ACTIONS(863), - [anon_sym_i64] = ACTIONS(863), - [anon_sym_u128] = ACTIONS(863), - [anon_sym_i128] = ACTIONS(863), - [anon_sym_isize] = ACTIONS(863), - [anon_sym_usize] = ACTIONS(863), - [anon_sym_f32] = ACTIONS(863), - [anon_sym_f64] = ACTIONS(863), - [anon_sym_bool] = ACTIONS(863), - [anon_sym_str] = ACTIONS(863), - [anon_sym_char] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_PERCENT] = ACTIONS(863), - [anon_sym_CARET] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(863), - [anon_sym_AMP] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_AMP_AMP] = ACTIONS(865), - [anon_sym_PIPE_PIPE] = ACTIONS(865), - [anon_sym_LT_LT] = ACTIONS(863), - [anon_sym_GT_GT] = ACTIONS(863), - [anon_sym_PLUS_EQ] = ACTIONS(865), - [anon_sym_DASH_EQ] = ACTIONS(865), - [anon_sym_STAR_EQ] = ACTIONS(865), - [anon_sym_SLASH_EQ] = ACTIONS(865), - [anon_sym_PERCENT_EQ] = ACTIONS(865), - [anon_sym_CARET_EQ] = ACTIONS(865), - [anon_sym_AMP_EQ] = ACTIONS(865), - [anon_sym_PIPE_EQ] = ACTIONS(865), - [anon_sym_LT_LT_EQ] = ACTIONS(865), - [anon_sym_GT_GT_EQ] = ACTIONS(865), - [anon_sym_EQ] = ACTIONS(863), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_AT] = ACTIONS(865), - [anon_sym__] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(863), - [anon_sym_DOT_DOT] = ACTIONS(863), - [anon_sym_DOT_DOT_DOT] = ACTIONS(865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(865), - [anon_sym_COMMA] = ACTIONS(865), - [anon_sym_COLON_COLON] = ACTIONS(865), - [anon_sym_DASH_GT] = ACTIONS(865), - [anon_sym_POUND] = ACTIONS(865), - [anon_sym_SQUOTE] = ACTIONS(863), - [anon_sym_as] = ACTIONS(863), - [anon_sym_async] = ACTIONS(863), - [anon_sym_await] = ACTIONS(863), - [anon_sym_break] = ACTIONS(863), - [anon_sym_const] = ACTIONS(863), - [anon_sym_continue] = ACTIONS(863), - [anon_sym_default] = ACTIONS(863), - [anon_sym_enum] = ACTIONS(863), - [anon_sym_fn] = ACTIONS(863), - [anon_sym_for] = ACTIONS(863), - [anon_sym_gen] = ACTIONS(863), - [anon_sym_if] = ACTIONS(863), - [anon_sym_impl] = ACTIONS(863), - [anon_sym_let] = ACTIONS(863), - [anon_sym_loop] = ACTIONS(863), - [anon_sym_match] = ACTIONS(863), - [anon_sym_mod] = ACTIONS(863), - [anon_sym_pub] = ACTIONS(863), - [anon_sym_return] = ACTIONS(863), - [anon_sym_static] = ACTIONS(863), - [anon_sym_struct] = ACTIONS(863), - [anon_sym_trait] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_union] = ACTIONS(863), - [anon_sym_unsafe] = ACTIONS(863), - [anon_sym_use] = ACTIONS(863), - [anon_sym_where] = ACTIONS(863), - [anon_sym_while] = ACTIONS(863), - [sym_mutable_specifier] = ACTIONS(863), - [sym_integer_literal] = ACTIONS(865), - [aux_sym_string_literal_token1] = ACTIONS(865), - [sym_char_literal] = ACTIONS(865), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(863), - [sym_super] = ACTIONS(863), - [sym_crate] = ACTIONS(863), - [sym_metavariable] = ACTIONS(865), - [sym__raw_string_literal_start] = ACTIONS(865), - [sym_float_literal] = ACTIONS(865), - }, [STATE(149)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(149), [sym_block_comment] = STATE(149), - [sym_identifier] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(913), - [anon_sym_RBRACK] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_u8] = ACTIONS(911), - [anon_sym_i8] = ACTIONS(911), - [anon_sym_u16] = ACTIONS(911), - [anon_sym_i16] = ACTIONS(911), - [anon_sym_u32] = ACTIONS(911), - [anon_sym_i32] = ACTIONS(911), - [anon_sym_u64] = ACTIONS(911), - [anon_sym_i64] = ACTIONS(911), - [anon_sym_u128] = ACTIONS(911), - [anon_sym_i128] = ACTIONS(911), - [anon_sym_isize] = ACTIONS(911), - [anon_sym_usize] = ACTIONS(911), - [anon_sym_f32] = ACTIONS(911), - [anon_sym_f64] = ACTIONS(911), - [anon_sym_bool] = ACTIONS(911), - [anon_sym_str] = ACTIONS(911), - [anon_sym_char] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_PERCENT] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(913), - [anon_sym_PIPE_PIPE] = ACTIONS(913), - [anon_sym_LT_LT] = ACTIONS(911), - [anon_sym_GT_GT] = ACTIONS(911), - [anon_sym_PLUS_EQ] = ACTIONS(913), - [anon_sym_DASH_EQ] = ACTIONS(913), - [anon_sym_STAR_EQ] = ACTIONS(913), - [anon_sym_SLASH_EQ] = ACTIONS(913), - [anon_sym_PERCENT_EQ] = ACTIONS(913), - [anon_sym_CARET_EQ] = ACTIONS(913), - [anon_sym_AMP_EQ] = ACTIONS(913), - [anon_sym_PIPE_EQ] = ACTIONS(913), - [anon_sym_LT_LT_EQ] = ACTIONS(913), - [anon_sym_GT_GT_EQ] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(913), - [anon_sym_BANG_EQ] = ACTIONS(913), - [anon_sym_GT] = ACTIONS(911), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(913), - [anon_sym_LT_EQ] = ACTIONS(913), - [anon_sym_AT] = ACTIONS(913), - [anon_sym__] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT_DOT] = ACTIONS(913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym_DASH_GT] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(911), - [anon_sym_as] = ACTIONS(911), - [anon_sym_async] = ACTIONS(911), - [anon_sym_await] = ACTIONS(911), - [anon_sym_break] = ACTIONS(911), - [anon_sym_const] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(911), - [anon_sym_default] = ACTIONS(911), - [anon_sym_enum] = ACTIONS(911), - [anon_sym_fn] = ACTIONS(911), - [anon_sym_for] = ACTIONS(911), - [anon_sym_gen] = ACTIONS(911), - [anon_sym_if] = ACTIONS(911), - [anon_sym_impl] = ACTIONS(911), - [anon_sym_let] = ACTIONS(911), - [anon_sym_loop] = ACTIONS(911), - [anon_sym_match] = ACTIONS(911), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_pub] = ACTIONS(911), - [anon_sym_return] = ACTIONS(911), - [anon_sym_static] = ACTIONS(911), - [anon_sym_struct] = ACTIONS(911), - [anon_sym_trait] = ACTIONS(911), - [anon_sym_type] = ACTIONS(911), - [anon_sym_union] = ACTIONS(911), - [anon_sym_unsafe] = ACTIONS(911), - [anon_sym_use] = ACTIONS(911), - [anon_sym_where] = ACTIONS(911), - [anon_sym_while] = ACTIONS(911), - [sym_mutable_specifier] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(913), - [aux_sym_string_literal_token1] = ACTIONS(913), - [sym_char_literal] = ACTIONS(913), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(911), - [sym_super] = ACTIONS(911), - [sym_crate] = ACTIONS(911), - [sym_metavariable] = ACTIONS(913), - [sym__raw_string_literal_start] = ACTIONS(913), - [sym_float_literal] = ACTIONS(913), - }, - [STATE(150)] = { - [sym_line_comment] = STATE(150), - [sym_block_comment] = STATE(150), - [sym_identifier] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_EQ_GT] = ACTIONS(869), - [anon_sym_COLON] = ACTIONS(867), - [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_STAR] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_u8] = ACTIONS(867), - [anon_sym_i8] = ACTIONS(867), - [anon_sym_u16] = ACTIONS(867), - [anon_sym_i16] = ACTIONS(867), - [anon_sym_u32] = ACTIONS(867), - [anon_sym_i32] = ACTIONS(867), - [anon_sym_u64] = ACTIONS(867), - [anon_sym_i64] = ACTIONS(867), - [anon_sym_u128] = ACTIONS(867), - [anon_sym_i128] = ACTIONS(867), - [anon_sym_isize] = ACTIONS(867), - [anon_sym_usize] = ACTIONS(867), - [anon_sym_f32] = ACTIONS(867), - [anon_sym_f64] = ACTIONS(867), - [anon_sym_bool] = ACTIONS(867), - [anon_sym_str] = ACTIONS(867), - [anon_sym_char] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_PERCENT] = ACTIONS(867), - [anon_sym_CARET] = ACTIONS(867), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_AMP] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_AMP_AMP] = ACTIONS(869), - [anon_sym_PIPE_PIPE] = ACTIONS(869), - [anon_sym_LT_LT] = ACTIONS(867), - [anon_sym_GT_GT] = ACTIONS(867), - [anon_sym_PLUS_EQ] = ACTIONS(869), - [anon_sym_DASH_EQ] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(869), - [anon_sym_SLASH_EQ] = ACTIONS(869), - [anon_sym_PERCENT_EQ] = ACTIONS(869), - [anon_sym_CARET_EQ] = ACTIONS(869), - [anon_sym_AMP_EQ] = ACTIONS(869), - [anon_sym_PIPE_EQ] = ACTIONS(869), - [anon_sym_LT_LT_EQ] = ACTIONS(869), - [anon_sym_GT_GT_EQ] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_GT] = ACTIONS(867), - [anon_sym_LT] = ACTIONS(867), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_AT] = ACTIONS(869), - [anon_sym__] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(869), - [anon_sym_COMMA] = ACTIONS(869), - [anon_sym_COLON_COLON] = ACTIONS(869), - [anon_sym_DASH_GT] = ACTIONS(869), - [anon_sym_POUND] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(867), - [anon_sym_as] = ACTIONS(867), - [anon_sym_async] = ACTIONS(867), - [anon_sym_await] = ACTIONS(867), - [anon_sym_break] = ACTIONS(867), - [anon_sym_const] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_default] = ACTIONS(867), - [anon_sym_enum] = ACTIONS(867), - [anon_sym_fn] = ACTIONS(867), - [anon_sym_for] = ACTIONS(867), - [anon_sym_gen] = ACTIONS(867), - [anon_sym_if] = ACTIONS(867), - [anon_sym_impl] = ACTIONS(867), - [anon_sym_let] = ACTIONS(867), - [anon_sym_loop] = ACTIONS(867), - [anon_sym_match] = ACTIONS(867), - [anon_sym_mod] = ACTIONS(867), - [anon_sym_pub] = ACTIONS(867), - [anon_sym_return] = ACTIONS(867), - [anon_sym_static] = ACTIONS(867), - [anon_sym_struct] = ACTIONS(867), - [anon_sym_trait] = ACTIONS(867), - [anon_sym_type] = ACTIONS(867), - [anon_sym_union] = ACTIONS(867), - [anon_sym_unsafe] = ACTIONS(867), - [anon_sym_use] = ACTIONS(867), - [anon_sym_where] = ACTIONS(867), - [anon_sym_while] = ACTIONS(867), - [sym_mutable_specifier] = ACTIONS(867), - [sym_integer_literal] = ACTIONS(869), - [aux_sym_string_literal_token1] = ACTIONS(869), - [sym_char_literal] = ACTIONS(869), - [anon_sym_true] = ACTIONS(867), - [anon_sym_false] = ACTIONS(867), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(867), - [sym_super] = ACTIONS(867), - [sym_crate] = ACTIONS(867), - [sym_metavariable] = ACTIONS(869), - [sym__raw_string_literal_start] = ACTIONS(869), - [sym_float_literal] = ACTIONS(869), - }, - [STATE(151)] = { - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), - [sym_identifier] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_RBRACK] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_EQ_GT] = ACTIONS(917), - [anon_sym_COLON] = ACTIONS(915), - [anon_sym_DOLLAR] = ACTIONS(915), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_QMARK] = ACTIONS(917), - [anon_sym_u8] = ACTIONS(915), - [anon_sym_i8] = ACTIONS(915), - [anon_sym_u16] = ACTIONS(915), - [anon_sym_i16] = ACTIONS(915), - [anon_sym_u32] = ACTIONS(915), - [anon_sym_i32] = ACTIONS(915), - [anon_sym_u64] = ACTIONS(915), - [anon_sym_i64] = ACTIONS(915), - [anon_sym_u128] = ACTIONS(915), - [anon_sym_i128] = ACTIONS(915), - [anon_sym_isize] = ACTIONS(915), - [anon_sym_usize] = ACTIONS(915), - [anon_sym_f32] = ACTIONS(915), - [anon_sym_f64] = ACTIONS(915), - [anon_sym_bool] = ACTIONS(915), - [anon_sym_str] = ACTIONS(915), - [anon_sym_char] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(915), - [anon_sym_PERCENT] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_AMP] = ACTIONS(915), - [anon_sym_PIPE] = ACTIONS(915), - [anon_sym_AMP_AMP] = ACTIONS(917), - [anon_sym_PIPE_PIPE] = ACTIONS(917), - [anon_sym_LT_LT] = ACTIONS(915), - [anon_sym_GT_GT] = ACTIONS(915), - [anon_sym_PLUS_EQ] = ACTIONS(917), - [anon_sym_DASH_EQ] = ACTIONS(917), - [anon_sym_STAR_EQ] = ACTIONS(917), - [anon_sym_SLASH_EQ] = ACTIONS(917), - [anon_sym_PERCENT_EQ] = ACTIONS(917), - [anon_sym_CARET_EQ] = ACTIONS(917), - [anon_sym_AMP_EQ] = ACTIONS(917), - [anon_sym_PIPE_EQ] = ACTIONS(917), - [anon_sym_LT_LT_EQ] = ACTIONS(917), - [anon_sym_GT_GT_EQ] = ACTIONS(917), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(915), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_AT] = ACTIONS(917), - [anon_sym__] = ACTIONS(915), - [anon_sym_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_COMMA] = ACTIONS(917), - [anon_sym_COLON_COLON] = ACTIONS(917), - [anon_sym_DASH_GT] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(917), - [anon_sym_SQUOTE] = ACTIONS(915), - [anon_sym_as] = ACTIONS(915), - [anon_sym_async] = ACTIONS(915), - [anon_sym_await] = ACTIONS(915), - [anon_sym_break] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_default] = ACTIONS(915), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_gen] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_impl] = ACTIONS(915), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(915), - [anon_sym_match] = ACTIONS(915), - [anon_sym_mod] = ACTIONS(915), - [anon_sym_pub] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_static] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [anon_sym_trait] = ACTIONS(915), - [anon_sym_type] = ACTIONS(915), - [anon_sym_union] = ACTIONS(915), - [anon_sym_unsafe] = ACTIONS(915), - [anon_sym_use] = ACTIONS(915), - [anon_sym_where] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [sym_mutable_specifier] = ACTIONS(915), - [sym_integer_literal] = ACTIONS(917), - [aux_sym_string_literal_token1] = ACTIONS(917), - [sym_char_literal] = ACTIONS(917), - [anon_sym_true] = ACTIONS(915), - [anon_sym_false] = ACTIONS(915), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(915), - [sym_super] = ACTIONS(915), - [sym_crate] = ACTIONS(915), - [sym_metavariable] = ACTIONS(917), - [sym__raw_string_literal_start] = ACTIONS(917), - [sym_float_literal] = ACTIONS(917), - }, - [STATE(152)] = { - [sym_line_comment] = STATE(152), - [sym_block_comment] = STATE(152), - [sym_identifier] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(921), - [anon_sym_RPAREN] = ACTIONS(921), - [anon_sym_LBRACK] = ACTIONS(921), - [anon_sym_RBRACK] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_EQ_GT] = ACTIONS(921), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_QMARK] = ACTIONS(921), - [anon_sym_u8] = ACTIONS(919), - [anon_sym_i8] = ACTIONS(919), - [anon_sym_u16] = ACTIONS(919), - [anon_sym_i16] = ACTIONS(919), - [anon_sym_u32] = ACTIONS(919), - [anon_sym_i32] = ACTIONS(919), - [anon_sym_u64] = ACTIONS(919), - [anon_sym_i64] = ACTIONS(919), - [anon_sym_u128] = ACTIONS(919), - [anon_sym_i128] = ACTIONS(919), - [anon_sym_isize] = ACTIONS(919), - [anon_sym_usize] = ACTIONS(919), - [anon_sym_f32] = ACTIONS(919), - [anon_sym_f64] = ACTIONS(919), - [anon_sym_bool] = ACTIONS(919), - [anon_sym_str] = ACTIONS(919), - [anon_sym_char] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_PERCENT] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(919), - [anon_sym_AMP] = ACTIONS(919), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_AMP_AMP] = ACTIONS(921), - [anon_sym_PIPE_PIPE] = ACTIONS(921), - [anon_sym_LT_LT] = ACTIONS(919), - [anon_sym_GT_GT] = ACTIONS(919), - [anon_sym_PLUS_EQ] = ACTIONS(921), - [anon_sym_DASH_EQ] = ACTIONS(921), - [anon_sym_STAR_EQ] = ACTIONS(921), - [anon_sym_SLASH_EQ] = ACTIONS(921), - [anon_sym_PERCENT_EQ] = ACTIONS(921), - [anon_sym_CARET_EQ] = ACTIONS(921), - [anon_sym_AMP_EQ] = ACTIONS(921), - [anon_sym_PIPE_EQ] = ACTIONS(921), - [anon_sym_LT_LT_EQ] = ACTIONS(921), - [anon_sym_GT_GT_EQ] = ACTIONS(921), - [anon_sym_EQ] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(921), - [anon_sym_BANG_EQ] = ACTIONS(921), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(921), - [anon_sym_AT] = ACTIONS(921), - [anon_sym__] = ACTIONS(919), - [anon_sym_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT_DOT] = ACTIONS(921), - [anon_sym_DOT_DOT_EQ] = ACTIONS(921), - [anon_sym_COMMA] = ACTIONS(921), - [anon_sym_COLON_COLON] = ACTIONS(921), - [anon_sym_DASH_GT] = ACTIONS(921), - [anon_sym_POUND] = ACTIONS(921), - [anon_sym_SQUOTE] = ACTIONS(919), - [anon_sym_as] = ACTIONS(919), - [anon_sym_async] = ACTIONS(919), - [anon_sym_await] = ACTIONS(919), - [anon_sym_break] = ACTIONS(919), - [anon_sym_const] = ACTIONS(919), - [anon_sym_continue] = ACTIONS(919), - [anon_sym_default] = ACTIONS(919), - [anon_sym_enum] = ACTIONS(919), - [anon_sym_fn] = ACTIONS(919), - [anon_sym_for] = ACTIONS(919), - [anon_sym_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_metavariable] = ACTIONS(921), - [sym__raw_string_literal_start] = ACTIONS(921), - [sym_float_literal] = ACTIONS(921), - }, - [STATE(153)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2792), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(153), - [sym_block_comment] = STATE(153), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [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(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [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_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), - }, - [STATE(154)] = { - [sym_line_comment] = STATE(154), - [sym_block_comment] = STATE(154), - [sym_identifier] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_EQ_GT] = ACTIONS(869), - [anon_sym_COLON] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_STAR] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_u8] = ACTIONS(867), - [anon_sym_i8] = ACTIONS(867), - [anon_sym_u16] = ACTIONS(867), - [anon_sym_i16] = ACTIONS(867), - [anon_sym_u32] = ACTIONS(867), - [anon_sym_i32] = ACTIONS(867), - [anon_sym_u64] = ACTIONS(867), - [anon_sym_i64] = ACTIONS(867), - [anon_sym_u128] = ACTIONS(867), - [anon_sym_i128] = ACTIONS(867), - [anon_sym_isize] = ACTIONS(867), - [anon_sym_usize] = ACTIONS(867), - [anon_sym_f32] = ACTIONS(867), - [anon_sym_f64] = ACTIONS(867), - [anon_sym_bool] = ACTIONS(867), - [anon_sym_str] = ACTIONS(867), - [anon_sym_char] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_PERCENT] = ACTIONS(867), - [anon_sym_CARET] = ACTIONS(867), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_AMP] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_AMP_AMP] = ACTIONS(869), - [anon_sym_PIPE_PIPE] = ACTIONS(869), - [anon_sym_LT_LT] = ACTIONS(867), - [anon_sym_GT_GT] = ACTIONS(867), - [anon_sym_PLUS_EQ] = ACTIONS(869), - [anon_sym_DASH_EQ] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(869), - [anon_sym_SLASH_EQ] = ACTIONS(869), - [anon_sym_PERCENT_EQ] = ACTIONS(869), - [anon_sym_CARET_EQ] = ACTIONS(869), - [anon_sym_AMP_EQ] = ACTIONS(869), - [anon_sym_PIPE_EQ] = ACTIONS(869), - [anon_sym_LT_LT_EQ] = ACTIONS(869), - [anon_sym_GT_GT_EQ] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_GT] = ACTIONS(867), - [anon_sym_LT] = ACTIONS(867), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_AT] = ACTIONS(869), - [anon_sym__] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(869), - [anon_sym_COMMA] = ACTIONS(869), - [anon_sym_COLON_COLON] = ACTIONS(869), - [anon_sym_DASH_GT] = ACTIONS(869), - [anon_sym_POUND] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(867), - [anon_sym_as] = ACTIONS(867), - [anon_sym_async] = ACTIONS(867), - [anon_sym_await] = ACTIONS(867), - [anon_sym_break] = ACTIONS(867), - [anon_sym_const] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_default] = ACTIONS(867), - [anon_sym_enum] = ACTIONS(867), - [anon_sym_fn] = ACTIONS(867), - [anon_sym_for] = ACTIONS(867), - [anon_sym_gen] = ACTIONS(867), - [anon_sym_if] = ACTIONS(867), - [anon_sym_impl] = ACTIONS(867), - [anon_sym_let] = ACTIONS(867), - [anon_sym_loop] = ACTIONS(867), - [anon_sym_match] = ACTIONS(867), - [anon_sym_mod] = ACTIONS(867), - [anon_sym_pub] = ACTIONS(867), - [anon_sym_return] = ACTIONS(867), - [anon_sym_static] = ACTIONS(867), - [anon_sym_struct] = ACTIONS(867), - [anon_sym_trait] = ACTIONS(867), - [anon_sym_type] = ACTIONS(867), - [anon_sym_union] = ACTIONS(867), - [anon_sym_unsafe] = ACTIONS(867), - [anon_sym_use] = ACTIONS(867), - [anon_sym_where] = ACTIONS(867), - [anon_sym_while] = ACTIONS(867), - [sym_mutable_specifier] = ACTIONS(867), - [sym_integer_literal] = ACTIONS(869), - [aux_sym_string_literal_token1] = ACTIONS(869), - [sym_char_literal] = ACTIONS(869), - [anon_sym_true] = ACTIONS(867), - [anon_sym_false] = ACTIONS(867), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(867), - [sym_super] = ACTIONS(867), - [sym_crate] = ACTIONS(867), - [sym_metavariable] = ACTIONS(869), - [sym__raw_string_literal_start] = ACTIONS(869), - [sym_float_literal] = ACTIONS(869), - }, - [STATE(155)] = { - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [sym_identifier] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_RBRACK] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_EQ_GT] = ACTIONS(935), - [anon_sym_COLON] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(933), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_u8] = ACTIONS(933), - [anon_sym_i8] = ACTIONS(933), - [anon_sym_u16] = ACTIONS(933), - [anon_sym_i16] = ACTIONS(933), - [anon_sym_u32] = ACTIONS(933), - [anon_sym_i32] = ACTIONS(933), - [anon_sym_u64] = ACTIONS(933), - [anon_sym_i64] = ACTIONS(933), - [anon_sym_u128] = ACTIONS(933), - [anon_sym_i128] = ACTIONS(933), - [anon_sym_isize] = ACTIONS(933), - [anon_sym_usize] = ACTIONS(933), - [anon_sym_f32] = ACTIONS(933), - [anon_sym_f64] = ACTIONS(933), - [anon_sym_bool] = ACTIONS(933), - [anon_sym_str] = ACTIONS(933), - [anon_sym_char] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(933), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(935), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_PLUS_EQ] = ACTIONS(935), - [anon_sym_DASH_EQ] = ACTIONS(935), - [anon_sym_STAR_EQ] = ACTIONS(935), - [anon_sym_SLASH_EQ] = ACTIONS(935), - [anon_sym_PERCENT_EQ] = ACTIONS(935), - [anon_sym_CARET_EQ] = ACTIONS(935), - [anon_sym_AMP_EQ] = ACTIONS(935), - [anon_sym_PIPE_EQ] = ACTIONS(935), - [anon_sym_LT_LT_EQ] = ACTIONS(935), - [anon_sym_GT_GT_EQ] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(933), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(933), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_AT] = ACTIONS(935), - [anon_sym__] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_DOT_DOT] = ACTIONS(933), - [anon_sym_DOT_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(935), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_COLON_COLON] = ACTIONS(935), - [anon_sym_DASH_GT] = ACTIONS(935), - [anon_sym_POUND] = ACTIONS(935), - [anon_sym_SQUOTE] = ACTIONS(933), - [anon_sym_as] = ACTIONS(933), - [anon_sym_async] = ACTIONS(933), - [anon_sym_await] = ACTIONS(933), - [anon_sym_break] = ACTIONS(933), - [anon_sym_const] = ACTIONS(933), - [anon_sym_continue] = ACTIONS(933), - [anon_sym_default] = ACTIONS(933), - [anon_sym_enum] = ACTIONS(933), - [anon_sym_fn] = ACTIONS(933), - [anon_sym_for] = ACTIONS(933), - [anon_sym_gen] = ACTIONS(933), - [anon_sym_if] = ACTIONS(933), - [anon_sym_impl] = ACTIONS(933), - [anon_sym_let] = ACTIONS(933), - [anon_sym_loop] = ACTIONS(933), - [anon_sym_match] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_pub] = ACTIONS(933), - [anon_sym_return] = ACTIONS(933), - [anon_sym_static] = ACTIONS(933), - [anon_sym_struct] = ACTIONS(933), - [anon_sym_trait] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_union] = ACTIONS(933), - [anon_sym_unsafe] = ACTIONS(933), - [anon_sym_use] = ACTIONS(933), - [anon_sym_where] = ACTIONS(933), - [anon_sym_while] = ACTIONS(933), - [sym_mutable_specifier] = ACTIONS(933), - [sym_integer_literal] = ACTIONS(935), - [aux_sym_string_literal_token1] = ACTIONS(935), - [sym_char_literal] = ACTIONS(935), - [anon_sym_true] = ACTIONS(933), - [anon_sym_false] = ACTIONS(933), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(933), - [sym_super] = ACTIONS(933), - [sym_crate] = ACTIONS(933), - [sym_metavariable] = ACTIONS(935), - [sym__raw_string_literal_start] = ACTIONS(935), - [sym_float_literal] = ACTIONS(935), - }, - [STATE(156)] = { - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), - [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), - [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), - }, - [STATE(157)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [aux_sym_mod_item_repeat1] = STATE(205), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(919), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(941), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35143,61 +35769,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), }, - [STATE(158)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [aux_sym_enum_variant_list_repeat1] = STATE(199), + [STATE(150)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), + [aux_sym_mod_item_repeat1] = STATE(205), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(921), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -35259,178 +35885,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(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), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_RBRACK] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_EQ_GT] = ACTIONS(947), - [anon_sym_COLON] = ACTIONS(945), - [anon_sym_DOLLAR] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_QMARK] = ACTIONS(947), - [anon_sym_u8] = ACTIONS(945), - [anon_sym_i8] = ACTIONS(945), - [anon_sym_u16] = ACTIONS(945), - [anon_sym_i16] = ACTIONS(945), - [anon_sym_u32] = ACTIONS(945), - [anon_sym_i32] = ACTIONS(945), - [anon_sym_u64] = ACTIONS(945), - [anon_sym_i64] = ACTIONS(945), - [anon_sym_u128] = ACTIONS(945), - [anon_sym_i128] = ACTIONS(945), - [anon_sym_isize] = ACTIONS(945), - [anon_sym_usize] = ACTIONS(945), - [anon_sym_f32] = ACTIONS(945), - [anon_sym_f64] = ACTIONS(945), - [anon_sym_bool] = ACTIONS(945), - [anon_sym_str] = ACTIONS(945), - [anon_sym_char] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_BANG] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_GT_GT] = ACTIONS(945), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(947), - [anon_sym_AT] = ACTIONS(947), - [anon_sym__] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_DOT_DOT] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT] = ACTIONS(947), - [anon_sym_DOT_DOT_EQ] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_COLON_COLON] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(947), - [anon_sym_SQUOTE] = ACTIONS(945), - [anon_sym_as] = ACTIONS(945), - [anon_sym_async] = ACTIONS(945), - [anon_sym_await] = ACTIONS(945), - [anon_sym_break] = ACTIONS(945), - [anon_sym_const] = ACTIONS(945), - [anon_sym_continue] = ACTIONS(945), - [anon_sym_default] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(945), - [anon_sym_fn] = ACTIONS(945), - [anon_sym_for] = ACTIONS(945), - [anon_sym_gen] = ACTIONS(945), - [anon_sym_if] = ACTIONS(945), - [anon_sym_impl] = ACTIONS(945), - [anon_sym_let] = ACTIONS(945), - [anon_sym_loop] = ACTIONS(945), - [anon_sym_match] = ACTIONS(945), - [anon_sym_mod] = ACTIONS(945), - [anon_sym_pub] = ACTIONS(945), - [anon_sym_return] = ACTIONS(945), - [anon_sym_static] = ACTIONS(945), - [anon_sym_struct] = ACTIONS(945), - [anon_sym_trait] = ACTIONS(945), - [anon_sym_type] = ACTIONS(945), - [anon_sym_union] = ACTIONS(945), - [anon_sym_unsafe] = ACTIONS(945), - [anon_sym_use] = ACTIONS(945), - [anon_sym_where] = ACTIONS(945), - [anon_sym_while] = ACTIONS(945), - [sym_mutable_specifier] = ACTIONS(945), - [sym_integer_literal] = ACTIONS(947), - [aux_sym_string_literal_token1] = ACTIONS(947), - [sym_char_literal] = ACTIONS(947), - [anon_sym_true] = ACTIONS(945), - [anon_sym_false] = ACTIONS(945), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(945), - [sym_super] = ACTIONS(945), - [sym_crate] = ACTIONS(945), - [sym_metavariable] = ACTIONS(947), - [sym__raw_string_literal_start] = ACTIONS(947), - [sym_float_literal] = ACTIONS(947), + [STATE(151)] = { + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [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), }, - [STATE(160)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(160), - [sym_block_comment] = STATE(160), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(152)] = { + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), + [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), + }, + [STATE(153)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [aux_sym_mod_item_repeat1] = STATE(205), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(949), + [anon_sym_RBRACK] = ACTIONS(931), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35491,61 +36233,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), }, - [STATE(161)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(161), - [sym_block_comment] = STATE(161), - [aux_sym_enum_variant_list_repeat1] = STATE(212), + [STATE(154)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), + [aux_sym_mod_item_repeat1] = STATE(205), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(933), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -35607,62 +36349,758 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(162)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(162), - [sym_block_comment] = STATE(162), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(155)] = { + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_RBRACK] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(937), + [anon_sym_COLON] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_u8] = ACTIONS(935), + [anon_sym_i8] = ACTIONS(935), + [anon_sym_u16] = ACTIONS(935), + [anon_sym_i16] = ACTIONS(935), + [anon_sym_u32] = ACTIONS(935), + [anon_sym_i32] = ACTIONS(935), + [anon_sym_u64] = ACTIONS(935), + [anon_sym_i64] = ACTIONS(935), + [anon_sym_u128] = ACTIONS(935), + [anon_sym_i128] = ACTIONS(935), + [anon_sym_isize] = ACTIONS(935), + [anon_sym_usize] = ACTIONS(935), + [anon_sym_f32] = ACTIONS(935), + [anon_sym_f64] = ACTIONS(935), + [anon_sym_bool] = ACTIONS(935), + [anon_sym_str] = ACTIONS(935), + [anon_sym_char] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE_PIPE] = ACTIONS(937), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PERCENT_EQ] = ACTIONS(937), + [anon_sym_CARET_EQ] = ACTIONS(937), + [anon_sym_AMP_EQ] = ACTIONS(937), + [anon_sym_PIPE_EQ] = ACTIONS(937), + [anon_sym_LT_LT_EQ] = ACTIONS(937), + [anon_sym_GT_GT_EQ] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_AT] = ACTIONS(937), + [anon_sym__] = ACTIONS(935), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(937), + [anon_sym_DOT_DOT_EQ] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_COLON_COLON] = ACTIONS(937), + [anon_sym_DASH_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(937), + [anon_sym_SQUOTE] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_async] = ACTIONS(935), + [anon_sym_await] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_default] = ACTIONS(935), + [anon_sym_enum] = ACTIONS(935), + [anon_sym_fn] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_gen] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_impl] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_mod] = ACTIONS(935), + [anon_sym_pub] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_static] = ACTIONS(935), + [anon_sym_struct] = ACTIONS(935), + [anon_sym_trait] = ACTIONS(935), + [anon_sym_type] = ACTIONS(935), + [anon_sym_union] = ACTIONS(935), + [anon_sym_unsafe] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_where] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [sym_mutable_specifier] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(937), + [aux_sym_string_literal_token1] = ACTIONS(937), + [sym_char_literal] = ACTIONS(937), + [anon_sym_true] = ACTIONS(935), + [anon_sym_false] = ACTIONS(935), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(935), + [sym_super] = ACTIONS(935), + [sym_crate] = ACTIONS(935), + [sym_metavariable] = ACTIONS(937), + [sym__raw_string_literal_start] = ACTIONS(937), + [sym_float_literal] = ACTIONS(937), + }, + [STATE(156)] = { + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [sym_identifier] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_RPAREN] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_RBRACK] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(941), + [anon_sym_EQ_GT] = ACTIONS(941), + [anon_sym_COLON] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_QMARK] = ACTIONS(941), + [anon_sym_u8] = ACTIONS(939), + [anon_sym_i8] = ACTIONS(939), + [anon_sym_u16] = ACTIONS(939), + [anon_sym_i16] = ACTIONS(939), + [anon_sym_u32] = ACTIONS(939), + [anon_sym_i32] = ACTIONS(939), + [anon_sym_u64] = ACTIONS(939), + [anon_sym_i64] = ACTIONS(939), + [anon_sym_u128] = ACTIONS(939), + [anon_sym_i128] = ACTIONS(939), + [anon_sym_isize] = ACTIONS(939), + [anon_sym_usize] = ACTIONS(939), + [anon_sym_f32] = ACTIONS(939), + [anon_sym_f64] = ACTIONS(939), + [anon_sym_bool] = ACTIONS(939), + [anon_sym_str] = ACTIONS(939), + [anon_sym_char] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_AMP_AMP] = ACTIONS(941), + [anon_sym_PIPE_PIPE] = ACTIONS(941), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS_EQ] = ACTIONS(941), + [anon_sym_DASH_EQ] = ACTIONS(941), + [anon_sym_STAR_EQ] = ACTIONS(941), + [anon_sym_SLASH_EQ] = ACTIONS(941), + [anon_sym_PERCENT_EQ] = ACTIONS(941), + [anon_sym_CARET_EQ] = ACTIONS(941), + [anon_sym_AMP_EQ] = ACTIONS(941), + [anon_sym_PIPE_EQ] = ACTIONS(941), + [anon_sym_LT_LT_EQ] = ACTIONS(941), + [anon_sym_GT_GT_EQ] = ACTIONS(941), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(941), + [anon_sym_BANG_EQ] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(941), + [anon_sym_LT_EQ] = ACTIONS(941), + [anon_sym_AT] = ACTIONS(941), + [anon_sym__] = ACTIONS(939), + [anon_sym_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_COLON_COLON] = ACTIONS(941), + [anon_sym_DASH_GT] = ACTIONS(941), + [anon_sym_POUND] = ACTIONS(941), + [anon_sym_SQUOTE] = ACTIONS(939), + [anon_sym_as] = ACTIONS(939), + [anon_sym_async] = ACTIONS(939), + [anon_sym_await] = ACTIONS(939), + [anon_sym_break] = ACTIONS(939), + [anon_sym_const] = ACTIONS(939), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_default] = ACTIONS(939), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_fn] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_gen] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_impl] = ACTIONS(939), + [anon_sym_let] = ACTIONS(939), + [anon_sym_loop] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_mod] = ACTIONS(939), + [anon_sym_pub] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_static] = ACTIONS(939), + [anon_sym_struct] = ACTIONS(939), + [anon_sym_trait] = ACTIONS(939), + [anon_sym_type] = ACTIONS(939), + [anon_sym_union] = ACTIONS(939), + [anon_sym_unsafe] = ACTIONS(939), + [anon_sym_use] = ACTIONS(939), + [anon_sym_where] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [sym_mutable_specifier] = ACTIONS(939), + [sym_integer_literal] = ACTIONS(941), + [aux_sym_string_literal_token1] = ACTIONS(941), + [sym_char_literal] = ACTIONS(941), + [anon_sym_true] = ACTIONS(939), + [anon_sym_false] = ACTIONS(939), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(939), + [sym_super] = ACTIONS(939), + [sym_crate] = ACTIONS(939), + [sym_metavariable] = ACTIONS(941), + [sym__raw_string_literal_start] = ACTIONS(941), + [sym_float_literal] = ACTIONS(941), + }, + [STATE(157)] = { + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [sym_identifier] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_RPAREN] = ACTIONS(945), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_COLON] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(943), + [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_u8] = ACTIONS(943), + [anon_sym_i8] = ACTIONS(943), + [anon_sym_u16] = ACTIONS(943), + [anon_sym_i16] = ACTIONS(943), + [anon_sym_u32] = ACTIONS(943), + [anon_sym_i32] = ACTIONS(943), + [anon_sym_u64] = ACTIONS(943), + [anon_sym_i64] = ACTIONS(943), + [anon_sym_u128] = ACTIONS(943), + [anon_sym_i128] = ACTIONS(943), + [anon_sym_isize] = ACTIONS(943), + [anon_sym_usize] = ACTIONS(943), + [anon_sym_f32] = ACTIONS(943), + [anon_sym_f64] = ACTIONS(943), + [anon_sym_bool] = ACTIONS(943), + [anon_sym_str] = ACTIONS(943), + [anon_sym_char] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_SLASH] = ACTIONS(943), + [anon_sym_PERCENT] = ACTIONS(943), + [anon_sym_CARET] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(943), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_AMP_AMP] = ACTIONS(945), + [anon_sym_PIPE_PIPE] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(943), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_PLUS_EQ] = ACTIONS(945), + [anon_sym_DASH_EQ] = ACTIONS(945), + [anon_sym_STAR_EQ] = ACTIONS(945), + [anon_sym_SLASH_EQ] = ACTIONS(945), + [anon_sym_PERCENT_EQ] = ACTIONS(945), + [anon_sym_CARET_EQ] = ACTIONS(945), + [anon_sym_AMP_EQ] = ACTIONS(945), + [anon_sym_PIPE_EQ] = ACTIONS(945), + [anon_sym_LT_LT_EQ] = ACTIONS(945), + [anon_sym_GT_GT_EQ] = ACTIONS(945), + [anon_sym_EQ] = ACTIONS(943), + [anon_sym_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_AT] = ACTIONS(945), + [anon_sym__] = ACTIONS(943), + [anon_sym_DOT] = ACTIONS(943), + [anon_sym_DOT_DOT] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT_EQ] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(945), + [anon_sym_DASH_GT] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(945), + [anon_sym_SQUOTE] = ACTIONS(943), + [anon_sym_as] = ACTIONS(943), + [anon_sym_async] = ACTIONS(943), + [anon_sym_await] = ACTIONS(943), + [anon_sym_break] = ACTIONS(943), + [anon_sym_const] = ACTIONS(943), + [anon_sym_continue] = ACTIONS(943), + [anon_sym_default] = ACTIONS(943), + [anon_sym_enum] = ACTIONS(943), + [anon_sym_fn] = ACTIONS(943), + [anon_sym_for] = ACTIONS(943), + [anon_sym_gen] = ACTIONS(943), + [anon_sym_if] = ACTIONS(943), + [anon_sym_impl] = ACTIONS(943), + [anon_sym_let] = ACTIONS(943), + [anon_sym_loop] = ACTIONS(943), + [anon_sym_match] = ACTIONS(943), + [anon_sym_mod] = ACTIONS(943), + [anon_sym_pub] = ACTIONS(943), + [anon_sym_return] = ACTIONS(943), + [anon_sym_static] = ACTIONS(943), + [anon_sym_struct] = ACTIONS(943), + [anon_sym_trait] = ACTIONS(943), + [anon_sym_type] = ACTIONS(943), + [anon_sym_union] = ACTIONS(943), + [anon_sym_unsafe] = ACTIONS(943), + [anon_sym_use] = ACTIONS(943), + [anon_sym_where] = ACTIONS(943), + [anon_sym_while] = ACTIONS(943), + [sym_mutable_specifier] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(945), + [aux_sym_string_literal_token1] = ACTIONS(945), + [sym_char_literal] = ACTIONS(945), + [anon_sym_true] = ACTIONS(943), + [anon_sym_false] = ACTIONS(943), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(943), + [sym_super] = ACTIONS(943), + [sym_crate] = ACTIONS(943), + [sym_metavariable] = ACTIONS(945), + [sym__raw_string_literal_start] = ACTIONS(945), + [sym_float_literal] = ACTIONS(945), + }, + [STATE(158)] = { + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [sym_identifier] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_RBRACK] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_EQ_GT] = ACTIONS(949), + [anon_sym_COLON] = ACTIONS(947), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_QMARK] = ACTIONS(949), + [anon_sym_u8] = ACTIONS(947), + [anon_sym_i8] = ACTIONS(947), + [anon_sym_u16] = ACTIONS(947), + [anon_sym_i16] = ACTIONS(947), + [anon_sym_u32] = ACTIONS(947), + [anon_sym_i32] = ACTIONS(947), + [anon_sym_u64] = ACTIONS(947), + [anon_sym_i64] = ACTIONS(947), + [anon_sym_u128] = ACTIONS(947), + [anon_sym_i128] = ACTIONS(947), + [anon_sym_isize] = ACTIONS(947), + [anon_sym_usize] = ACTIONS(947), + [anon_sym_f32] = ACTIONS(947), + [anon_sym_f64] = ACTIONS(947), + [anon_sym_bool] = ACTIONS(947), + [anon_sym_str] = ACTIONS(947), + [anon_sym_char] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_CARET] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_AMP] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(947), + [anon_sym_AMP_AMP] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(949), + [anon_sym_LT_LT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(947), + [anon_sym_PLUS_EQ] = ACTIONS(949), + [anon_sym_DASH_EQ] = ACTIONS(949), + [anon_sym_STAR_EQ] = ACTIONS(949), + [anon_sym_SLASH_EQ] = ACTIONS(949), + [anon_sym_PERCENT_EQ] = ACTIONS(949), + [anon_sym_CARET_EQ] = ACTIONS(949), + [anon_sym_AMP_EQ] = ACTIONS(949), + [anon_sym_PIPE_EQ] = ACTIONS(949), + [anon_sym_LT_LT_EQ] = ACTIONS(949), + [anon_sym_GT_GT_EQ] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(947), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_AT] = ACTIONS(949), + [anon_sym__] = ACTIONS(947), + [anon_sym_DOT] = ACTIONS(947), + [anon_sym_DOT_DOT] = ACTIONS(947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT_EQ] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(949), + [anon_sym_COLON_COLON] = ACTIONS(949), + [anon_sym_DASH_GT] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(949), + [anon_sym_SQUOTE] = ACTIONS(947), + [anon_sym_as] = ACTIONS(947), + [anon_sym_async] = ACTIONS(947), + [anon_sym_await] = ACTIONS(947), + [anon_sym_break] = ACTIONS(947), + [anon_sym_const] = ACTIONS(947), + [anon_sym_continue] = ACTIONS(947), + [anon_sym_default] = ACTIONS(947), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_fn] = ACTIONS(947), + [anon_sym_for] = ACTIONS(947), + [anon_sym_gen] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_impl] = ACTIONS(947), + [anon_sym_let] = ACTIONS(947), + [anon_sym_loop] = ACTIONS(947), + [anon_sym_match] = ACTIONS(947), + [anon_sym_mod] = ACTIONS(947), + [anon_sym_pub] = ACTIONS(947), + [anon_sym_return] = ACTIONS(947), + [anon_sym_static] = ACTIONS(947), + [anon_sym_struct] = ACTIONS(947), + [anon_sym_trait] = ACTIONS(947), + [anon_sym_type] = ACTIONS(947), + [anon_sym_union] = ACTIONS(947), + [anon_sym_unsafe] = ACTIONS(947), + [anon_sym_use] = ACTIONS(947), + [anon_sym_where] = ACTIONS(947), + [anon_sym_while] = ACTIONS(947), + [sym_mutable_specifier] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(949), + [aux_sym_string_literal_token1] = ACTIONS(949), + [sym_char_literal] = ACTIONS(949), + [anon_sym_true] = ACTIONS(947), + [anon_sym_false] = ACTIONS(947), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(947), + [sym_super] = ACTIONS(947), + [sym_crate] = ACTIONS(947), + [sym_metavariable] = ACTIONS(949), + [sym__raw_string_literal_start] = ACTIONS(949), + [sym_float_literal] = ACTIONS(949), + }, + [STATE(159)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1995), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_let_condition] = STATE(3511), + [sym__let_chain] = STATE(3520), + [sym__condition] = STATE(3232), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), + [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(485), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(160)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1995), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_let_condition] = STATE(3511), + [sym__let_chain] = STATE(3520), + [sym__condition] = STATE(3199), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), + [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(485), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(161)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), + [aux_sym_mod_item_repeat1] = STATE(205), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(953), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(951), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35723,178 +37161,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), }, + [STATE(162)] = { + [sym_line_comment] = STATE(162), + [sym_block_comment] = STATE(162), + [aux_sym__non_special_token_repeat1] = STATE(162), + [sym_identifier] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_RBRACK] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_EQ_GT] = ACTIONS(953), + [anon_sym_COLON] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(867), + [anon_sym_i8] = ACTIONS(867), + [anon_sym_u16] = ACTIONS(867), + [anon_sym_i16] = ACTIONS(867), + [anon_sym_u32] = ACTIONS(867), + [anon_sym_i32] = ACTIONS(867), + [anon_sym_u64] = ACTIONS(867), + [anon_sym_i64] = ACTIONS(867), + [anon_sym_u128] = ACTIONS(867), + [anon_sym_i128] = ACTIONS(867), + [anon_sym_isize] = ACTIONS(867), + [anon_sym_usize] = ACTIONS(867), + [anon_sym_f32] = ACTIONS(867), + [anon_sym_f64] = ACTIONS(867), + [anon_sym_bool] = ACTIONS(867), + [anon_sym_str] = ACTIONS(867), + [anon_sym_char] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_SLASH] = ACTIONS(956), + [anon_sym_PERCENT] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_AMP_AMP] = ACTIONS(953), + [anon_sym_PIPE_PIPE] = ACTIONS(953), + [anon_sym_LT_LT] = ACTIONS(956), + [anon_sym_GT_GT] = ACTIONS(956), + [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(956), + [anon_sym_EQ_EQ] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_LT] = ACTIONS(956), + [anon_sym_GT_EQ] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(953), + [anon_sym_AT] = ACTIONS(953), + [anon_sym__] = ACTIONS(956), + [anon_sym_DOT] = ACTIONS(956), + [anon_sym_DOT_DOT] = ACTIONS(956), + [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(867), + [anon_sym_as] = ACTIONS(867), + [anon_sym_async] = ACTIONS(867), + [anon_sym_await] = ACTIONS(867), + [anon_sym_break] = ACTIONS(867), + [anon_sym_const] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_default] = ACTIONS(867), + [anon_sym_enum] = ACTIONS(867), + [anon_sym_fn] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_gen] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_impl] = ACTIONS(867), + [anon_sym_let] = ACTIONS(867), + [anon_sym_loop] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_mod] = ACTIONS(867), + [anon_sym_pub] = ACTIONS(867), + [anon_sym_return] = ACTIONS(867), + [anon_sym_static] = ACTIONS(867), + [anon_sym_struct] = ACTIONS(867), + [anon_sym_trait] = ACTIONS(867), + [anon_sym_type] = ACTIONS(867), + [anon_sym_union] = ACTIONS(867), + [anon_sym_unsafe] = ACTIONS(867), + [anon_sym_use] = ACTIONS(867), + [anon_sym_where] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [sym_mutable_specifier] = ACTIONS(867), + [sym_integer_literal] = ACTIONS(872), + [aux_sym_string_literal_token1] = ACTIONS(872), + [sym_char_literal] = ACTIONS(872), + [anon_sym_true] = ACTIONS(867), + [anon_sym_false] = ACTIONS(867), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(867), + [sym_super] = ACTIONS(867), + [sym_crate] = ACTIONS(867), + [sym__raw_string_literal_start] = ACTIONS(872), + [sym_float_literal] = ACTIONS(872), + }, [STATE(163)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(163), [sym_block_comment] = STATE(163), - [sym_identifier] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_RPAREN] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(957), - [anon_sym_RBRACK] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_EQ_GT] = ACTIONS(957), - [anon_sym_COLON] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_STAR] = ACTIONS(955), - [anon_sym_QMARK] = ACTIONS(957), - [anon_sym_u8] = ACTIONS(955), - [anon_sym_i8] = ACTIONS(955), - [anon_sym_u16] = ACTIONS(955), - [anon_sym_i16] = ACTIONS(955), - [anon_sym_u32] = ACTIONS(955), - [anon_sym_i32] = ACTIONS(955), - [anon_sym_u64] = ACTIONS(955), - [anon_sym_i64] = ACTIONS(955), - [anon_sym_u128] = ACTIONS(955), - [anon_sym_i128] = ACTIONS(955), - [anon_sym_isize] = ACTIONS(955), - [anon_sym_usize] = ACTIONS(955), - [anon_sym_f32] = ACTIONS(955), - [anon_sym_f64] = ACTIONS(955), - [anon_sym_bool] = ACTIONS(955), - [anon_sym_str] = ACTIONS(955), - [anon_sym_char] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(955), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(955), - [anon_sym_GT_GT] = ACTIONS(955), - [anon_sym_PLUS_EQ] = ACTIONS(957), - [anon_sym_DASH_EQ] = ACTIONS(957), - [anon_sym_STAR_EQ] = ACTIONS(957), - [anon_sym_SLASH_EQ] = ACTIONS(957), - [anon_sym_PERCENT_EQ] = ACTIONS(957), - [anon_sym_CARET_EQ] = ACTIONS(957), - [anon_sym_AMP_EQ] = ACTIONS(957), - [anon_sym_PIPE_EQ] = ACTIONS(957), - [anon_sym_LT_LT_EQ] = ACTIONS(957), - [anon_sym_GT_GT_EQ] = ACTIONS(957), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_EQ_EQ] = ACTIONS(957), - [anon_sym_BANG_EQ] = ACTIONS(957), - [anon_sym_GT] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(955), - [anon_sym_GT_EQ] = ACTIONS(957), - [anon_sym_LT_EQ] = ACTIONS(957), - [anon_sym_AT] = ACTIONS(957), - [anon_sym__] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(957), - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_COLON_COLON] = ACTIONS(957), - [anon_sym_DASH_GT] = ACTIONS(957), - [anon_sym_POUND] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(955), - [anon_sym_as] = ACTIONS(955), - [anon_sym_async] = ACTIONS(955), - [anon_sym_await] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [anon_sym_const] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [anon_sym_default] = ACTIONS(955), - [anon_sym_enum] = ACTIONS(955), - [anon_sym_fn] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_gen] = ACTIONS(955), - [anon_sym_if] = ACTIONS(955), - [anon_sym_impl] = ACTIONS(955), - [anon_sym_let] = ACTIONS(955), - [anon_sym_loop] = ACTIONS(955), - [anon_sym_match] = ACTIONS(955), - [anon_sym_mod] = ACTIONS(955), - [anon_sym_pub] = ACTIONS(955), - [anon_sym_return] = ACTIONS(955), - [anon_sym_static] = ACTIONS(955), - [anon_sym_struct] = ACTIONS(955), - [anon_sym_trait] = ACTIONS(955), - [anon_sym_type] = ACTIONS(955), - [anon_sym_union] = ACTIONS(955), - [anon_sym_unsafe] = ACTIONS(955), - [anon_sym_use] = ACTIONS(955), - [anon_sym_where] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [sym_mutable_specifier] = ACTIONS(955), - [sym_integer_literal] = ACTIONS(957), - [aux_sym_string_literal_token1] = ACTIONS(957), - [sym_char_literal] = ACTIONS(957), - [anon_sym_true] = ACTIONS(955), - [anon_sym_false] = ACTIONS(955), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(955), - [sym_super] = ACTIONS(955), - [sym_crate] = ACTIONS(955), - [sym_metavariable] = ACTIONS(957), - [sym__raw_string_literal_start] = ACTIONS(957), - [sym_float_literal] = ACTIONS(957), - }, - [STATE(164)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(164), - [sym_block_comment] = STATE(164), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [aux_sym_mod_item_repeat1] = STATE(205), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(959), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(959), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35955,9 +37393,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), }, - [STATE(165)] = { - [sym_line_comment] = STATE(165), - [sym_block_comment] = STATE(165), + [STATE(164)] = { + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), [sym_identifier] = ACTIONS(961), [anon_sym_SEMI] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(963), @@ -36071,62 +37509,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(963), [sym_float_literal] = ACTIONS(963), }, + [STATE(165)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2191), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_let_condition] = STATE(3779), + [sym__let_chain] = STATE(3780), + [sym__condition] = STATE(3989), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(969), + [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(971), + [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), + }, [STATE(166)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(166), [sym_block_comment] = STATE(166), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [aux_sym_mod_item_repeat1] = STATE(205), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(973), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(965), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36190,354 +37744,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(167)] = { [sym_line_comment] = STATE(167), [sym_block_comment] = STATE(167), - [sym_identifier] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(969), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_QMARK] = ACTIONS(969), - [anon_sym_u8] = ACTIONS(967), - [anon_sym_i8] = ACTIONS(967), - [anon_sym_u16] = ACTIONS(967), - [anon_sym_i16] = ACTIONS(967), - [anon_sym_u32] = ACTIONS(967), - [anon_sym_i32] = ACTIONS(967), - [anon_sym_u64] = ACTIONS(967), - [anon_sym_i64] = ACTIONS(967), - [anon_sym_u128] = ACTIONS(967), - [anon_sym_i128] = ACTIONS(967), - [anon_sym_isize] = ACTIONS(967), - [anon_sym_usize] = ACTIONS(967), - [anon_sym_f32] = ACTIONS(967), - [anon_sym_f64] = ACTIONS(967), - [anon_sym_bool] = ACTIONS(967), - [anon_sym_str] = ACTIONS(967), - [anon_sym_char] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PERCENT_EQ] = ACTIONS(969), - [anon_sym_CARET_EQ] = ACTIONS(969), - [anon_sym_AMP_EQ] = ACTIONS(969), - [anon_sym_PIPE_EQ] = ACTIONS(969), - [anon_sym_LT_LT_EQ] = ACTIONS(969), - [anon_sym_GT_GT_EQ] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), - [anon_sym__] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_COLON_COLON] = ACTIONS(969), - [anon_sym_DASH_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [anon_sym_fn] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_gen] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_impl] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_pub] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_trait] = ACTIONS(967), - [anon_sym_type] = ACTIONS(967), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [sym_mutable_specifier] = ACTIONS(967), - [sym_integer_literal] = ACTIONS(969), - [aux_sym_string_literal_token1] = ACTIONS(969), - [sym_char_literal] = ACTIONS(969), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_crate] = ACTIONS(967), - [sym_metavariable] = ACTIONS(969), - [sym__raw_string_literal_start] = ACTIONS(969), - [sym_float_literal] = ACTIONS(969), - }, - [STATE(168)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2592), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [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(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [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(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [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_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), - }, - [STATE(169)] = { - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [sym_identifier] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(973), - [anon_sym_RBRACK] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_EQ_GT] = ACTIONS(973), - [anon_sym_COLON] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_QMARK] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(971), - [anon_sym_i8] = ACTIONS(971), - [anon_sym_u16] = ACTIONS(971), - [anon_sym_i16] = ACTIONS(971), - [anon_sym_u32] = ACTIONS(971), - [anon_sym_i32] = ACTIONS(971), - [anon_sym_u64] = ACTIONS(971), - [anon_sym_i64] = ACTIONS(971), - [anon_sym_u128] = ACTIONS(971), - [anon_sym_i128] = ACTIONS(971), - [anon_sym_isize] = ACTIONS(971), - [anon_sym_usize] = ACTIONS(971), - [anon_sym_f32] = ACTIONS(971), - [anon_sym_f64] = ACTIONS(971), - [anon_sym_bool] = ACTIONS(971), - [anon_sym_str] = ACTIONS(971), - [anon_sym_char] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_SLASH] = ACTIONS(971), - [anon_sym_PERCENT] = ACTIONS(971), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(973), - [anon_sym_PIPE_PIPE] = ACTIONS(973), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_PLUS_EQ] = ACTIONS(973), - [anon_sym_DASH_EQ] = ACTIONS(973), - [anon_sym_STAR_EQ] = ACTIONS(973), - [anon_sym_SLASH_EQ] = ACTIONS(973), - [anon_sym_PERCENT_EQ] = ACTIONS(973), - [anon_sym_CARET_EQ] = ACTIONS(973), - [anon_sym_AMP_EQ] = ACTIONS(973), - [anon_sym_PIPE_EQ] = ACTIONS(973), - [anon_sym_LT_LT_EQ] = ACTIONS(973), - [anon_sym_GT_GT_EQ] = ACTIONS(973), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT_EQ] = ACTIONS(973), - [anon_sym_LT_EQ] = ACTIONS(973), - [anon_sym_AT] = ACTIONS(973), - [anon_sym__] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DOT_DOT] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT_EQ] = ACTIONS(973), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_COLON_COLON] = ACTIONS(973), - [anon_sym_DASH_GT] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(971), - [anon_sym_as] = ACTIONS(971), - [anon_sym_async] = ACTIONS(971), - [anon_sym_await] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_default] = ACTIONS(971), - [anon_sym_enum] = ACTIONS(971), - [anon_sym_fn] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_gen] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_impl] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_mod] = ACTIONS(971), - [anon_sym_pub] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_static] = ACTIONS(971), - [anon_sym_struct] = ACTIONS(971), - [anon_sym_trait] = ACTIONS(971), - [anon_sym_type] = ACTIONS(971), - [anon_sym_union] = ACTIONS(971), - [anon_sym_unsafe] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_where] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [sym_mutable_specifier] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(973), - [aux_sym_string_literal_token1] = ACTIONS(973), - [sym_char_literal] = ACTIONS(973), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(971), - [sym_super] = ACTIONS(971), - [sym_crate] = ACTIONS(971), - [sym_metavariable] = ACTIONS(973), - [sym__raw_string_literal_start] = ACTIONS(973), - [sym_float_literal] = ACTIONS(973), - }, - [STATE(170)] = { - [sym_line_comment] = STATE(170), - [sym_block_comment] = STATE(170), [sym_identifier] = ACTIONS(975), [anon_sym_SEMI] = ACTIONS(977), [anon_sym_LPAREN] = ACTIONS(977), @@ -36651,168 +37857,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(977), [sym_float_literal] = ACTIONS(977), }, - [STATE(171)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(979), - [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), - }, - [STATE(172)] = { - [sym_line_comment] = STATE(172), - [sym_block_comment] = STATE(172), - [aux_sym__non_special_token_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(887), + [STATE(168)] = { + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [sym_identifier] = ACTIONS(979), [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_LPAREN] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_RBRACK] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_RBRACE] = ACTIONS(981), [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_COLON] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(979), [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_u8] = ACTIONS(979), + [anon_sym_i8] = ACTIONS(979), + [anon_sym_u16] = ACTIONS(979), + [anon_sym_i16] = ACTIONS(979), + [anon_sym_u32] = ACTIONS(979), + [anon_sym_i32] = ACTIONS(979), + [anon_sym_u64] = ACTIONS(979), + [anon_sym_i64] = ACTIONS(979), + [anon_sym_u128] = ACTIONS(979), + [anon_sym_i128] = ACTIONS(979), + [anon_sym_isize] = ACTIONS(979), + [anon_sym_usize] = ACTIONS(979), + [anon_sym_f32] = ACTIONS(979), + [anon_sym_f64] = ACTIONS(979), + [anon_sym_bool] = ACTIONS(979), + [anon_sym_str] = ACTIONS(979), + [anon_sym_char] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_SLASH] = ACTIONS(979), + [anon_sym_PERCENT] = ACTIONS(979), + [anon_sym_CARET] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(979), [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_LT_LT] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), [anon_sym_PLUS_EQ] = ACTIONS(981), [anon_sym_DASH_EQ] = ACTIONS(981), [anon_sym_STAR_EQ] = ACTIONS(981), @@ -36823,122 +37912,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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] = ACTIONS(979), [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] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), [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__] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(979), + [anon_sym_DOT_DOT] = ACTIONS(979), [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), + [anon_sym_SQUOTE] = ACTIONS(979), + [anon_sym_as] = ACTIONS(979), + [anon_sym_async] = ACTIONS(979), + [anon_sym_await] = ACTIONS(979), + [anon_sym_break] = ACTIONS(979), + [anon_sym_const] = ACTIONS(979), + [anon_sym_continue] = ACTIONS(979), + [anon_sym_default] = ACTIONS(979), + [anon_sym_enum] = ACTIONS(979), + [anon_sym_fn] = ACTIONS(979), + [anon_sym_for] = ACTIONS(979), + [anon_sym_gen] = ACTIONS(979), + [anon_sym_if] = ACTIONS(979), + [anon_sym_impl] = ACTIONS(979), + [anon_sym_let] = ACTIONS(979), + [anon_sym_loop] = ACTIONS(979), + [anon_sym_match] = ACTIONS(979), + [anon_sym_mod] = ACTIONS(979), + [anon_sym_pub] = ACTIONS(979), + [anon_sym_return] = ACTIONS(979), + [anon_sym_static] = ACTIONS(979), + [anon_sym_struct] = ACTIONS(979), + [anon_sym_trait] = ACTIONS(979), + [anon_sym_type] = ACTIONS(979), + [anon_sym_union] = ACTIONS(979), + [anon_sym_unsafe] = ACTIONS(979), + [anon_sym_use] = ACTIONS(979), + [anon_sym_where] = ACTIONS(979), + [anon_sym_while] = ACTIONS(979), + [sym_mutable_specifier] = ACTIONS(979), + [sym_integer_literal] = ACTIONS(981), + [aux_sym_string_literal_token1] = ACTIONS(981), + [sym_char_literal] = ACTIONS(981), + [anon_sym_true] = ACTIONS(979), + [anon_sym_false] = ACTIONS(979), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(979), + [sym_super] = ACTIONS(979), + [sym_crate] = ACTIONS(979), + [sym_metavariable] = ACTIONS(981), + [sym__raw_string_literal_start] = ACTIONS(981), + [sym_float_literal] = ACTIONS(981), }, - [STATE(173)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(169)] = { + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [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), + }, + [STATE(170)] = { + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), + [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(987), + [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(987), + [sym_super] = ACTIONS(987), + [sym_crate] = ACTIONS(987), + [sym_metavariable] = ACTIONS(989), + [sym__raw_string_literal_start] = ACTIONS(989), + [sym_float_literal] = ACTIONS(989), + }, + [STATE(171)] = { + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [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), + }, + [STATE(172)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [aux_sym_mod_item_repeat1] = STATE(205), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(987), + [anon_sym_RBRACK] = ACTIONS(995), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36999,178 +38437,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), }, - [STATE(174)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1927), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_let_condition] = STATE(3162), - [sym__let_chain] = STATE(3165), - [sym__condition] = STATE(3509), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(174), - [sym_block_comment] = STATE(174), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [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(995), - [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), - }, - [STATE(175)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(173)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [aux_sym_mod_item_repeat1] = STATE(205), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(997), [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), @@ -37231,62 +38553,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), }, - [STATE(176)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(174)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [aux_sym_mod_item_repeat1] = STATE(205), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(999), [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), @@ -37347,9 +38669,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), }, - [STATE(177)] = { - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), + [STATE(175)] = { + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), [sym_identifier] = ACTIONS(1001), [anon_sym_SEMI] = ACTIONS(1003), [anon_sym_LPAREN] = ACTIONS(1003), @@ -37463,9 +38785,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1003), [sym_float_literal] = ACTIONS(1003), }, - [STATE(178)] = { - [sym_line_comment] = STATE(178), - [sym_block_comment] = STATE(178), + [STATE(176)] = { + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), [sym_identifier] = ACTIONS(1005), [anon_sym_SEMI] = ACTIONS(1007), [anon_sym_LPAREN] = ACTIONS(1007), @@ -37579,58 +38901,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1007), [sym_float_literal] = ACTIONS(1007), }, - [STATE(179)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(179), - [sym_block_comment] = STATE(179), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(177)] = { + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [sym_identifier] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_RPAREN] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_RBRACK] = ACTIONS(887), + [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_EQ_GT] = ACTIONS(887), + [anon_sym_COLON] = ACTIONS(885), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_STAR] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_u8] = ACTIONS(885), + [anon_sym_i8] = ACTIONS(885), + [anon_sym_u16] = ACTIONS(885), + [anon_sym_i16] = ACTIONS(885), + [anon_sym_u32] = ACTIONS(885), + [anon_sym_i32] = ACTIONS(885), + [anon_sym_u64] = ACTIONS(885), + [anon_sym_i64] = ACTIONS(885), + [anon_sym_u128] = ACTIONS(885), + [anon_sym_i128] = ACTIONS(885), + [anon_sym_isize] = ACTIONS(885), + [anon_sym_usize] = ACTIONS(885), + [anon_sym_f32] = ACTIONS(885), + [anon_sym_f64] = ACTIONS(885), + [anon_sym_bool] = ACTIONS(885), + [anon_sym_str] = ACTIONS(885), + [anon_sym_char] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_SLASH] = ACTIONS(885), + [anon_sym_PERCENT] = ACTIONS(885), + [anon_sym_CARET] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_AMP] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_LT_LT] = ACTIONS(885), + [anon_sym_GT_GT] = ACTIONS(885), + [anon_sym_PLUS_EQ] = ACTIONS(887), + [anon_sym_DASH_EQ] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(887), + [anon_sym_SLASH_EQ] = ACTIONS(887), + [anon_sym_PERCENT_EQ] = ACTIONS(887), + [anon_sym_CARET_EQ] = ACTIONS(887), + [anon_sym_AMP_EQ] = ACTIONS(887), + [anon_sym_PIPE_EQ] = ACTIONS(887), + [anon_sym_LT_LT_EQ] = ACTIONS(887), + [anon_sym_GT_GT_EQ] = ACTIONS(887), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_EQ_EQ] = ACTIONS(887), + [anon_sym_BANG_EQ] = ACTIONS(887), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [anon_sym_GT_EQ] = ACTIONS(887), + [anon_sym_LT_EQ] = ACTIONS(887), + [anon_sym_AT] = ACTIONS(887), + [anon_sym__] = ACTIONS(885), + [anon_sym_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(887), + [anon_sym_DOT_DOT_EQ] = ACTIONS(887), + [anon_sym_COMMA] = ACTIONS(887), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym_DASH_GT] = ACTIONS(887), + [anon_sym_POUND] = ACTIONS(887), + [anon_sym_SQUOTE] = ACTIONS(885), + [anon_sym_as] = ACTIONS(885), + [anon_sym_async] = ACTIONS(885), + [anon_sym_await] = ACTIONS(885), + [anon_sym_break] = ACTIONS(885), + [anon_sym_const] = ACTIONS(885), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_default] = ACTIONS(885), + [anon_sym_enum] = ACTIONS(885), + [anon_sym_fn] = ACTIONS(885), + [anon_sym_for] = ACTIONS(885), + [anon_sym_gen] = ACTIONS(885), + [anon_sym_if] = ACTIONS(885), + [anon_sym_impl] = ACTIONS(885), + [anon_sym_let] = ACTIONS(885), + [anon_sym_loop] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_mod] = ACTIONS(885), + [anon_sym_pub] = ACTIONS(885), + [anon_sym_return] = ACTIONS(885), + [anon_sym_static] = ACTIONS(885), + [anon_sym_struct] = ACTIONS(885), + [anon_sym_trait] = ACTIONS(885), + [anon_sym_type] = ACTIONS(885), + [anon_sym_union] = ACTIONS(885), + [anon_sym_unsafe] = ACTIONS(885), + [anon_sym_use] = ACTIONS(885), + [anon_sym_where] = ACTIONS(885), + [anon_sym_while] = ACTIONS(885), + [sym_mutable_specifier] = ACTIONS(885), + [sym_integer_literal] = ACTIONS(887), + [aux_sym_string_literal_token1] = ACTIONS(887), + [sym_char_literal] = ACTIONS(887), + [anon_sym_true] = ACTIONS(885), + [anon_sym_false] = ACTIONS(885), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(885), + [sym_super] = ACTIONS(885), + [sym_crate] = ACTIONS(885), + [sym_metavariable] = ACTIONS(887), + [sym__raw_string_literal_start] = ACTIONS(887), + [sym_float_literal] = ACTIONS(887), + }, + [STATE(178)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2121), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [aux_sym_mod_item_repeat1] = STATE(202), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(1009), @@ -37695,505 +39133,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(179)] = { + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [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), + }, [STATE(180)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(180), [sym_block_comment] = STATE(180), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1011), - [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), + [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), }, [STATE(181)] = { [sym_line_comment] = STATE(181), [sym_block_comment] = STATE(181), - [sym_identifier] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_RPAREN] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1015), - [anon_sym_RBRACK] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [anon_sym_EQ_GT] = ACTIONS(1015), - [anon_sym_COLON] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(1013), - [anon_sym_i8] = ACTIONS(1013), - [anon_sym_u16] = ACTIONS(1013), - [anon_sym_i16] = ACTIONS(1013), - [anon_sym_u32] = ACTIONS(1013), - [anon_sym_i32] = ACTIONS(1013), - [anon_sym_u64] = ACTIONS(1013), - [anon_sym_i64] = ACTIONS(1013), - [anon_sym_u128] = ACTIONS(1013), - [anon_sym_i128] = ACTIONS(1013), - [anon_sym_isize] = ACTIONS(1013), - [anon_sym_usize] = ACTIONS(1013), - [anon_sym_f32] = ACTIONS(1013), - [anon_sym_f64] = ACTIONS(1013), - [anon_sym_bool] = ACTIONS(1013), - [anon_sym_str] = ACTIONS(1013), - [anon_sym_char] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_AMP_AMP] = ACTIONS(1015), - [anon_sym_PIPE_PIPE] = ACTIONS(1015), - [anon_sym_LT_LT] = ACTIONS(1013), - [anon_sym_GT_GT] = ACTIONS(1013), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PERCENT_EQ] = ACTIONS(1015), - [anon_sym_CARET_EQ] = ACTIONS(1015), - [anon_sym_AMP_EQ] = ACTIONS(1015), - [anon_sym_PIPE_EQ] = ACTIONS(1015), - [anon_sym_LT_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_GT_EQ] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1013), - [anon_sym_EQ_EQ] = ACTIONS(1015), - [anon_sym_BANG_EQ] = ACTIONS(1015), - [anon_sym_GT] = ACTIONS(1013), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_AT] = ACTIONS(1015), - [anon_sym__] = ACTIONS(1013), - [anon_sym_DOT] = ACTIONS(1013), - [anon_sym_DOT_DOT] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1015), - [anon_sym_COMMA] = ACTIONS(1015), - [anon_sym_COLON_COLON] = ACTIONS(1015), - [anon_sym_DASH_GT] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(1015), - [anon_sym_SQUOTE] = ACTIONS(1013), - [anon_sym_as] = ACTIONS(1013), - [anon_sym_async] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(1013), - [anon_sym_break] = ACTIONS(1013), - [anon_sym_const] = ACTIONS(1013), - [anon_sym_continue] = ACTIONS(1013), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_enum] = ACTIONS(1013), - [anon_sym_fn] = ACTIONS(1013), - [anon_sym_for] = ACTIONS(1013), - [anon_sym_gen] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1013), - [anon_sym_impl] = ACTIONS(1013), - [anon_sym_let] = ACTIONS(1013), - [anon_sym_loop] = ACTIONS(1013), - [anon_sym_match] = ACTIONS(1013), - [anon_sym_mod] = ACTIONS(1013), - [anon_sym_pub] = ACTIONS(1013), - [anon_sym_return] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(1013), - [anon_sym_struct] = ACTIONS(1013), - [anon_sym_trait] = ACTIONS(1013), - [anon_sym_type] = ACTIONS(1013), - [anon_sym_union] = ACTIONS(1013), - [anon_sym_unsafe] = ACTIONS(1013), - [anon_sym_use] = ACTIONS(1013), - [anon_sym_where] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1013), - [sym_mutable_specifier] = ACTIONS(1013), - [sym_integer_literal] = ACTIONS(1015), - [aux_sym_string_literal_token1] = ACTIONS(1015), - [sym_char_literal] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1013), - [sym_super] = ACTIONS(1013), - [sym_crate] = ACTIONS(1013), - [sym_metavariable] = ACTIONS(1015), - [sym__raw_string_literal_start] = ACTIONS(1015), - [sym_float_literal] = ACTIONS(1015), - }, - [STATE(182)] = { - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), - [sym_identifier] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_RPAREN] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_RBRACK] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1019), - [anon_sym_EQ_GT] = ACTIONS(1019), - [anon_sym_COLON] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_STAR] = ACTIONS(1017), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(1017), - [anon_sym_i8] = ACTIONS(1017), - [anon_sym_u16] = ACTIONS(1017), - [anon_sym_i16] = ACTIONS(1017), - [anon_sym_u32] = ACTIONS(1017), - [anon_sym_i32] = ACTIONS(1017), - [anon_sym_u64] = ACTIONS(1017), - [anon_sym_i64] = ACTIONS(1017), - [anon_sym_u128] = ACTIONS(1017), - [anon_sym_i128] = ACTIONS(1017), - [anon_sym_isize] = ACTIONS(1017), - [anon_sym_usize] = ACTIONS(1017), - [anon_sym_f32] = ACTIONS(1017), - [anon_sym_f64] = ACTIONS(1017), - [anon_sym_bool] = ACTIONS(1017), - [anon_sym_str] = ACTIONS(1017), - [anon_sym_char] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1017), - [anon_sym_PERCENT] = ACTIONS(1017), - [anon_sym_CARET] = ACTIONS(1017), - [anon_sym_BANG] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_AMP_AMP] = ACTIONS(1019), - [anon_sym_PIPE_PIPE] = ACTIONS(1019), - [anon_sym_LT_LT] = ACTIONS(1017), - [anon_sym_GT_GT] = ACTIONS(1017), - [anon_sym_PLUS_EQ] = ACTIONS(1019), - [anon_sym_DASH_EQ] = ACTIONS(1019), - [anon_sym_STAR_EQ] = ACTIONS(1019), - [anon_sym_SLASH_EQ] = ACTIONS(1019), - [anon_sym_PERCENT_EQ] = ACTIONS(1019), - [anon_sym_CARET_EQ] = ACTIONS(1019), - [anon_sym_AMP_EQ] = ACTIONS(1019), - [anon_sym_PIPE_EQ] = ACTIONS(1019), - [anon_sym_LT_LT_EQ] = ACTIONS(1019), - [anon_sym_GT_GT_EQ] = ACTIONS(1019), - [anon_sym_EQ] = ACTIONS(1017), - [anon_sym_EQ_EQ] = ACTIONS(1019), - [anon_sym_BANG_EQ] = ACTIONS(1019), - [anon_sym_GT] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(1017), - [anon_sym_GT_EQ] = ACTIONS(1019), - [anon_sym_LT_EQ] = ACTIONS(1019), - [anon_sym_AT] = ACTIONS(1019), - [anon_sym__] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1019), - [anon_sym_COLON_COLON] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1019), - [anon_sym_POUND] = ACTIONS(1019), - [anon_sym_SQUOTE] = ACTIONS(1017), - [anon_sym_as] = ACTIONS(1017), - [anon_sym_async] = ACTIONS(1017), - [anon_sym_await] = ACTIONS(1017), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_const] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1017), - [anon_sym_default] = ACTIONS(1017), - [anon_sym_enum] = ACTIONS(1017), - [anon_sym_fn] = ACTIONS(1017), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_gen] = ACTIONS(1017), - [anon_sym_if] = ACTIONS(1017), - [anon_sym_impl] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1017), - [anon_sym_loop] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1017), - [anon_sym_mod] = ACTIONS(1017), - [anon_sym_pub] = ACTIONS(1017), - [anon_sym_return] = ACTIONS(1017), - [anon_sym_static] = ACTIONS(1017), - [anon_sym_struct] = ACTIONS(1017), - [anon_sym_trait] = ACTIONS(1017), - [anon_sym_type] = ACTIONS(1017), - [anon_sym_union] = ACTIONS(1017), - [anon_sym_unsafe] = ACTIONS(1017), - [anon_sym_use] = ACTIONS(1017), - [anon_sym_where] = ACTIONS(1017), - [anon_sym_while] = ACTIONS(1017), - [sym_mutable_specifier] = ACTIONS(1017), - [sym_integer_literal] = ACTIONS(1019), - [aux_sym_string_literal_token1] = ACTIONS(1019), - [sym_char_literal] = ACTIONS(1019), - [anon_sym_true] = ACTIONS(1017), - [anon_sym_false] = ACTIONS(1017), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1017), - [sym_super] = ACTIONS(1017), - [sym_crate] = ACTIONS(1017), - [sym_metavariable] = ACTIONS(1019), - [sym__raw_string_literal_start] = ACTIONS(1019), - [sym_float_literal] = ACTIONS(1019), - }, - [STATE(183)] = { - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), - [sym_identifier] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_RBRACK] = ACTIONS(1023), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_EQ_GT] = ACTIONS(1023), - [anon_sym_COLON] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_QMARK] = ACTIONS(1023), - [anon_sym_u8] = ACTIONS(1021), - [anon_sym_i8] = ACTIONS(1021), - [anon_sym_u16] = ACTIONS(1021), - [anon_sym_i16] = ACTIONS(1021), - [anon_sym_u32] = ACTIONS(1021), - [anon_sym_i32] = ACTIONS(1021), - [anon_sym_u64] = ACTIONS(1021), - [anon_sym_i64] = ACTIONS(1021), - [anon_sym_u128] = ACTIONS(1021), - [anon_sym_i128] = ACTIONS(1021), - [anon_sym_isize] = ACTIONS(1021), - [anon_sym_usize] = ACTIONS(1021), - [anon_sym_f32] = ACTIONS(1021), - [anon_sym_f64] = ACTIONS(1021), - [anon_sym_bool] = ACTIONS(1021), - [anon_sym_str] = ACTIONS(1021), - [anon_sym_char] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_PERCENT] = ACTIONS(1021), - [anon_sym_CARET] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(1021), - [anon_sym_AMP_AMP] = ACTIONS(1023), - [anon_sym_PIPE_PIPE] = ACTIONS(1023), - [anon_sym_LT_LT] = ACTIONS(1021), - [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PERCENT_EQ] = ACTIONS(1023), - [anon_sym_CARET_EQ] = ACTIONS(1023), - [anon_sym_AMP_EQ] = ACTIONS(1023), - [anon_sym_PIPE_EQ] = ACTIONS(1023), - [anon_sym_LT_LT_EQ] = ACTIONS(1023), - [anon_sym_GT_GT_EQ] = ACTIONS(1023), - [anon_sym_EQ] = ACTIONS(1021), - [anon_sym_EQ_EQ] = ACTIONS(1023), - [anon_sym_BANG_EQ] = ACTIONS(1023), - [anon_sym_GT] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(1021), - [anon_sym_GT_EQ] = ACTIONS(1023), - [anon_sym_LT_EQ] = ACTIONS(1023), - [anon_sym_AT] = ACTIONS(1023), - [anon_sym__] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1023), - [anon_sym_DASH_GT] = ACTIONS(1023), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_default] = ACTIONS(1021), - [anon_sym_enum] = ACTIONS(1021), - [anon_sym_fn] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_gen] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_impl] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_mod] = ACTIONS(1021), - [anon_sym_pub] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_static] = ACTIONS(1021), - [anon_sym_struct] = ACTIONS(1021), - [anon_sym_trait] = ACTIONS(1021), - [anon_sym_type] = ACTIONS(1021), - [anon_sym_union] = ACTIONS(1021), - [anon_sym_unsafe] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_where] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [sym_mutable_specifier] = ACTIONS(1021), - [sym_integer_literal] = ACTIONS(1023), - [aux_sym_string_literal_token1] = ACTIONS(1023), - [sym_char_literal] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1021), - [anon_sym_false] = ACTIONS(1021), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1021), - [sym_super] = ACTIONS(1021), - [sym_crate] = ACTIONS(1021), - [sym_metavariable] = ACTIONS(1023), - [sym__raw_string_literal_start] = ACTIONS(1023), - [sym_float_literal] = ACTIONS(1023), - }, - [STATE(184)] = { - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [aux_sym__non_special_token_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1025), + [aux_sym__non_special_token_repeat1] = STATE(162), + [sym_identifier] = ACTIONS(1019), [anon_sym_SEMI] = ACTIONS(676), - [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_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(676), [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1021), [anon_sym_PLUS] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(686), [anon_sym_QMARK] = ACTIONS(676), - [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_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(686), [anon_sym_SLASH] = ACTIONS(686), [anon_sym_PERCENT] = ACTIONS(686), @@ -38232,105 +39438,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(676), [anon_sym_DASH_GT] = ACTIONS(676), [anon_sym_POUND] = ACTIONS(676), - [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__raw_string_literal_start] = ACTIONS(1027), - [sym_float_literal] = ACTIONS(1027), + [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__raw_string_literal_start] = ACTIONS(1021), + [sym_float_literal] = ACTIONS(1021), }, - [STATE(185)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(182)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [aux_sym_mod_item_repeat1] = STATE(205), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1023), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1029), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38391,62 +39597,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), }, - [STATE(186)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(183)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [aux_sym_mod_item_repeat1] = STATE(205), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1031), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1025), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38507,103 +39713,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(187)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2614), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [sym_identifier] = ACTIONS(465), + [STATE(184)] = { + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [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), + }, + [STATE(185)] = { + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym_identifier] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_RPAREN] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_RBRACK] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_EQ_GT] = ACTIONS(865), + [anon_sym_COLON] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_u8] = ACTIONS(863), + [anon_sym_i8] = ACTIONS(863), + [anon_sym_u16] = ACTIONS(863), + [anon_sym_i16] = ACTIONS(863), + [anon_sym_u32] = ACTIONS(863), + [anon_sym_i32] = ACTIONS(863), + [anon_sym_u64] = ACTIONS(863), + [anon_sym_i64] = ACTIONS(863), + [anon_sym_u128] = ACTIONS(863), + [anon_sym_i128] = ACTIONS(863), + [anon_sym_isize] = ACTIONS(863), + [anon_sym_usize] = ACTIONS(863), + [anon_sym_f32] = ACTIONS(863), + [anon_sym_f64] = ACTIONS(863), + [anon_sym_bool] = ACTIONS(863), + [anon_sym_str] = ACTIONS(863), + [anon_sym_char] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_CARET] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_LT_LT] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(863), + [anon_sym_PLUS_EQ] = ACTIONS(865), + [anon_sym_DASH_EQ] = ACTIONS(865), + [anon_sym_STAR_EQ] = ACTIONS(865), + [anon_sym_SLASH_EQ] = ACTIONS(865), + [anon_sym_PERCENT_EQ] = ACTIONS(865), + [anon_sym_CARET_EQ] = ACTIONS(865), + [anon_sym_AMP_EQ] = ACTIONS(865), + [anon_sym_PIPE_EQ] = ACTIONS(865), + [anon_sym_LT_LT_EQ] = ACTIONS(865), + [anon_sym_GT_GT_EQ] = ACTIONS(865), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(865), + [anon_sym__] = ACTIONS(863), + [anon_sym_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_COLON_COLON] = ACTIONS(865), + [anon_sym_DASH_GT] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(863), + [anon_sym_as] = ACTIONS(863), + [anon_sym_async] = ACTIONS(863), + [anon_sym_await] = ACTIONS(863), + [anon_sym_break] = ACTIONS(863), + [anon_sym_const] = ACTIONS(863), + [anon_sym_continue] = ACTIONS(863), + [anon_sym_default] = ACTIONS(863), + [anon_sym_enum] = ACTIONS(863), + [anon_sym_fn] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_gen] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_impl] = ACTIONS(863), + [anon_sym_let] = ACTIONS(863), + [anon_sym_loop] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(863), + [anon_sym_pub] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_static] = ACTIONS(863), + [anon_sym_struct] = ACTIONS(863), + [anon_sym_trait] = ACTIONS(863), + [anon_sym_type] = ACTIONS(863), + [anon_sym_union] = ACTIONS(863), + [anon_sym_unsafe] = ACTIONS(863), + [anon_sym_use] = ACTIONS(863), + [anon_sym_where] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [sym_mutable_specifier] = ACTIONS(863), + [sym_integer_literal] = ACTIONS(865), + [aux_sym_string_literal_token1] = ACTIONS(865), + [sym_char_literal] = ACTIONS(865), + [anon_sym_true] = ACTIONS(863), + [anon_sym_false] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(863), + [sym_super] = ACTIONS(863), + [sym_crate] = ACTIONS(863), + [sym_metavariable] = ACTIONS(865), + [sym__raw_string_literal_start] = ACTIONS(865), + [sym_float_literal] = ACTIONS(865), + }, + [STATE(186)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1995), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_let_condition] = STATE(3511), + [sym__let_chain] = STATE(3520), + [sym__condition] = STATE(3168), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -38616,110 +40054,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(188)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2618), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), - [sym_identifier] = ACTIONS(465), + [STATE(187)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1995), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_let_condition] = STATE(3511), + [sym__let_chain] = STATE(3520), + [sym__condition] = STATE(2984), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -38732,110 +40170,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(188)] = { + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [sym_identifier] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_RPAREN] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_RBRACK] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_EQ_GT] = ACTIONS(865), + [anon_sym_COLON] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_u8] = ACTIONS(863), + [anon_sym_i8] = ACTIONS(863), + [anon_sym_u16] = ACTIONS(863), + [anon_sym_i16] = ACTIONS(863), + [anon_sym_u32] = ACTIONS(863), + [anon_sym_i32] = ACTIONS(863), + [anon_sym_u64] = ACTIONS(863), + [anon_sym_i64] = ACTIONS(863), + [anon_sym_u128] = ACTIONS(863), + [anon_sym_i128] = ACTIONS(863), + [anon_sym_isize] = ACTIONS(863), + [anon_sym_usize] = ACTIONS(863), + [anon_sym_f32] = ACTIONS(863), + [anon_sym_f64] = ACTIONS(863), + [anon_sym_bool] = ACTIONS(863), + [anon_sym_str] = ACTIONS(863), + [anon_sym_char] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_CARET] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_LT_LT] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(863), + [anon_sym_PLUS_EQ] = ACTIONS(865), + [anon_sym_DASH_EQ] = ACTIONS(865), + [anon_sym_STAR_EQ] = ACTIONS(865), + [anon_sym_SLASH_EQ] = ACTIONS(865), + [anon_sym_PERCENT_EQ] = ACTIONS(865), + [anon_sym_CARET_EQ] = ACTIONS(865), + [anon_sym_AMP_EQ] = ACTIONS(865), + [anon_sym_PIPE_EQ] = ACTIONS(865), + [anon_sym_LT_LT_EQ] = ACTIONS(865), + [anon_sym_GT_GT_EQ] = ACTIONS(865), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(865), + [anon_sym__] = ACTIONS(863), + [anon_sym_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_COLON_COLON] = ACTIONS(865), + [anon_sym_DASH_GT] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(863), + [anon_sym_as] = ACTIONS(863), + [anon_sym_async] = ACTIONS(863), + [anon_sym_await] = ACTIONS(863), + [anon_sym_break] = ACTIONS(863), + [anon_sym_const] = ACTIONS(863), + [anon_sym_continue] = ACTIONS(863), + [anon_sym_default] = ACTIONS(863), + [anon_sym_enum] = ACTIONS(863), + [anon_sym_fn] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_gen] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_impl] = ACTIONS(863), + [anon_sym_let] = ACTIONS(863), + [anon_sym_loop] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(863), + [anon_sym_pub] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_static] = ACTIONS(863), + [anon_sym_struct] = ACTIONS(863), + [anon_sym_trait] = ACTIONS(863), + [anon_sym_type] = ACTIONS(863), + [anon_sym_union] = ACTIONS(863), + [anon_sym_unsafe] = ACTIONS(863), + [anon_sym_use] = ACTIONS(863), + [anon_sym_where] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [sym_mutable_specifier] = ACTIONS(863), + [sym_integer_literal] = ACTIONS(865), + [aux_sym_string_literal_token1] = ACTIONS(865), + [sym_char_literal] = ACTIONS(865), + [anon_sym_true] = ACTIONS(863), + [anon_sym_false] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(863), + [sym_super] = ACTIONS(863), + [sym_crate] = ACTIONS(863), + [sym_metavariable] = ACTIONS(865), + [sym__raw_string_literal_start] = ACTIONS(865), + [sym_float_literal] = ACTIONS(865), + }, [STATE(189)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2727), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1995), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_let_condition] = STATE(3511), + [sym__let_chain] = STATE(3520), + [sym__condition] = STATE(3026), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(189), [sym_block_comment] = STATE(189), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -38848,110 +40402,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(190)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2663), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1995), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_let_condition] = STATE(3511), + [sym__let_chain] = STATE(3520), + [sym__condition] = STATE(3112), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(190), [sym_block_comment] = STATE(190), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -38964,110 +40518,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(191)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2713), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1995), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_let_condition] = STATE(3511), + [sym__let_chain] = STATE(3520), + [sym__condition] = STATE(3125), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(191), [sym_block_comment] = STATE(191), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -39080,114 +40634,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(192)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2714), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2181), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(192), [sym_block_comment] = STATE(192), - [sym_identifier] = ACTIONS(465), + [aux_sym_mod_item_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1033), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [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(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [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(475), + [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(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [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), @@ -39196,110 +40750,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, [STATE(193)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2733), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1995), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_let_condition] = STATE(3511), + [sym__let_chain] = STATE(3520), + [sym__condition] = STATE(3206), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(193), [sym_block_comment] = STATE(193), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -39312,110 +40866,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(194)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2748), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1995), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_let_condition] = STATE(3511), + [sym__let_chain] = STATE(3520), + [sym__condition] = STATE(2957), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(194), [sym_block_comment] = STATE(194), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -39428,110 +40982,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(195)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2749), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1995), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_let_condition] = STATE(3511), + [sym__let_chain] = STATE(3520), + [sym__condition] = STATE(2959), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(195), [sym_block_comment] = STATE(195), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -39544,110 +41098,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(196)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2758), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1995), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_let_condition] = STATE(3511), + [sym__let_chain] = STATE(3520), + [sym__condition] = STATE(2980), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(196), [sym_block_comment] = STATE(196), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(915), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -39660,128 +41214,128 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(197)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(197), [sym_block_comment] = STATE(197), - [sym_identifier] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1035), + [aux_sym_mod_item_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1035), - [anon_sym_RBRACE] = ACTIONS(1035), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_COLON] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_u8] = ACTIONS(1033), - [anon_sym_i8] = ACTIONS(1033), - [anon_sym_u16] = ACTIONS(1033), - [anon_sym_i16] = ACTIONS(1033), - [anon_sym_u32] = ACTIONS(1033), - [anon_sym_i32] = ACTIONS(1033), - [anon_sym_u64] = ACTIONS(1033), - [anon_sym_i64] = ACTIONS(1033), - [anon_sym_u128] = ACTIONS(1033), - [anon_sym_i128] = ACTIONS(1033), - [anon_sym_isize] = ACTIONS(1033), - [anon_sym_usize] = ACTIONS(1033), - [anon_sym_f32] = ACTIONS(1033), - [anon_sym_f64] = ACTIONS(1033), - [anon_sym_bool] = ACTIONS(1033), - [anon_sym_str] = ACTIONS(1033), - [anon_sym_char] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_PERCENT] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1035), - [anon_sym_PIPE_PIPE] = ACTIONS(1035), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [anon_sym_PLUS_EQ] = ACTIONS(1035), - [anon_sym_DASH_EQ] = ACTIONS(1035), - [anon_sym_STAR_EQ] = ACTIONS(1035), - [anon_sym_SLASH_EQ] = ACTIONS(1035), - [anon_sym_PERCENT_EQ] = ACTIONS(1035), - [anon_sym_CARET_EQ] = ACTIONS(1035), - [anon_sym_AMP_EQ] = ACTIONS(1035), - [anon_sym_PIPE_EQ] = ACTIONS(1035), - [anon_sym_LT_LT_EQ] = ACTIONS(1035), - [anon_sym_GT_GT_EQ] = ACTIONS(1035), - [anon_sym_EQ] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1035), - [anon_sym_BANG_EQ] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1035), - [anon_sym_LT_EQ] = ACTIONS(1035), - [anon_sym_AT] = ACTIONS(1035), - [anon_sym__] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT_DOT] = ACTIONS(1033), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1035), - [anon_sym_COLON_COLON] = ACTIONS(1035), - [anon_sym_DASH_GT] = ACTIONS(1035), - [anon_sym_POUND] = ACTIONS(1035), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_async] = ACTIONS(1033), - [anon_sym_await] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_default] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_fn] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_gen] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_impl] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_pub] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(1033), - [anon_sym_struct] = ACTIONS(1033), - [anon_sym_trait] = ACTIONS(1033), - [anon_sym_type] = ACTIONS(1033), - [anon_sym_union] = ACTIONS(1033), - [anon_sym_unsafe] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [sym_mutable_specifier] = ACTIONS(1033), - [sym_integer_literal] = ACTIONS(1035), - [aux_sym_string_literal_token1] = ACTIONS(1035), - [sym_char_literal] = ACTIONS(1035), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1033), - [sym_super] = ACTIONS(1033), - [sym_crate] = ACTIONS(1033), - [sym_metavariable] = ACTIONS(1035), - [sym__raw_string_literal_start] = ACTIONS(1035), - [sym_float_literal] = ACTIONS(1035), + [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), }, [STATE(198)] = { [sym_line_comment] = STATE(198), @@ -39899,57 +41453,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1039), }, [STATE(199)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1942), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2202), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(199), [sym_block_comment] = STATE(199), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [aux_sym_mod_item_repeat1] = STATE(1203), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40129,287 +41683,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1043), }, [STATE(201)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1678), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(201), [sym_block_comment] = STATE(201), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), - [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), + [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(1021), + [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__raw_string_literal_start] = ACTIONS(1021), + [sym_float_literal] = ACTIONS(1021), }, [STATE(202)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2216), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(202), [sym_block_comment] = STATE(202), - [sym_identifier] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(977), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(977), - [anon_sym_u8] = ACTIONS(975), - [anon_sym_i8] = ACTIONS(975), - [anon_sym_u16] = ACTIONS(975), - [anon_sym_i16] = ACTIONS(975), - [anon_sym_u32] = ACTIONS(975), - [anon_sym_i32] = ACTIONS(975), - [anon_sym_u64] = ACTIONS(975), - [anon_sym_i64] = ACTIONS(975), - [anon_sym_u128] = ACTIONS(975), - [anon_sym_i128] = ACTIONS(975), - [anon_sym_isize] = ACTIONS(975), - [anon_sym_usize] = ACTIONS(975), - [anon_sym_f32] = ACTIONS(975), - [anon_sym_f64] = ACTIONS(975), - [anon_sym_bool] = ACTIONS(975), - [anon_sym_str] = ACTIONS(975), - [anon_sym_char] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_STAR_EQ] = ACTIONS(977), - [anon_sym_SLASH_EQ] = ACTIONS(977), - [anon_sym_PERCENT_EQ] = ACTIONS(977), - [anon_sym_CARET_EQ] = ACTIONS(977), - [anon_sym_AMP_EQ] = ACTIONS(977), - [anon_sym_PIPE_EQ] = ACTIONS(977), - [anon_sym_LT_LT_EQ] = ACTIONS(977), - [anon_sym_GT_GT_EQ] = ACTIONS(977), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_AT] = ACTIONS(977), - [anon_sym__] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT_EQ] = ACTIONS(977), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(977), - [anon_sym_DASH_GT] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(977), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_await] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_default] = ACTIONS(975), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_fn] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_gen] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_impl] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_pub] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_static] = ACTIONS(975), - [anon_sym_struct] = ACTIONS(975), - [anon_sym_trait] = ACTIONS(975), - [anon_sym_type] = ACTIONS(975), - [anon_sym_union] = ACTIONS(975), - [anon_sym_unsafe] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [sym_mutable_specifier] = ACTIONS(975), - [sym_integer_literal] = ACTIONS(977), - [aux_sym_string_literal_token1] = ACTIONS(977), - [sym_char_literal] = ACTIONS(977), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(975), - [sym_super] = ACTIONS(975), - [sym_crate] = ACTIONS(975), - [sym__raw_string_literal_start] = ACTIONS(977), - [sym_float_literal] = ACTIONS(977), - }, - [STATE(203)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(203), - [sym_block_comment] = STATE(203), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [aux_sym_mod_item_repeat1] = STATE(1203), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40473,699 +41912,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(203)] = { + [sym_line_comment] = STATE(203), + [sym_block_comment] = STATE(203), + [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(987), + [sym_super] = ACTIONS(987), + [sym_crate] = ACTIONS(987), + [sym__raw_string_literal_start] = ACTIONS(989), + [sym_float_literal] = ACTIONS(989), + }, [STATE(204)] = { [sym_line_comment] = STATE(204), [sym_block_comment] = STATE(204), - [sym_identifier] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_RBRACE] = ACTIONS(1003), - [anon_sym_EQ_GT] = ACTIONS(1003), - [anon_sym_COLON] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_QMARK] = ACTIONS(1003), - [anon_sym_u8] = ACTIONS(1001), - [anon_sym_i8] = ACTIONS(1001), - [anon_sym_u16] = ACTIONS(1001), - [anon_sym_i16] = ACTIONS(1001), - [anon_sym_u32] = ACTIONS(1001), - [anon_sym_i32] = ACTIONS(1001), - [anon_sym_u64] = ACTIONS(1001), - [anon_sym_i64] = ACTIONS(1001), - [anon_sym_u128] = ACTIONS(1001), - [anon_sym_i128] = ACTIONS(1001), - [anon_sym_isize] = ACTIONS(1001), - [anon_sym_usize] = ACTIONS(1001), - [anon_sym_f32] = ACTIONS(1001), - [anon_sym_f64] = ACTIONS(1001), - [anon_sym_bool] = ACTIONS(1001), - [anon_sym_str] = ACTIONS(1001), - [anon_sym_char] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_PERCENT] = ACTIONS(1001), - [anon_sym_CARET] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(1003), - [anon_sym_PIPE_PIPE] = ACTIONS(1003), - [anon_sym_LT_LT] = ACTIONS(1001), - [anon_sym_GT_GT] = ACTIONS(1001), - [anon_sym_PLUS_EQ] = ACTIONS(1003), - [anon_sym_DASH_EQ] = ACTIONS(1003), - [anon_sym_STAR_EQ] = ACTIONS(1003), - [anon_sym_SLASH_EQ] = ACTIONS(1003), - [anon_sym_PERCENT_EQ] = ACTIONS(1003), - [anon_sym_CARET_EQ] = ACTIONS(1003), - [anon_sym_AMP_EQ] = ACTIONS(1003), - [anon_sym_PIPE_EQ] = ACTIONS(1003), - [anon_sym_LT_LT_EQ] = ACTIONS(1003), - [anon_sym_GT_GT_EQ] = ACTIONS(1003), - [anon_sym_EQ] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1003), - [anon_sym_BANG_EQ] = ACTIONS(1003), - [anon_sym_GT] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1003), - [anon_sym_LT_EQ] = ACTIONS(1003), - [anon_sym_AT] = ACTIONS(1003), - [anon_sym__] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1003), - [anon_sym_COMMA] = ACTIONS(1003), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_DASH_GT] = ACTIONS(1003), - [anon_sym_POUND] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1001), - [anon_sym_as] = ACTIONS(1001), - [anon_sym_async] = ACTIONS(1001), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_default] = ACTIONS(1001), - [anon_sym_enum] = ACTIONS(1001), - [anon_sym_fn] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_gen] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_impl] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_loop] = ACTIONS(1001), - [anon_sym_match] = ACTIONS(1001), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_pub] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_struct] = ACTIONS(1001), - [anon_sym_trait] = ACTIONS(1001), - [anon_sym_type] = ACTIONS(1001), - [anon_sym_union] = ACTIONS(1001), - [anon_sym_unsafe] = ACTIONS(1001), - [anon_sym_use] = ACTIONS(1001), - [anon_sym_where] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [sym_mutable_specifier] = ACTIONS(1001), - [sym_integer_literal] = ACTIONS(1003), - [aux_sym_string_literal_token1] = ACTIONS(1003), - [sym_char_literal] = ACTIONS(1003), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1001), - [sym_super] = ACTIONS(1001), - [sym_crate] = ACTIONS(1001), - [sym__raw_string_literal_start] = ACTIONS(1003), - [sym_float_literal] = ACTIONS(1003), - }, - [STATE(205)] = { - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), - [sym_identifier] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_RBRACK] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_EQ_GT] = ACTIONS(909), - [anon_sym_COLON] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(907), - [anon_sym_i8] = ACTIONS(907), - [anon_sym_u16] = ACTIONS(907), - [anon_sym_i16] = ACTIONS(907), - [anon_sym_u32] = ACTIONS(907), - [anon_sym_i32] = ACTIONS(907), - [anon_sym_u64] = ACTIONS(907), - [anon_sym_i64] = ACTIONS(907), - [anon_sym_u128] = ACTIONS(907), - [anon_sym_i128] = ACTIONS(907), - [anon_sym_isize] = ACTIONS(907), - [anon_sym_usize] = ACTIONS(907), - [anon_sym_f32] = ACTIONS(907), - [anon_sym_f64] = ACTIONS(907), - [anon_sym_bool] = ACTIONS(907), - [anon_sym_str] = ACTIONS(907), - [anon_sym_char] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(909), - [anon_sym_PIPE_PIPE] = ACTIONS(909), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS_EQ] = ACTIONS(909), - [anon_sym_DASH_EQ] = ACTIONS(909), - [anon_sym_STAR_EQ] = ACTIONS(909), - [anon_sym_SLASH_EQ] = ACTIONS(909), - [anon_sym_PERCENT_EQ] = ACTIONS(909), - [anon_sym_CARET_EQ] = ACTIONS(909), - [anon_sym_AMP_EQ] = ACTIONS(909), - [anon_sym_PIPE_EQ] = ACTIONS(909), - [anon_sym_LT_LT_EQ] = ACTIONS(909), - [anon_sym_GT_GT_EQ] = ACTIONS(909), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_AT] = ACTIONS(909), - [anon_sym__] = ACTIONS(907), - [anon_sym_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_COMMA] = ACTIONS(909), - [anon_sym_COLON_COLON] = ACTIONS(909), - [anon_sym_DASH_GT] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(907), - [anon_sym_as] = ACTIONS(907), - [anon_sym_async] = ACTIONS(907), - [anon_sym_await] = ACTIONS(907), - [anon_sym_break] = ACTIONS(907), - [anon_sym_const] = ACTIONS(907), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_default] = ACTIONS(907), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_fn] = ACTIONS(907), - [anon_sym_for] = ACTIONS(907), - [anon_sym_gen] = ACTIONS(907), - [anon_sym_if] = ACTIONS(907), - [anon_sym_impl] = ACTIONS(907), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(907), - [anon_sym_match] = ACTIONS(907), - [anon_sym_mod] = ACTIONS(907), - [anon_sym_pub] = ACTIONS(907), - [anon_sym_return] = ACTIONS(907), - [anon_sym_static] = ACTIONS(907), - [anon_sym_struct] = ACTIONS(907), - [anon_sym_trait] = ACTIONS(907), - [anon_sym_type] = ACTIONS(907), - [anon_sym_union] = ACTIONS(907), - [anon_sym_unsafe] = ACTIONS(907), - [anon_sym_use] = ACTIONS(907), - [anon_sym_where] = ACTIONS(907), - [anon_sym_while] = ACTIONS(907), - [sym_mutable_specifier] = ACTIONS(907), - [sym_integer_literal] = ACTIONS(909), - [aux_sym_string_literal_token1] = ACTIONS(909), - [sym_char_literal] = ACTIONS(909), - [anon_sym_true] = ACTIONS(907), - [anon_sym_false] = ACTIONS(907), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(907), - [sym_crate] = ACTIONS(907), - [sym__raw_string_literal_start] = ACTIONS(909), - [sym_float_literal] = ACTIONS(909), - }, - [STATE(206)] = { - [sym_line_comment] = STATE(206), - [sym_block_comment] = STATE(206), - [sym_identifier] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(913), - [anon_sym_RBRACK] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_u8] = ACTIONS(911), - [anon_sym_i8] = ACTIONS(911), - [anon_sym_u16] = ACTIONS(911), - [anon_sym_i16] = ACTIONS(911), - [anon_sym_u32] = ACTIONS(911), - [anon_sym_i32] = ACTIONS(911), - [anon_sym_u64] = ACTIONS(911), - [anon_sym_i64] = ACTIONS(911), - [anon_sym_u128] = ACTIONS(911), - [anon_sym_i128] = ACTIONS(911), - [anon_sym_isize] = ACTIONS(911), - [anon_sym_usize] = ACTIONS(911), - [anon_sym_f32] = ACTIONS(911), - [anon_sym_f64] = ACTIONS(911), - [anon_sym_bool] = ACTIONS(911), - [anon_sym_str] = ACTIONS(911), - [anon_sym_char] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_PERCENT] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(913), - [anon_sym_PIPE_PIPE] = ACTIONS(913), - [anon_sym_LT_LT] = ACTIONS(911), - [anon_sym_GT_GT] = ACTIONS(911), - [anon_sym_PLUS_EQ] = ACTIONS(913), - [anon_sym_DASH_EQ] = ACTIONS(913), - [anon_sym_STAR_EQ] = ACTIONS(913), - [anon_sym_SLASH_EQ] = ACTIONS(913), - [anon_sym_PERCENT_EQ] = ACTIONS(913), - [anon_sym_CARET_EQ] = ACTIONS(913), - [anon_sym_AMP_EQ] = ACTIONS(913), - [anon_sym_PIPE_EQ] = ACTIONS(913), - [anon_sym_LT_LT_EQ] = ACTIONS(913), - [anon_sym_GT_GT_EQ] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(913), - [anon_sym_BANG_EQ] = ACTIONS(913), - [anon_sym_GT] = ACTIONS(911), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(913), - [anon_sym_LT_EQ] = ACTIONS(913), - [anon_sym_AT] = ACTIONS(913), - [anon_sym__] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT_DOT] = ACTIONS(913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym_DASH_GT] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(911), - [anon_sym_as] = ACTIONS(911), - [anon_sym_async] = ACTIONS(911), - [anon_sym_await] = ACTIONS(911), - [anon_sym_break] = ACTIONS(911), - [anon_sym_const] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(911), - [anon_sym_default] = ACTIONS(911), - [anon_sym_enum] = ACTIONS(911), - [anon_sym_fn] = ACTIONS(911), - [anon_sym_for] = ACTIONS(911), - [anon_sym_gen] = ACTIONS(911), - [anon_sym_if] = ACTIONS(911), - [anon_sym_impl] = ACTIONS(911), - [anon_sym_let] = ACTIONS(911), - [anon_sym_loop] = ACTIONS(911), - [anon_sym_match] = ACTIONS(911), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_pub] = ACTIONS(911), - [anon_sym_return] = ACTIONS(911), - [anon_sym_static] = ACTIONS(911), - [anon_sym_struct] = ACTIONS(911), - [anon_sym_trait] = ACTIONS(911), - [anon_sym_type] = ACTIONS(911), - [anon_sym_union] = ACTIONS(911), - [anon_sym_unsafe] = ACTIONS(911), - [anon_sym_use] = ACTIONS(911), - [anon_sym_where] = ACTIONS(911), - [anon_sym_while] = ACTIONS(911), - [sym_mutable_specifier] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(913), - [aux_sym_string_literal_token1] = ACTIONS(913), - [sym_char_literal] = ACTIONS(913), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(911), - [sym_super] = ACTIONS(911), - [sym_crate] = ACTIONS(911), - [sym__raw_string_literal_start] = ACTIONS(913), - [sym_float_literal] = ACTIONS(913), - }, - [STATE(207)] = { - [sym_line_comment] = STATE(207), - [sym_block_comment] = STATE(207), - [sym_identifier] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_RBRACK] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_EQ_GT] = ACTIONS(917), - [anon_sym_COLON] = ACTIONS(915), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_QMARK] = ACTIONS(917), - [anon_sym_u8] = ACTIONS(915), - [anon_sym_i8] = ACTIONS(915), - [anon_sym_u16] = ACTIONS(915), - [anon_sym_i16] = ACTIONS(915), - [anon_sym_u32] = ACTIONS(915), - [anon_sym_i32] = ACTIONS(915), - [anon_sym_u64] = ACTIONS(915), - [anon_sym_i64] = ACTIONS(915), - [anon_sym_u128] = ACTIONS(915), - [anon_sym_i128] = ACTIONS(915), - [anon_sym_isize] = ACTIONS(915), - [anon_sym_usize] = ACTIONS(915), - [anon_sym_f32] = ACTIONS(915), - [anon_sym_f64] = ACTIONS(915), - [anon_sym_bool] = ACTIONS(915), - [anon_sym_str] = ACTIONS(915), - [anon_sym_char] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(915), - [anon_sym_PERCENT] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_AMP] = ACTIONS(915), - [anon_sym_PIPE] = ACTIONS(915), - [anon_sym_AMP_AMP] = ACTIONS(917), - [anon_sym_PIPE_PIPE] = ACTIONS(917), - [anon_sym_LT_LT] = ACTIONS(915), - [anon_sym_GT_GT] = ACTIONS(915), - [anon_sym_PLUS_EQ] = ACTIONS(917), - [anon_sym_DASH_EQ] = ACTIONS(917), - [anon_sym_STAR_EQ] = ACTIONS(917), - [anon_sym_SLASH_EQ] = ACTIONS(917), - [anon_sym_PERCENT_EQ] = ACTIONS(917), - [anon_sym_CARET_EQ] = ACTIONS(917), - [anon_sym_AMP_EQ] = ACTIONS(917), - [anon_sym_PIPE_EQ] = ACTIONS(917), - [anon_sym_LT_LT_EQ] = ACTIONS(917), - [anon_sym_GT_GT_EQ] = ACTIONS(917), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(915), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_AT] = ACTIONS(917), - [anon_sym__] = ACTIONS(915), - [anon_sym_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_COMMA] = ACTIONS(917), - [anon_sym_COLON_COLON] = ACTIONS(917), - [anon_sym_DASH_GT] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(917), - [anon_sym_SQUOTE] = ACTIONS(915), - [anon_sym_as] = ACTIONS(915), - [anon_sym_async] = ACTIONS(915), - [anon_sym_await] = ACTIONS(915), - [anon_sym_break] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_default] = ACTIONS(915), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_gen] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_impl] = ACTIONS(915), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(915), - [anon_sym_match] = ACTIONS(915), - [anon_sym_mod] = ACTIONS(915), - [anon_sym_pub] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_static] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [anon_sym_trait] = ACTIONS(915), - [anon_sym_type] = ACTIONS(915), - [anon_sym_union] = ACTIONS(915), - [anon_sym_unsafe] = ACTIONS(915), - [anon_sym_use] = ACTIONS(915), - [anon_sym_where] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [sym_mutable_specifier] = ACTIONS(915), - [sym_integer_literal] = ACTIONS(917), - [aux_sym_string_literal_token1] = ACTIONS(917), - [sym_char_literal] = ACTIONS(917), - [anon_sym_true] = ACTIONS(915), - [anon_sym_false] = ACTIONS(915), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(915), - [sym_super] = ACTIONS(915), - [sym_crate] = ACTIONS(915), - [sym__raw_string_literal_start] = ACTIONS(917), - [sym_float_literal] = ACTIONS(917), - }, - [STATE(208)] = { - [sym_line_comment] = STATE(208), - [sym_block_comment] = STATE(208), - [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), - }, - [STATE(209)] = { - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), - [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(1027), - [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__raw_string_literal_start] = ACTIONS(1027), - [sym_float_literal] = ACTIONS(1027), - }, - [STATE(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), @@ -41278,173 +42142,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1047), [sym_float_literal] = ACTIONS(1047), }, - [STATE(211)] = { - [sym_line_comment] = STATE(211), - [sym_block_comment] = STATE(211), - [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(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym__raw_string_literal_start] = ACTIONS(1051), - [sym_float_literal] = ACTIONS(1051), - }, - [STATE(212)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1937), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(212), - [sym_block_comment] = STATE(212), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [STATE(205)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1909), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [aux_sym_mod_item_repeat1] = STATE(1203), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41508,58 +42257,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), }, - [STATE(213)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [STATE(206)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1949), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [aux_sym_mod_item_repeat1] = STATE(1203), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41623,175 +42372,750 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(214)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1664), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(214), - [sym_block_comment] = STATE(214), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), - [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), + [STATE(207)] = { + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), + [sym_identifier] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_RBRACK] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_EQ_GT] = ACTIONS(963), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(963), + [anon_sym_u8] = ACTIONS(961), + [anon_sym_i8] = ACTIONS(961), + [anon_sym_u16] = ACTIONS(961), + [anon_sym_i16] = ACTIONS(961), + [anon_sym_u32] = ACTIONS(961), + [anon_sym_i32] = ACTIONS(961), + [anon_sym_u64] = ACTIONS(961), + [anon_sym_i64] = ACTIONS(961), + [anon_sym_u128] = ACTIONS(961), + [anon_sym_i128] = ACTIONS(961), + [anon_sym_isize] = ACTIONS(961), + [anon_sym_usize] = ACTIONS(961), + [anon_sym_f32] = ACTIONS(961), + [anon_sym_f64] = ACTIONS(961), + [anon_sym_bool] = ACTIONS(961), + [anon_sym_str] = ACTIONS(961), + [anon_sym_char] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(963), + [anon_sym_PIPE_PIPE] = ACTIONS(963), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PERCENT_EQ] = ACTIONS(963), + [anon_sym_CARET_EQ] = ACTIONS(963), + [anon_sym_AMP_EQ] = ACTIONS(963), + [anon_sym_PIPE_EQ] = ACTIONS(963), + [anon_sym_LT_LT_EQ] = ACTIONS(963), + [anon_sym_GT_GT_EQ] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_BANG_EQ] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(963), + [anon_sym_LT_EQ] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(963), + [anon_sym__] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT_EQ] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(963), + [anon_sym_COLON_COLON] = ACTIONS(963), + [anon_sym_DASH_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(963), + [anon_sym_SQUOTE] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_async] = ACTIONS(961), + [anon_sym_await] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_default] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_fn] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_gen] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_impl] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_mod] = ACTIONS(961), + [anon_sym_pub] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_trait] = ACTIONS(961), + [anon_sym_type] = ACTIONS(961), + [anon_sym_union] = ACTIONS(961), + [anon_sym_unsafe] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_where] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [sym_mutable_specifier] = ACTIONS(961), + [sym_integer_literal] = ACTIONS(963), + [aux_sym_string_literal_token1] = ACTIONS(963), + [sym_char_literal] = ACTIONS(963), + [anon_sym_true] = ACTIONS(961), + [anon_sym_false] = ACTIONS(961), [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(961), + [sym_super] = ACTIONS(961), + [sym_crate] = ACTIONS(961), + [sym__raw_string_literal_start] = ACTIONS(963), + [sym_float_literal] = ACTIONS(963), }, - [STATE(215)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1701), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(215), - [sym_block_comment] = STATE(215), - [aux_sym_tuple_expression_repeat1] = STATE(222), + [STATE(208)] = { + [sym_line_comment] = STATE(208), + [sym_block_comment] = STATE(208), + [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(993), + [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__raw_string_literal_start] = ACTIONS(993), + [sym_float_literal] = ACTIONS(993), + }, + [STATE(209)] = { + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [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(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym__raw_string_literal_start] = ACTIONS(1051), + [sym_float_literal] = ACTIONS(1051), + }, + [STATE(210)] = { + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), + [sym_identifier] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_RBRACK] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_COLON] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_QMARK] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(901), + [anon_sym_i8] = ACTIONS(901), + [anon_sym_u16] = ACTIONS(901), + [anon_sym_i16] = ACTIONS(901), + [anon_sym_u32] = ACTIONS(901), + [anon_sym_i32] = ACTIONS(901), + [anon_sym_u64] = ACTIONS(901), + [anon_sym_i64] = ACTIONS(901), + [anon_sym_u128] = ACTIONS(901), + [anon_sym_i128] = ACTIONS(901), + [anon_sym_isize] = ACTIONS(901), + [anon_sym_usize] = ACTIONS(901), + [anon_sym_f32] = ACTIONS(901), + [anon_sym_f64] = ACTIONS(901), + [anon_sym_bool] = ACTIONS(901), + [anon_sym_str] = ACTIONS(901), + [anon_sym_char] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_PERCENT] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_AMP_AMP] = ACTIONS(903), + [anon_sym_PIPE_PIPE] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_PLUS_EQ] = ACTIONS(903), + [anon_sym_DASH_EQ] = ACTIONS(903), + [anon_sym_STAR_EQ] = ACTIONS(903), + [anon_sym_SLASH_EQ] = ACTIONS(903), + [anon_sym_PERCENT_EQ] = ACTIONS(903), + [anon_sym_CARET_EQ] = ACTIONS(903), + [anon_sym_AMP_EQ] = ACTIONS(903), + [anon_sym_PIPE_EQ] = ACTIONS(903), + [anon_sym_LT_LT_EQ] = ACTIONS(903), + [anon_sym_GT_GT_EQ] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_AT] = ACTIONS(903), + [anon_sym__] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_COLON_COLON] = ACTIONS(903), + [anon_sym_DASH_GT] = ACTIONS(903), + [anon_sym_POUND] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_await] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [anon_sym_enum] = ACTIONS(901), + [anon_sym_fn] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_gen] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_impl] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_pub] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_static] = ACTIONS(901), + [anon_sym_struct] = ACTIONS(901), + [anon_sym_trait] = ACTIONS(901), + [anon_sym_type] = ACTIONS(901), + [anon_sym_union] = ACTIONS(901), + [anon_sym_unsafe] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [sym_mutable_specifier] = ACTIONS(901), + [sym_integer_literal] = ACTIONS(903), + [aux_sym_string_literal_token1] = ACTIONS(903), + [sym_char_literal] = ACTIONS(903), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(901), + [sym_super] = ACTIONS(901), + [sym_crate] = ACTIONS(901), + [sym__raw_string_literal_start] = ACTIONS(903), + [sym_float_literal] = ACTIONS(903), + }, + [STATE(211)] = { + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), + [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(925), + [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__raw_string_literal_start] = ACTIONS(925), + [sym_float_literal] = ACTIONS(925), + }, + [STATE(212)] = { + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_RBRACK] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_EQ_GT] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(979), + [anon_sym_i8] = ACTIONS(979), + [anon_sym_u16] = ACTIONS(979), + [anon_sym_i16] = ACTIONS(979), + [anon_sym_u32] = ACTIONS(979), + [anon_sym_i32] = ACTIONS(979), + [anon_sym_u64] = ACTIONS(979), + [anon_sym_i64] = ACTIONS(979), + [anon_sym_u128] = ACTIONS(979), + [anon_sym_i128] = ACTIONS(979), + [anon_sym_isize] = ACTIONS(979), + [anon_sym_usize] = ACTIONS(979), + [anon_sym_f32] = ACTIONS(979), + [anon_sym_f64] = ACTIONS(979), + [anon_sym_bool] = ACTIONS(979), + [anon_sym_str] = ACTIONS(979), + [anon_sym_char] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_SLASH] = ACTIONS(979), + [anon_sym_PERCENT] = ACTIONS(979), + [anon_sym_CARET] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [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(979), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(981), + [anon_sym__] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(979), + [anon_sym_DOT_DOT] = ACTIONS(979), + [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(979), + [anon_sym_as] = ACTIONS(979), + [anon_sym_async] = ACTIONS(979), + [anon_sym_await] = ACTIONS(979), + [anon_sym_break] = ACTIONS(979), + [anon_sym_const] = ACTIONS(979), + [anon_sym_continue] = ACTIONS(979), + [anon_sym_default] = ACTIONS(979), + [anon_sym_enum] = ACTIONS(979), + [anon_sym_fn] = ACTIONS(979), + [anon_sym_for] = ACTIONS(979), + [anon_sym_gen] = ACTIONS(979), + [anon_sym_if] = ACTIONS(979), + [anon_sym_impl] = ACTIONS(979), + [anon_sym_let] = ACTIONS(979), + [anon_sym_loop] = ACTIONS(979), + [anon_sym_match] = ACTIONS(979), + [anon_sym_mod] = ACTIONS(979), + [anon_sym_pub] = ACTIONS(979), + [anon_sym_return] = ACTIONS(979), + [anon_sym_static] = ACTIONS(979), + [anon_sym_struct] = ACTIONS(979), + [anon_sym_trait] = ACTIONS(979), + [anon_sym_type] = ACTIONS(979), + [anon_sym_union] = ACTIONS(979), + [anon_sym_unsafe] = ACTIONS(979), + [anon_sym_use] = ACTIONS(979), + [anon_sym_where] = ACTIONS(979), + [anon_sym_while] = ACTIONS(979), + [sym_mutable_specifier] = ACTIONS(979), + [sym_integer_literal] = ACTIONS(981), + [aux_sym_string_literal_token1] = ACTIONS(981), + [sym_char_literal] = ACTIONS(981), + [anon_sym_true] = ACTIONS(979), + [anon_sym_false] = ACTIONS(979), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(979), + [sym_super] = ACTIONS(979), + [sym_crate] = ACTIONS(979), + [sym__raw_string_literal_start] = ACTIONS(981), + [sym_float_literal] = ACTIONS(981), + }, + [STATE(213)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [aux_sym_mod_item_repeat1] = STATE(1203), [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), @@ -41819,6 +43143,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), @@ -41852,56 +43177,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), }, - [STATE(216)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1574), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1532), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), + [STATE(214)] = { + [sym_attribute_item] = STATE(1204), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), + [aux_sym_mod_item_repeat1] = STATE(205), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41924,15 +43251,14 @@ 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(1055), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1059), + [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -41966,105 +43292,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), }, - [STATE(217)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(339), + [STATE(215)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2020), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1682), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1061), [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(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym__] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1061), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(487), [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(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -42073,67 +43399,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(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(218)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), - [aux_sym_tuple_expression_repeat1] = STATE(224), + [STATE(216)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2071), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1706), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1061), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42154,13 +43478,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(1063), [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), @@ -42194,288 +43520,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), }, - [STATE(219)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1447), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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), - [sym_mutable_specifier] = ACTIONS(1069), - [anon_sym_raw] = ACTIONS(1071), - [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), - }, - [STATE(220)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1447), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [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(475), - [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(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1075), - [anon_sym_raw] = ACTIONS(1077), - [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(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), - }, - [STATE(221)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [aux_sym_tuple_expression_repeat1] = STATE(217), + [STATE(217)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1800), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1079), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42496,13 +43592,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(1067), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1071), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42536,288 +43634,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), }, - [STATE(222)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1929), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1084), - [anon_sym_RPAREN] = ACTIONS(1087), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_u8] = ACTIONS(1098), - [anon_sym_i8] = ACTIONS(1098), - [anon_sym_u16] = ACTIONS(1098), - [anon_sym_i16] = ACTIONS(1098), - [anon_sym_u32] = ACTIONS(1098), - [anon_sym_i32] = ACTIONS(1098), - [anon_sym_u64] = ACTIONS(1098), - [anon_sym_i64] = ACTIONS(1098), - [anon_sym_u128] = ACTIONS(1098), - [anon_sym_i128] = ACTIONS(1098), - [anon_sym_isize] = ACTIONS(1098), - [anon_sym_usize] = ACTIONS(1098), - [anon_sym_f32] = ACTIONS(1098), - [anon_sym_f64] = ACTIONS(1098), - [anon_sym_bool] = ACTIONS(1098), - [anon_sym_str] = ACTIONS(1098), - [anon_sym_char] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_DOT_DOT] = ACTIONS(1110), - [anon_sym_COLON_COLON] = ACTIONS(1113), - [anon_sym_SQUOTE] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1119), - [anon_sym_break] = ACTIONS(1122), - [anon_sym_const] = ACTIONS(1125), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_gen] = ACTIONS(1137), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_loop] = ACTIONS(1143), - [anon_sym_match] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1149), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(1131), - [anon_sym_unsafe] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1161), - [anon_sym_move] = ACTIONS(1164), - [anon_sym_try] = ACTIONS(1167), - [sym_integer_literal] = ACTIONS(1170), - [aux_sym_string_literal_token1] = ACTIONS(1173), - [sym_char_literal] = ACTIONS(1170), - [anon_sym_true] = ACTIONS(1176), - [anon_sym_false] = ACTIONS(1176), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1179), - [sym_super] = ACTIONS(1182), - [sym_crate] = ACTIONS(1182), - [sym_metavariable] = ACTIONS(1185), - [sym__raw_string_literal_start] = ACTIONS(1188), - [sym_float_literal] = ACTIONS(1170), - }, - [STATE(223)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1532), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(503), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1055), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [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_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [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(475), - [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(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), - }, - [STATE(224)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [aux_sym_tuple_expression_repeat1] = STATE(222), + [STATE(218)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2078), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1682), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1191), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42838,13 +43706,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(1057), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1061), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42878,60 +43748,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), }, - [STATE(225)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), - [aux_sym_tuple_expression_repeat1] = STATE(232), + [STATE(219)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2094), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1800), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1193), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42952,13 +43820,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(1067), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1071), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42992,289 +43862,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(226)] = { - [sym_attribute_item] = STATE(394), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(2995), - [sym_variadic_parameter] = STATE(2995), - [sym_parameter] = STATE(2995), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2730), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1217), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1225), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(227)] = { - [sym_attribute_item] = STATE(419), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(2859), - [sym_variadic_parameter] = STATE(2859), - [sym_parameter] = STATE(2859), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2651), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1271), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(220)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2107), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2022), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1077), + [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), }, - [STATE(228)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1840), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), + [STATE(221)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2110), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2072), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(965), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -43293,14 +44049,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym__] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1281), + [anon_sym_DASH_GT] = ACTIONS(1081), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -43334,61 +44090,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(229)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1913), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), + [STATE(222)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2113), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(1968), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(965), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -43407,14 +44163,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1283), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym__] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1285), + [anon_sym_DASH_GT] = ACTIONS(1085), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -43448,105 +44204,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), }, - [STATE(230)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1708), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1532), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), - [sym_identifier] = ACTIONS(465), + [STATE(223)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1683), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1055), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(509), [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_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [sym_mutable_specifier] = ACTIONS(1089), + [anon_sym_raw] = ACTIONS(1091), + [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), @@ -43555,112 +44311,112 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(231)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1672), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1511), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), - [sym_identifier] = ACTIONS(465), + [STATE(224)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1965), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [aux_sym_tuple_expression_repeat1] = STATE(246), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(503), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [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(1287), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1289), + [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(475), + [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(475), + [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), @@ -43669,67 +44425,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(232)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), - [aux_sym_tuple_expression_repeat1] = STATE(222), + [STATE(225)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1965), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [aux_sym_tuple_expression_repeat1] = STATE(247), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43790,60 +44546,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), }, - [STATE(233)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [aux_sym_tuple_expression_repeat1] = STATE(215), + [STATE(226)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2128), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [aux_sym_tuple_expression_repeat1] = STATE(228), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1095), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43904,333 +44660,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(234)] = { - [sym_attribute_item] = STATE(407), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3068), - [sym_variadic_parameter] = STATE(3068), - [sym_parameter] = STATE(3068), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2548), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1297), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1305), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1313), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(235)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1858), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [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(989), - [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(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1321), - [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), + [STATE(227)] = { + [sym_attribute_item] = STATE(430), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3240), + [sym_variadic_parameter] = STATE(3240), + [sym_parameter] = STATE(3240), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3066), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_RPAREN] = ACTIONS(1101), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1119), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(236)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1748), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1511), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), - [sym_identifier] = ACTIONS(465), + [STATE(228)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2134), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), + [aux_sym_tuple_expression_repeat1] = STATE(246), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1173), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_AMP] = ACTIONS(1065), + [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(1287), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1289), + [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(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [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_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(483), - [anon_sym_move] = ACTIONS(485), + [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), @@ -44239,112 +44881,112 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(237)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1688), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1472), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), - [sym_identifier] = ACTIONS(465), + [STATE(229)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2134), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [aux_sym_tuple_expression_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1173), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(503), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [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(1323), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1325), + [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(475), + [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(475), + [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), @@ -44353,65 +44995,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(238)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1472), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), + [STATE(230)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2138), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [aux_sym_tuple_expression_repeat1] = STATE(246), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1175), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44432,15 +45076,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(1323), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1325), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -44474,176 +45116,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(239)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_let_condition] = STATE(2587), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [STATE(231)] = { + [sym_attribute_item] = STATE(407), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3237), + [sym_variadic_parameter] = STATE(3237), + [sym_parameter] = STATE(3237), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3105), + [sym_bracketed_type] = STATE(4153), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3854), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2862), + [sym_scoped_identifier] = STATE(2494), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2852), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1183), + [anon_sym_i8] = ACTIONS(1183), + [anon_sym_u16] = ACTIONS(1183), + [anon_sym_i16] = ACTIONS(1183), + [anon_sym_u32] = ACTIONS(1183), + [anon_sym_i32] = ACTIONS(1183), + [anon_sym_u64] = ACTIONS(1183), + [anon_sym_i64] = ACTIONS(1183), + [anon_sym_u128] = ACTIONS(1183), + [anon_sym_i128] = ACTIONS(1183), + [anon_sym_isize] = ACTIONS(1183), + [anon_sym_usize] = ACTIONS(1183), + [anon_sym_f32] = ACTIONS(1183), + [anon_sym_f64] = ACTIONS(1183), + [anon_sym_bool] = ACTIONS(1183), + [anon_sym_str] = ACTIONS(1183), + [anon_sym_char] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1189), + [anon_sym_COLON_COLON] = ACTIONS(1191), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1195), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1197), + [sym_super] = ACTIONS(1199), + [sym_crate] = ACTIONS(1199), + [sym_metavariable] = ACTIONS(1201), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(232)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2042), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1800), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym__] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1071), [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(995), - [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(483), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(485), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(487), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(240)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1923), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_let_condition] = STATE(2587), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), + [STATE(233)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(1967), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [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_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(965), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -44661,12 +45416,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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -44677,7 +45432,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(995), [anon_sym_loop] = ACTIONS(433), [anon_sym_match] = ACTIONS(435), [anon_sym_return] = ACTIONS(437), @@ -44685,6 +45439,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(425), [anon_sym_unsafe] = ACTIONS(441), [anon_sym_while] = ACTIONS(443), + [sym_mutable_specifier] = ACTIONS(1203), + [anon_sym_raw] = ACTIONS(1205), [anon_sym_yield] = ACTIONS(445), [anon_sym_move] = ACTIONS(447), [anon_sym_try] = ACTIONS(449), @@ -44702,105 +45458,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), }, - [STATE(241)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1667), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(2587), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), - [sym_identifier] = ACTIONS(465), + [STATE(234)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2130), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [aux_sym_tuple_expression_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1207), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [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(471), + [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(475), + [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(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [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), @@ -44809,112 +45565,112 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(242)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(2587), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(242), - [sym_block_comment] = STATE(242), - [sym_identifier] = ACTIONS(465), + [STATE(235)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1683), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(487), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [sym_mutable_specifier] = ACTIONS(1209), + [anon_sym_raw] = ACTIONS(1211), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -44923,112 +45679,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(243)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1560), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1511), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(243), - [sym_block_comment] = STATE(243), - [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(349), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [STATE(236)] = { + [sym_attribute_item] = STATE(403), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3415), + [sym_variadic_parameter] = STATE(3415), + [sym_parameter] = STATE(3415), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3192), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_RPAREN] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1217), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(237)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1960), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1706), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1287), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1289), + [anon_sym__] = ACTIONS(1063), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), + [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(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [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(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [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), @@ -45037,226 +45907,112 @@ 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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(244)] = { - [sym_attribute_item] = STATE(407), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3068), - [sym_variadic_parameter] = STATE(3068), - [sym_parameter] = STATE(3068), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2548), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(244), - [sym_block_comment] = STATE(244), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1329), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1313), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(245)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1784), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1532), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(245), - [sym_block_comment] = STATE(245), - [sym_identifier] = ACTIONS(339), + [STATE(238)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1936), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1682), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [sym_identifier] = ACTIONS(475), [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(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [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__] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1061), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [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(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [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), @@ -45265,68 +46021,183 @@ 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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(246)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(246), - [sym_block_comment] = STATE(246), + [STATE(239)] = { + [sym_attribute_item] = STATE(407), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3237), + [sym_variadic_parameter] = STATE(3237), + [sym_parameter] = STATE(3237), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3105), + [sym_bracketed_type] = STATE(4153), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3854), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2862), + [sym_scoped_identifier] = STATE(2494), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2852), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1183), + [anon_sym_i8] = ACTIONS(1183), + [anon_sym_u16] = ACTIONS(1183), + [anon_sym_i16] = ACTIONS(1183), + [anon_sym_u32] = ACTIONS(1183), + [anon_sym_i32] = ACTIONS(1183), + [anon_sym_u64] = ACTIONS(1183), + [anon_sym_i64] = ACTIONS(1183), + [anon_sym_u128] = ACTIONS(1183), + [anon_sym_i128] = ACTIONS(1183), + [anon_sym_isize] = ACTIONS(1183), + [anon_sym_usize] = ACTIONS(1183), + [anon_sym_f32] = ACTIONS(1183), + [anon_sym_f64] = ACTIONS(1183), + [anon_sym_bool] = ACTIONS(1183), + [anon_sym_str] = ACTIONS(1183), + [anon_sym_char] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1221), + [anon_sym_COLON_COLON] = ACTIONS(1191), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1195), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1197), + [sym_super] = ACTIONS(1199), + [sym_crate] = ACTIONS(1199), + [sym_metavariable] = ACTIONS(1201), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(240)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2084), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_let_condition] = STATE(3043), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [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(465), + [anon_sym_LBRACK] = ACTIONS(467), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(965), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -45344,12 +46215,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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -45360,6 +46231,7 @@ 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(971), [anon_sym_loop] = ACTIONS(433), [anon_sym_match] = ACTIONS(435), [anon_sym_return] = ACTIONS(437), @@ -45367,8 +46239,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(425), [anon_sym_unsafe] = ACTIONS(441), [anon_sym_while] = ACTIONS(443), - [sym_mutable_specifier] = ACTIONS(1331), - [anon_sym_raw] = ACTIONS(1333), [anon_sym_yield] = ACTIONS(445), [anon_sym_move] = ACTIONS(447), [anon_sym_try] = ACTIONS(449), @@ -45386,170 +46256,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(247)] = { - [sym_attribute_item] = STATE(407), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3068), - [sym_variadic_parameter] = STATE(3068), - [sym_parameter] = STATE(3068), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2548), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(247), - [sym_block_comment] = STATE(247), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1313), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(241)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2200), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_let_condition] = STATE(3043), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(969), + [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(971), + [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), }, - [STATE(248)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1792), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1472), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(248), - [sym_block_comment] = STATE(248), + [STATE(242)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1915), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1800), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1071), + [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(485), + [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(485), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(243)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1832), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1682), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45577,10 +46561,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(1323), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1325), + [anon_sym_DASH_GT] = ACTIONS(1061), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -45614,56 +46598,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(249)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1447), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(249), - [sym_block_comment] = STATE(249), + [STATE(244)] = { + [sym_attribute_item] = STATE(407), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3237), + [sym_variadic_parameter] = STATE(3237), + [sym_parameter] = STATE(3237), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3105), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1227), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(245)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1683), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(245), + [sym_block_comment] = STATE(245), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45691,7 +46789,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -45709,8 +46807,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(1339), - [anon_sym_raw] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1229), + [anon_sym_raw] = ACTIONS(1231), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -45728,58 +46826,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), }, - [STATE(250)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1809), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1511), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), + [STATE(246)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2195), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(246), + [sym_block_comment] = STATE(246), + [aux_sym_tuple_expression_repeat1] = STATE(246), + [sym_identifier] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1236), + [anon_sym_RPAREN] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_u8] = ACTIONS(1250), + [anon_sym_i8] = ACTIONS(1250), + [anon_sym_u16] = ACTIONS(1250), + [anon_sym_i16] = ACTIONS(1250), + [anon_sym_u32] = ACTIONS(1250), + [anon_sym_i32] = ACTIONS(1250), + [anon_sym_u64] = ACTIONS(1250), + [anon_sym_i64] = ACTIONS(1250), + [anon_sym_u128] = ACTIONS(1250), + [anon_sym_i128] = ACTIONS(1250), + [anon_sym_isize] = ACTIONS(1250), + [anon_sym_usize] = ACTIONS(1250), + [anon_sym_f32] = ACTIONS(1250), + [anon_sym_f64] = ACTIONS(1250), + [anon_sym_bool] = ACTIONS(1250), + [anon_sym_str] = ACTIONS(1250), + [anon_sym_char] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1262), + [anon_sym_COLON_COLON] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1277), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_gen] = ACTIONS(1289), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_loop] = ACTIONS(1295), + [anon_sym_match] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_unsafe] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1316), + [anon_sym_try] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1322), + [aux_sym_string_literal_token1] = ACTIONS(1325), + [sym_char_literal] = ACTIONS(1322), + [anon_sym_true] = ACTIONS(1328), + [anon_sym_false] = ACTIONS(1328), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1331), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_metavariable] = ACTIONS(1337), + [sym__raw_string_literal_start] = ACTIONS(1340), + [sym_float_literal] = ACTIONS(1322), + }, + [STATE(247)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1996), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), + [aux_sym_tuple_expression_repeat1] = STATE(246), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1343), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -45800,15 +47014,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(1287), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1289), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -45842,219 +47054,561 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(251)] = { + [STATE(248)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1920), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_let_condition] = STATE(3043), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), + [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(485), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(249)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2003), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1706), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1063), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_DASH_GT] = ACTIONS(1065), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(483), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(485), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(487), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(250)] = { [sym_attribute_item] = STATE(407), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3068), - [sym_variadic_parameter] = STATE(3068), - [sym_parameter] = STATE(3068), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3237), + [sym_variadic_parameter] = STATE(3237), + [sym_parameter] = STATE(3237), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3105), + [sym_bracketed_type] = STATE(4153), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3854), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2862), + [sym_scoped_identifier] = STATE(2494), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2852), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1183), + [anon_sym_i8] = ACTIONS(1183), + [anon_sym_u16] = ACTIONS(1183), + [anon_sym_i16] = ACTIONS(1183), + [anon_sym_u32] = ACTIONS(1183), + [anon_sym_i32] = ACTIONS(1183), + [anon_sym_u64] = ACTIONS(1183), + [anon_sym_i64] = ACTIONS(1183), + [anon_sym_u128] = ACTIONS(1183), + [anon_sym_i128] = ACTIONS(1183), + [anon_sym_isize] = ACTIONS(1183), + [anon_sym_usize] = ACTIONS(1183), + [anon_sym_f32] = ACTIONS(1183), + [anon_sym_f64] = ACTIONS(1183), + [anon_sym_bool] = ACTIONS(1183), + [anon_sym_str] = ACTIONS(1183), + [anon_sym_char] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1191), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1195), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1197), + [sym_super] = ACTIONS(1199), + [sym_crate] = ACTIONS(1199), + [sym_metavariable] = ACTIONS(1201), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(251)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2122), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_let_condition] = STATE(3043), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(251), [sym_block_comment] = STATE(251), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1345), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), + [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(485), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(252)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1472), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1706), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(252), [sym_block_comment] = STATE(252), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_AMP] = ACTIONS(1065), + [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(1323), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1325), + [anon_sym__] = ACTIONS(1063), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [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(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [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_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(483), - [anon_sym_move] = ACTIONS(485), + [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), @@ -46063,1078 +47617,1078 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, [STATE(253)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(427), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3806), + [sym_variadic_parameter] = STATE(3806), + [sym_parameter] = STATE(3806), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3519), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), [sym_line_comment] = STATE(253), [sym_block_comment] = STATE(253), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), [anon_sym_RPAREN] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, [STATE(254)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(427), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3806), + [sym_variadic_parameter] = STATE(3806), + [sym_parameter] = STATE(3806), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3519), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), [sym_line_comment] = STATE(254), [sym_block_comment] = STATE(254), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), [anon_sym_RPAREN] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, [STATE(255)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(427), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3806), + [sym_variadic_parameter] = STATE(3806), + [sym_parameter] = STATE(3806), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3519), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), [sym_line_comment] = STATE(255), [sym_block_comment] = STATE(255), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), [anon_sym_RPAREN] = ACTIONS(1355), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, [STATE(256)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(427), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3806), + [sym_variadic_parameter] = STATE(3806), + [sym_parameter] = STATE(3806), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3519), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), [sym_line_comment] = STATE(256), [sym_block_comment] = STATE(256), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, [STATE(257)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(427), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3806), + [sym_variadic_parameter] = STATE(3806), + [sym_parameter] = STATE(3806), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3519), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), [sym_line_comment] = STATE(257), [sym_block_comment] = STATE(257), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, [STATE(258)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(427), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3806), + [sym_variadic_parameter] = STATE(3806), + [sym_parameter] = STATE(3806), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3519), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), [sym_line_comment] = STATE(258), [sym_block_comment] = STATE(258), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, [STATE(259)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(427), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3806), + [sym_variadic_parameter] = STATE(3806), + [sym_parameter] = STATE(3806), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3519), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), [sym_line_comment] = STATE(259), [sym_block_comment] = STATE(259), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, [STATE(260)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(427), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3806), + [sym_variadic_parameter] = STATE(3806), + [sym_parameter] = STATE(3806), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3519), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), [sym_line_comment] = STATE(260), [sym_block_comment] = STATE(260), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, [STATE(261)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(427), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3806), + [sym_variadic_parameter] = STATE(3806), + [sym_parameter] = STATE(3806), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3519), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), [sym_line_comment] = STATE(261), [sym_block_comment] = STATE(261), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, [STATE(262)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1925), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2222), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(262), [sym_block_comment] = STATE(262), [sym_identifier] = ACTIONS(339), @@ -47200,167 +48754,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(263)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2199), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [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(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [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(475), - [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(475), - [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(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), - }, - [STATE(264)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1924), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47423,56 +48865,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), }, - [STATE(265)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1576), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), + [STATE(264)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2215), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47500,7 +48942,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47535,56 +48977,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), }, - [STATE(266)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), + [STATE(265)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1810), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47612,7 +49054,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47647,103 +49089,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), }, - [STATE(267)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1705), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(339), + [STATE(266)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1735), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), + [sym_identifier] = ACTIONS(475), [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(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [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(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [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(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [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), @@ -47752,61 +49194,173 @@ 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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(267)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2040), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [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), + }, [STATE(268)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1738), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2002), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(268), [sym_block_comment] = STATE(268), [sym_identifier] = ACTIONS(339), @@ -47872,53 +49426,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(269)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1739), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [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(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3729), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [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(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2004), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(493), + [sym_match_expression] = STATE(493), + [sym_while_expression] = STATE(493), + [sym_loop_expression] = STATE(493), + [sym_for_expression] = STATE(493), + [sym_const_block] = STATE(493), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4241), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(493), + [sym_async_block] = STATE(493), + [sym_gen_block] = STATE(493), + [sym_try_block] = STATE(493), + [sym_block] = STATE(493), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(269), [sym_block_comment] = STATE(269), [sym_identifier] = ACTIONS(339), @@ -47984,53 +49538,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(270)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1578), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1836), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(270), [sym_block_comment] = STATE(270), [sym_identifier] = ACTIONS(339), @@ -48060,7 +49614,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48096,53 +49650,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(271)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1922), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1823), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(271), [sym_block_comment] = STATE(271), [sym_identifier] = ACTIONS(339), @@ -48172,7 +49726,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(1069), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48208,55 +49762,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(272)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2080), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), [sym_line_comment] = STATE(272), [sym_block_comment] = STATE(272), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [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), + }, + [STATE(273)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2207), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48319,56 +49985,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), }, - [STATE(273)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1851), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), + [STATE(274)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2196), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48431,56 +50097,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), }, - [STATE(274)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), + [STATE(275)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3078), + [sym_bracketed_type] = STATE(4153), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3854), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2862), + [sym_scoped_identifier] = STATE(2494), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym_closure_expression] = STATE(3325), [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), + [sym__pattern] = STATE(3104), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1183), + [anon_sym_i8] = ACTIONS(1183), + [anon_sym_u16] = ACTIONS(1183), + [anon_sym_i16] = ACTIONS(1183), + [anon_sym_u32] = ACTIONS(1183), + [anon_sym_i32] = ACTIONS(1183), + [anon_sym_u64] = ACTIONS(1183), + [anon_sym_i64] = ACTIONS(1183), + [anon_sym_u128] = ACTIONS(1183), + [anon_sym_i128] = ACTIONS(1183), + [anon_sym_isize] = ACTIONS(1183), + [anon_sym_usize] = ACTIONS(1183), + [anon_sym_f32] = ACTIONS(1183), + [anon_sym_f64] = ACTIONS(1183), + [anon_sym_bool] = ACTIONS(1183), + [anon_sym_str] = ACTIONS(1183), + [anon_sym_char] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1399), + [anon_sym_COLON_COLON] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1195), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1403), + [anon_sym_move] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1199), + [sym_super] = ACTIONS(1199), + [sym_crate] = ACTIONS(1199), + [sym_metavariable] = ACTIONS(1201), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(276)] = { + [sym_attribute_item] = STATE(427), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3806), + [sym_variadic_parameter] = STATE(3806), + [sym_parameter] = STATE(3806), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3519), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(277)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2120), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [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), + }, + [STATE(278)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2180), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48508,7 +50510,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48543,172 +50545,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(275)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1614), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [STATE(279)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2081), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [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(475), - [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(475), - [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(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), + [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), }, - [STATE(276)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1580), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), + [STATE(280)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2082), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [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), + }, + [STATE(281)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2220), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(493), + [sym_match_expression] = STATE(493), + [sym_while_expression] = STATE(493), + [sym_loop_expression] = STATE(493), + [sym_for_expression] = STATE(493), + [sym_const_block] = STATE(493), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4241), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(493), + [sym_async_block] = STATE(493), + [sym_gen_block] = STATE(493), + [sym_try_block] = STATE(493), + [sym_block] = STATE(493), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [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(343), + [anon_sym_LBRACE] = ACTIONS(1369), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48732,27 +50846,27 @@ 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(1057), + [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(1371), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1373), [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(1375), + [anon_sym_gen] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1383), [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(1385), + [anon_sym_while] = ACTIONS(1387), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1389), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48767,56 +50881,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), }, - [STATE(277)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1549), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), + [STATE(282)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3078), + [sym_bracketed_type] = STATE(4153), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3854), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2862), + [sym_scoped_identifier] = STATE(2494), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym_closure_expression] = STATE(3325), [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), + [sym__pattern] = STATE(3104), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1183), + [anon_sym_i8] = ACTIONS(1183), + [anon_sym_u16] = ACTIONS(1183), + [anon_sym_i16] = ACTIONS(1183), + [anon_sym_u32] = ACTIONS(1183), + [anon_sym_i32] = ACTIONS(1183), + [anon_sym_u64] = ACTIONS(1183), + [anon_sym_i64] = ACTIONS(1183), + [anon_sym_u128] = ACTIONS(1183), + [anon_sym_i128] = ACTIONS(1183), + [anon_sym_isize] = ACTIONS(1183), + [anon_sym_usize] = ACTIONS(1183), + [anon_sym_f32] = ACTIONS(1183), + [anon_sym_f64] = ACTIONS(1183), + [anon_sym_bool] = ACTIONS(1183), + [anon_sym_str] = ACTIONS(1183), + [anon_sym_char] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1399), + [anon_sym_COLON_COLON] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1195), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1403), + [anon_sym_move] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1199), + [sym_super] = ACTIONS(1199), + [sym_crate] = ACTIONS(1199), + [sym_metavariable] = ACTIONS(1201), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(283)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2221), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48844,7 +51070,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48879,56 +51105,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), }, - [STATE(278)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1550), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), + [STATE(284)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1964), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48956,7 +51182,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48991,56 +51217,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), }, - [STATE(279)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1548), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), + [STATE(285)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2204), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49068,7 +51294,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49103,56 +51329,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), }, - [STATE(280)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1551), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), + [STATE(286)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2209), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49180,7 +51406,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49215,56 +51441,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), }, - [STATE(281)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1557), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), + [STATE(287)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2187), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49292,7 +51518,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49327,56 +51553,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), }, - [STATE(282)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1558), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), + [STATE(288)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1812), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49404,7 +51630,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49439,60 +51665,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), }, - [STATE(283)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1899), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), + [STATE(289)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2186), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(498), + [sym_match_expression] = STATE(498), + [sym_while_expression] = STATE(498), + [sym_loop_expression] = STATE(498), + [sym_for_expression] = STATE(498), + [sym_const_block] = STATE(498), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4241), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(498), + [sym_async_block] = STATE(498), + [sym_gen_block] = STATE(498), + [sym_try_block] = STATE(498), + [sym_block] = STATE(498), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1369), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49519,24 +51745,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(1371), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1373), [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(1375), + [anon_sym_gen] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1383), [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(1385), + [anon_sym_while] = ACTIONS(1387), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1389), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49551,56 +51777,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), }, - [STATE(284)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1900), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), + [STATE(290)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2189), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49663,61 +51889,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), }, - [STATE(285)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1912), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [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(343), - [anon_sym_STAR] = ACTIONS(21), + [STATE(291)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2083), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [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), + }, + [STATE(292)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1818), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [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), @@ -49740,7 +52078,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(1069), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49775,168 +52113,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(286)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1914), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(473), - [sym_match_expression] = STATE(473), - [sym_while_expression] = STATE(473), - [sym_loop_expression] = STATE(473), - [sym_for_expression] = STATE(473), - [sym_const_block] = STATE(473), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3729), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(473), - [sym_async_block] = STATE(473), - [sym_gen_block] = STATE(473), - [sym_try_block] = STATE(473), - [sym_block] = STATE(473), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1369), - [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), + [STATE(293)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2084), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), [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(1075), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_gen] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1389), - [sym_integer_literal] = ACTIONS(97), - [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), }, - [STATE(287)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1926), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), + [STATE(294)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2085), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [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), + }, + [STATE(295)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1822), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49964,7 +52414,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(1069), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49999,56 +52449,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), }, - [STATE(288)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1921), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), + [STATE(296)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2184), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50111,56 +52561,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), }, - [STATE(289)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), + [STATE(297)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1813), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50223,56 +52673,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(290)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1434), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), + [STATE(298)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2086), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [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), + }, + [STATE(299)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2087), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [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), + }, + [STATE(300)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50300,7 +52974,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50335,103 +53009,439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(291)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1917), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), - [sym_identifier] = ACTIONS(339), + [STATE(301)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2154), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [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), + }, + [STATE(302)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2088), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [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), + }, + [STATE(303)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2089), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [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), + }, + [STATE(304)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1888), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [sym_identifier] = ACTIONS(475), [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(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [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(913), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [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(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [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), @@ -50440,222 +53450,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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(292)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(293)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1759), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(339), + [STATE(305)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1979), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), + [sym_identifier] = ACTIONS(475), [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(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [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(913), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [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(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [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), @@ -50664,111 +53562,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(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(294)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1943), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [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(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3729), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [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(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_identifier] = ACTIONS(339), + [STATE(306)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1735), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1369), - [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_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [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(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1373), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(483), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_gen] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(485), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(487), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50776,110 +53674,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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(295)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1947), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), - [sym_identifier] = ACTIONS(339), + [STATE(307)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2034), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [sym_identifier] = ACTIONS(475), [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(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [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(1409), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(487), [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(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50888,63 +53786,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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(296)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1438), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), + [STATE(308)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1983), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50972,7 +53870,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51007,60 +53905,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), }, - [STATE(297)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(473), - [sym_match_expression] = STATE(473), - [sym_while_expression] = STATE(473), - [sym_loop_expression] = STATE(473), - [sym_for_expression] = STATE(473), - [sym_const_block] = STATE(473), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3729), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(473), - [sym_async_block] = STATE(473), - [sym_gen_block] = STATE(473), - [sym_try_block] = STATE(473), - [sym_block] = STATE(473), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), + [STATE(309)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2117), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51087,24 +53985,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(1371), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_gen] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1383), + [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(1385), - [anon_sym_while] = ACTIONS(1387), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -51119,56 +54017,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), }, - [STATE(298)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1952), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), + [STATE(310)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1991), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51231,61 +54129,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), }, - [STATE(299)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1719), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), + [STATE(311)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2179), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(965), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -51303,12 +54201,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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -51343,91 +54241,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(300)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1538), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_identifier] = ACTIONS(465), + [STATE(312)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -51435,7 +54333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -51448,110 +54346,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(301)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1682), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_identifier] = ACTIONS(465), + [STATE(313)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1992), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [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(471), + [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(475), + [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(475), + [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), @@ -51560,110 +54458,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(302)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_identifier] = ACTIONS(465), + [STATE(314)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3078), + [sym_bracketed_type] = STATE(4153), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3854), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2862), + [sym_scoped_identifier] = STATE(2494), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym_closure_expression] = STATE(3325), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(3104), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1183), + [anon_sym_i8] = ACTIONS(1183), + [anon_sym_u16] = ACTIONS(1183), + [anon_sym_i16] = ACTIONS(1183), + [anon_sym_u32] = ACTIONS(1183), + [anon_sym_i32] = ACTIONS(1183), + [anon_sym_u64] = ACTIONS(1183), + [anon_sym_i64] = ACTIONS(1183), + [anon_sym_u128] = ACTIONS(1183), + [anon_sym_i128] = ACTIONS(1183), + [anon_sym_isize] = ACTIONS(1183), + [anon_sym_usize] = ACTIONS(1183), + [anon_sym_f32] = ACTIONS(1183), + [anon_sym_f64] = ACTIONS(1183), + [anon_sym_bool] = ACTIONS(1183), + [anon_sym_str] = ACTIONS(1183), + [anon_sym_char] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1399), + [anon_sym_COLON_COLON] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1195), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1403), + [anon_sym_move] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1199), + [sym_super] = ACTIONS(1199), + [sym_crate] = ACTIONS(1199), + [sym_metavariable] = ACTIONS(1201), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(315)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2036), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [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(471), + [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(475), + [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(475), + [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), @@ -51672,98 +54682,98 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(303)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1693), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), - [sym_identifier] = ACTIONS(465), + [STATE(316)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1959), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -51771,7 +54781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -51784,98 +54794,98 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(304)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(465), + [STATE(317)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -51883,7 +54893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -51896,98 +54906,98 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(305)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1663), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(465), + [STATE(318)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1930), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -51995,7 +55005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -52008,222 +55018,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(306)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1731), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_identifier] = ACTIONS(465), + [STATE(319)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2018), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [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), - }, - [STATE(307)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1700), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [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(471), + [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(475), + [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(475), + [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), @@ -52232,110 +55130,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(308)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1670), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), - [sym_identifier] = ACTIONS(465), + [STATE(320)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1825), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [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(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [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(471), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [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(475), + [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(475), + [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), @@ -52344,110 +55242,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(309)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1680), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(465), + [STATE(321)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [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(471), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [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(475), + [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(475), + [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), @@ -52456,110 +55354,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(310)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1684), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(465), + [STATE(322)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1828), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [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(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [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(471), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [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(475), + [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(475), + [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), @@ -52568,98 +55466,98 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(311)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), - [sym_identifier] = ACTIONS(465), + [STATE(323)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1908), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -52667,7 +55565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -52680,110 +55578,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(312)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym_identifier] = ACTIONS(339), + [STATE(324)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1918), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym_identifier] = ACTIONS(475), [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(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [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(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [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), @@ -52792,110 +55690,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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(313)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1438), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_identifier] = ACTIONS(465), + [STATE(325)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2028), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(487), [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(475), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52904,68 +55802,68 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(314)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1934), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), + [STATE(326)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2090), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(965), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -52983,12 +55881,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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -53023,103 +55921,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), }, - [STATE(315)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1744), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(465), + [STATE(327)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1935), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(509), [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_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [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), @@ -53128,98 +56026,98 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(316)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1610), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), - [sym_identifier] = ACTIONS(465), + [STATE(328)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1940), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -53227,7 +56125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -53240,63 +56138,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(317)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1538), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), + [STATE(329)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1945), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), + [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(485), + [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(485), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(330)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1948), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), + [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(485), + [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(485), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(331)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2198), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53324,7 +56446,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(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53359,103 +56481,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), }, - [STATE(318)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1538), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), - [sym_identifier] = ACTIONS(465), + [STATE(332)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1813), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [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(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [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_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(483), - [anon_sym_move] = ACTIONS(485), + [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), @@ -53464,222 +56586,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(319)] = { - [sym_else_clause] = STATE(414), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(1393), - [sym_identifier] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_macro_rules_BANG] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_QMARK] = ACTIONS(1393), - [anon_sym_u8] = ACTIONS(1395), - [anon_sym_i8] = ACTIONS(1395), - [anon_sym_u16] = ACTIONS(1395), - [anon_sym_i16] = ACTIONS(1395), - [anon_sym_u32] = ACTIONS(1395), - [anon_sym_i32] = ACTIONS(1395), - [anon_sym_u64] = ACTIONS(1395), - [anon_sym_i64] = ACTIONS(1395), - [anon_sym_u128] = ACTIONS(1395), - [anon_sym_i128] = ACTIONS(1395), - [anon_sym_isize] = ACTIONS(1395), - [anon_sym_usize] = ACTIONS(1395), - [anon_sym_f32] = ACTIONS(1395), - [anon_sym_f64] = ACTIONS(1395), - [anon_sym_bool] = ACTIONS(1395), - [anon_sym_str] = ACTIONS(1395), - [anon_sym_char] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1393), - [anon_sym_PIPE_PIPE] = ACTIONS(1393), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_PLUS_EQ] = ACTIONS(1393), - [anon_sym_DASH_EQ] = ACTIONS(1393), - [anon_sym_STAR_EQ] = ACTIONS(1393), - [anon_sym_SLASH_EQ] = ACTIONS(1393), - [anon_sym_PERCENT_EQ] = ACTIONS(1393), - [anon_sym_CARET_EQ] = ACTIONS(1393), - [anon_sym_AMP_EQ] = ACTIONS(1393), - [anon_sym_PIPE_EQ] = ACTIONS(1393), - [anon_sym_LT_LT_EQ] = ACTIONS(1393), - [anon_sym_GT_GT_EQ] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_BANG_EQ] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1393), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1393), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_enum] = ACTIONS(1395), - [anon_sym_fn] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_gen] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_impl] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_mod] = ACTIONS(1395), - [anon_sym_pub] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_static] = ACTIONS(1395), - [anon_sym_struct] = ACTIONS(1395), - [anon_sym_trait] = ACTIONS(1395), - [anon_sym_type] = ACTIONS(1395), - [anon_sym_union] = ACTIONS(1395), - [anon_sym_unsafe] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_move] = ACTIONS(1395), - [anon_sym_try] = ACTIONS(1395), - [sym_integer_literal] = ACTIONS(1393), - [aux_sym_string_literal_token1] = ACTIONS(1393), - [sym_char_literal] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [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(1393), - [sym__raw_string_literal_start] = ACTIONS(1393), - [sym_float_literal] = ACTIONS(1393), - }, - [STATE(320)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), - [sym_identifier] = ACTIONS(465), + [STATE(333)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1765), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(509), [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_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [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), @@ -53688,110 +56698,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(321)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(465), + [STATE(334)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2188), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [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(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [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(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [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_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(483), - [anon_sym_move] = ACTIONS(485), + [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), @@ -53800,110 +56810,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(322)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1728), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), - [sym_identifier] = ACTIONS(465), + [STATE(335)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2069), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [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(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [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(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [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_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(483), - [anon_sym_move] = ACTIONS(485), + [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), @@ -53912,110 +56922,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(323)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1729), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), - [sym_identifier] = ACTIONS(465), + [STATE(336)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1837), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [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(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [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_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(483), - [anon_sym_move] = ACTIONS(485), + [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), @@ -54024,110 +57034,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(324)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1730), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_identifier] = ACTIONS(465), + [STATE(337)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1735), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [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(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [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_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(483), - [anon_sym_move] = ACTIONS(485), + [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), @@ -54136,98 +57146,210 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(325)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1667), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_identifier] = ACTIONS(465), + [STATE(338)] = { + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2206), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(965), + [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(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(969), + [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), + }, + [STATE(339)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -54235,7 +57357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -54248,110 +57370,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(326)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1732), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), - [sym_identifier] = ACTIONS(465), + [STATE(340)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1765), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [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(1069), + [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), + }, + [STATE(341)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2070), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [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(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [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(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [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_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(483), - [anon_sym_move] = ACTIONS(485), + [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), @@ -54360,110 +57594,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(327)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1733), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), - [sym_identifier] = ACTIONS(465), + [STATE(342)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2049), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1409), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(487), [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_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54472,110 +57706,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(328)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1734), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), - [sym_identifier] = ACTIONS(465), + [STATE(343)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1835), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [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(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [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_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(483), - [anon_sym_move] = ACTIONS(485), + [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), @@ -54584,110 +57818,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(329)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), - [sym_identifier] = ACTIONS(465), + [STATE(344)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2185), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [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(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [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(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [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_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(483), - [anon_sym_move] = ACTIONS(485), + [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), @@ -54696,110 +57930,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(330)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1736), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), - [sym_identifier] = ACTIONS(465), + [STATE(345)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1997), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [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(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [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(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [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_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(483), - [anon_sym_move] = ACTIONS(485), + [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), @@ -54808,110 +58042,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(331)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1438), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), - [sym_identifier] = ACTIONS(465), + [STATE(346)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2034), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(487), [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_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54920,63 +58154,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(332)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1785), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), + [STATE(347)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), + [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(485), + [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(485), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(348)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2142), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55039,1736 +58385,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), }, - [STATE(333)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(333), - [sym_block_comment] = STATE(333), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(334)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1794), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(335)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1725), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(336)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1795), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(337)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(338)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(339)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(340)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(341)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(342)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(343)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(344)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(344), - [sym_block_comment] = STATE(344), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(345)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [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), - }, - [STATE(346)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1764), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [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), - }, - [STATE(347)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [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(475), - [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(475), - [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(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), - }, - [STATE(348)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1855), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), + [STATE(349)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2146), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56831,103 +58497,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), }, - [STATE(349)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), - [sym_identifier] = ACTIONS(465), + [STATE(350)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(487), [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_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56936,180 +58602,68 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(350)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [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), - }, [STATE(351)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_bracketed_type] = STATE(4121), + [sym_generic_function] = STATE(2124), + [sym_generic_type_with_turbofish] = STATE(3492), + [sym__expression_except_range] = STATE(1939), + [sym__expression] = STATE(2090), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1872), + [sym_scoped_type_identifier_in_expression_position] = STATE(3751), + [sym_range_expression] = STATE(2126), + [sym_unary_expression] = STATE(2124), + [sym_try_expression] = STATE(2124), + [sym_reference_expression] = STATE(2124), + [sym_binary_expression] = STATE(2124), + [sym_assignment_expression] = STATE(2124), + [sym_compound_assignment_expr] = STATE(2124), + [sym_type_cast_expression] = STATE(2124), + [sym_return_expression] = STATE(2124), + [sym_yield_expression] = STATE(2124), + [sym_call_expression] = STATE(2124), + [sym_array_expression] = STATE(2124), + [sym_parenthesized_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2124), + [sym_unit_expression] = STATE(2124), + [sym_struct_expression] = STATE(2124), + [sym_if_expression] = STATE(2124), + [sym_match_expression] = STATE(2124), + [sym_while_expression] = STATE(2124), + [sym_loop_expression] = STATE(2124), + [sym_for_expression] = STATE(2124), + [sym_const_block] = STATE(2124), + [sym_closure_expression] = STATE(2124), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(4247), + [sym_break_expression] = STATE(2124), + [sym_continue_expression] = STATE(2124), + [sym_index_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_field_expression] = STATE(1938), + [sym_unsafe_block] = STATE(2124), + [sym_async_block] = STATE(2124), + [sym_gen_block] = STATE(2124), + [sym_try_block] = STATE(2124), + [sym_block] = STATE(2124), + [sym__literal] = STATE(2124), + [sym_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), [sym_line_comment] = STATE(351), [sym_block_comment] = STATE(351), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(965), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -57127,12 +58681,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(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(969), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -57168,167 +58722,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(352)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1434), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2157), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(352), [sym_block_comment] = STATE(352), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [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(475), - [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(475), - [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(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), - }, - [STATE(353)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1933), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57391,168 +58833,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), }, - [STATE(354)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), + [STATE(353)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3136), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2844), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(355)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1938), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2197), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57615,215 +58945,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), }, - [STATE(356)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3136), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2844), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(357)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1939), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), - [sym_identifier] = ACTIONS(339), + [STATE(354)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2024), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), + [sym_identifier] = ACTIONS(475), [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(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [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(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(487), [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(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57832,110 +59050,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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(358)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1940), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), - [sym_identifier] = ACTIONS(339), + [STATE(355)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [sym_identifier] = ACTIONS(475), [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(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [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(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(487), [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(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57944,110 +59162,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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(359)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1434), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), - [sym_identifier] = ACTIONS(465), + [STATE(356)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2025), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(487), [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_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58056,222 +59274,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(360)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3136), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2844), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(361)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), - [sym_identifier] = ACTIONS(465), + [STATE(357)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2125), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1409), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(487), [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(475), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58280,110 +59386,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(362)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1915), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), - [sym_identifier] = ACTIONS(339), + [STATE(358)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2026), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), + [sym_identifier] = ACTIONS(475), [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(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [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(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(487), [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(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58392,63 +59498,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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(363)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1901), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), + [STATE(359)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2190), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58511,56 +59617,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), }, - [STATE(364)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1726), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), + [STATE(360)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2193), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58623,103 +59729,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), }, - [STATE(365)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(365), - [sym_block_comment] = STATE(365), - [sym_identifier] = ACTIONS(465), + [STATE(361)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2027), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(487), [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_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58728,110 +59834,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(366)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1948), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(366), - [sym_block_comment] = STATE(366), - [sym_identifier] = ACTIONS(339), + [STATE(362)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1892), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), + [sym_identifier] = ACTIONS(475), [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(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [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(913), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [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(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [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), @@ -58840,63 +59946,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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(367)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1920), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), + [STATE(363)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2132), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58959,91 +60065,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), }, - [STATE(368)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1622), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(368), - [sym_block_comment] = STATE(368), - [sym_identifier] = ACTIONS(465), + [STATE(364)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1920), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -59051,7 +60157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -59064,63 +60170,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(369)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(369), - [sym_block_comment] = STATE(369), + [STATE(365)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2029), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(483), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(485), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(487), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(366)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2183), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59183,56 +60401,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), }, - [STATE(370)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1928), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(370), - [sym_block_comment] = STATE(370), + [STATE(367)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2225), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59295,56 +60513,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), }, - [STATE(371)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1931), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(371), - [sym_block_comment] = STATE(371), + [STATE(368)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2136), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59407,56 +60625,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), }, - [STATE(372)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1861), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(372), - [sym_block_comment] = STATE(372), + [STATE(369)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2203), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59519,56 +60737,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), }, - [STATE(373)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1944), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(373), - [sym_block_comment] = STATE(373), + [STATE(370)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2139), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59631,56 +60849,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), }, - [STATE(374)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), + [STATE(371)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2205), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59743,56 +60961,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), }, - [STATE(375)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1946), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(375), - [sym_block_comment] = STATE(375), + [STATE(372)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1893), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), + [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(485), + [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(485), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(373)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2141), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59855,168 +61185,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), }, - [STATE(376)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1624), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(376), - [sym_block_comment] = STATE(376), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [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(475), - [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(475), - [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(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), - }, - [STATE(377)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(377), - [sym_block_comment] = STATE(377), + [STATE(374)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2143), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60079,56 +61297,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), }, - [STATE(378)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1950), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), + [STATE(375)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2210), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60191,56 +61409,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), }, - [STATE(379)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1951), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), + [STATE(376)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2211), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60303,56 +61521,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), }, - [STATE(380)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1932), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), + [STATE(377)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2212), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60415,56 +61633,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), }, - [STATE(381)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1918), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), + [STATE(378)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2144), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60527,103 +61745,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), }, - [STATE(382)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1870), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), - [sym_identifier] = ACTIONS(465), + [STATE(379)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1765), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(487), [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_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -60632,110 +61850,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(383)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1626), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(383), - [sym_block_comment] = STATE(383), - [sym_identifier] = ACTIONS(465), + [STATE(380)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2224), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [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(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [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(475), + [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(475), + [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), @@ -60744,63 +61962,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [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), }, - [STATE(384)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1941), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(384), - [sym_block_comment] = STATE(384), + [STATE(381)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2201), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60863,103 +62081,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), }, - [STATE(385)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), - [sym_identifier] = ACTIONS(465), + [STATE(382)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2030), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(487), [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(475), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -60968,110 +62186,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(386)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1880), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), - [sym_identifier] = ACTIONS(465), + [STATE(383)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2150), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [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(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1409), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(487), [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_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -61080,110 +62298,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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(387)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1628), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), - [sym_identifier] = ACTIONS(465), + [STATE(384)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2031), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(483), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(487), [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(475), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -61192,98 +62410,210 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(388)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(388), - [sym_block_comment] = STATE(388), - [sym_identifier] = ACTIONS(465), + [STATE(385)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2032), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [sym_identifier] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [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(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(483), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(485), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(487), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(386)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1894), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), [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(475), + [anon_sym_default] = ACTIONS(485), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -61291,7 +62621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(485), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -61304,16 +62634,1136 @@ 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(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(387)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2033), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(483), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(485), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(487), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(388)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2192), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), + [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), }, [STATE(389)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1895), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), [sym_line_comment] = STATE(389), [sym_block_comment] = STATE(389), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), + [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(485), + [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(485), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(390)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2162), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1697), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(498), + [sym_match_expression] = STATE(498), + [sym_while_expression] = STATE(498), + [sym_loop_expression] = STATE(498), + [sym_for_expression] = STATE(498), + [sym_const_block] = STATE(498), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(252), + [sym_label] = STATE(4241), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(498), + [sym_async_block] = STATE(498), + [sym_gen_block] = STATE(498), + [sym_try_block] = STATE(498), + [sym_block] = STATE(498), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(390), + [sym_block_comment] = STATE(390), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(1369), + [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(1371), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_gen] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1383), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_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), + }, + [STATE(391)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(2160), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(249), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(391), + [sym_block_comment] = STATE(391), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1409), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(483), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(485), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(487), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(485), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(392)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(392), + [sym_block_comment] = STATE(392), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), + [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(485), + [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(485), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(393)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(393), + [sym_block_comment] = STATE(393), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), + [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(485), + [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(485), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(394)] = { + [sym_else_clause] = STATE(412), + [sym_line_comment] = STATE(394), + [sym_block_comment] = STATE(394), + [ts_builtin_sym_end] = ACTIONS(1413), + [sym_identifier] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym_macro_rules_BANG] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_QMARK] = ACTIONS(1413), + [anon_sym_u8] = ACTIONS(1415), + [anon_sym_i8] = ACTIONS(1415), + [anon_sym_u16] = ACTIONS(1415), + [anon_sym_i16] = ACTIONS(1415), + [anon_sym_u32] = ACTIONS(1415), + [anon_sym_i32] = ACTIONS(1415), + [anon_sym_u64] = ACTIONS(1415), + [anon_sym_i64] = ACTIONS(1415), + [anon_sym_u128] = ACTIONS(1415), + [anon_sym_i128] = ACTIONS(1415), + [anon_sym_isize] = ACTIONS(1415), + [anon_sym_usize] = ACTIONS(1415), + [anon_sym_f32] = ACTIONS(1415), + [anon_sym_f64] = ACTIONS(1415), + [anon_sym_bool] = ACTIONS(1415), + [anon_sym_str] = ACTIONS(1415), + [anon_sym_char] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_SLASH] = ACTIONS(1415), + [anon_sym_PERCENT] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_AMP_AMP] = ACTIONS(1413), + [anon_sym_PIPE_PIPE] = ACTIONS(1413), + [anon_sym_LT_LT] = ACTIONS(1415), + [anon_sym_GT_GT] = ACTIONS(1415), + [anon_sym_PLUS_EQ] = ACTIONS(1413), + [anon_sym_DASH_EQ] = ACTIONS(1413), + [anon_sym_STAR_EQ] = ACTIONS(1413), + [anon_sym_SLASH_EQ] = ACTIONS(1413), + [anon_sym_PERCENT_EQ] = ACTIONS(1413), + [anon_sym_CARET_EQ] = ACTIONS(1413), + [anon_sym_AMP_EQ] = ACTIONS(1413), + [anon_sym_PIPE_EQ] = ACTIONS(1413), + [anon_sym_LT_LT_EQ] = ACTIONS(1413), + [anon_sym_GT_GT_EQ] = ACTIONS(1413), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_EQ_EQ] = ACTIONS(1413), + [anon_sym_BANG_EQ] = ACTIONS(1413), + [anon_sym_GT] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1415), + [anon_sym_GT_EQ] = ACTIONS(1413), + [anon_sym_LT_EQ] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1413), + [anon_sym_COLON_COLON] = ACTIONS(1413), + [anon_sym_POUND] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_as] = ACTIONS(1415), + [anon_sym_async] = ACTIONS(1415), + [anon_sym_break] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_continue] = ACTIONS(1415), + [anon_sym_default] = ACTIONS(1415), + [anon_sym_enum] = ACTIONS(1415), + [anon_sym_fn] = ACTIONS(1415), + [anon_sym_for] = ACTIONS(1415), + [anon_sym_gen] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1415), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_let] = ACTIONS(1415), + [anon_sym_loop] = ACTIONS(1415), + [anon_sym_match] = ACTIONS(1415), + [anon_sym_mod] = ACTIONS(1415), + [anon_sym_pub] = ACTIONS(1415), + [anon_sym_return] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1415), + [anon_sym_struct] = ACTIONS(1415), + [anon_sym_trait] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1415), + [anon_sym_unsafe] = ACTIONS(1415), + [anon_sym_use] = ACTIONS(1415), + [anon_sym_while] = ACTIONS(1415), + [anon_sym_extern] = ACTIONS(1415), + [anon_sym_else] = ACTIONS(1417), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_move] = ACTIONS(1415), + [anon_sym_try] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1413), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1415), + [sym_super] = ACTIONS(1415), + [sym_crate] = ACTIONS(1415), + [sym_metavariable] = ACTIONS(1413), + [sym__raw_string_literal_start] = ACTIONS(1413), + [sym_float_literal] = ACTIONS(1413), + }, + [STATE(395)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1897), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(395), + [sym_block_comment] = STATE(395), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(481), + [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(485), + [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(485), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(396)] = { + [sym_bracketed_type] = STATE(4017), + [sym_generic_function] = STATE(1713), + [sym_generic_type_with_turbofish] = STATE(3478), + [sym__expression_except_range] = STATE(1443), + [sym__expression] = STATE(1922), + [sym_macro_invocation] = STATE(1680), + [sym_scoped_identifier] = STATE(1848), + [sym_scoped_type_identifier_in_expression_position] = STATE(3647), + [sym_range_expression] = STATE(1722), + [sym_unary_expression] = STATE(1713), + [sym_try_expression] = STATE(1713), + [sym_reference_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_assignment_expression] = STATE(1713), + [sym_compound_assignment_expr] = STATE(1713), + [sym_type_cast_expression] = STATE(1713), + [sym_return_expression] = STATE(1713), + [sym_yield_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_array_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_tuple_expression] = STATE(1713), + [sym_unit_expression] = STATE(1713), + [sym_struct_expression] = STATE(1713), + [sym_if_expression] = STATE(1713), + [sym_match_expression] = STATE(1713), + [sym_while_expression] = STATE(1713), + [sym_loop_expression] = STATE(1713), + [sym_for_expression] = STATE(1713), + [sym_const_block] = STATE(1713), + [sym_closure_expression] = STATE(1713), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(4161), + [sym_break_expression] = STATE(1713), + [sym_continue_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_field_expression] = STATE(1467), + [sym_unsafe_block] = STATE(1713), + [sym_async_block] = STATE(1713), + [sym_gen_block] = STATE(1713), + [sym_try_block] = STATE(1713), + [sym_block] = STATE(1713), + [sym__literal] = STATE(1713), + [sym_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym_line_comment] = STATE(396), + [sym_block_comment] = STATE(396), + [sym_identifier] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(481), + [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(485), + [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(485), + [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(497), + [sym_super] = ACTIONS(499), + [sym_crate] = ACTIONS(499), + [sym_metavariable] = ACTIONS(501), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(397)] = { + [sym_line_comment] = STATE(397), + [sym_block_comment] = STATE(397), [ts_builtin_sym_end] = ACTIONS(1419), [sym_identifier] = ACTIONS(1421), [anon_sym_SEMI] = ACTIONS(1419), @@ -61422,9 +63872,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1419), [sym_float_literal] = ACTIONS(1419), }, - [STATE(390)] = { - [sym_line_comment] = STATE(390), - [sym_block_comment] = STATE(390), + [STATE(398)] = { + [sym_line_comment] = STATE(398), + [sym_block_comment] = STATE(398), [ts_builtin_sym_end] = ACTIONS(1423), [sym_identifier] = ACTIONS(1425), [anon_sym_SEMI] = ACTIONS(1423), @@ -61533,9 +63983,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1423), [sym_float_literal] = ACTIONS(1423), }, - [STATE(391)] = { - [sym_line_comment] = STATE(391), - [sym_block_comment] = STATE(391), + [STATE(399)] = { + [sym_line_comment] = STATE(399), + [sym_block_comment] = STATE(399), [ts_builtin_sym_end] = ACTIONS(1427), [sym_identifier] = ACTIONS(1429), [anon_sym_SEMI] = ACTIONS(1427), @@ -61644,9 +64094,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1427), [sym_float_literal] = ACTIONS(1427), }, - [STATE(392)] = { - [sym_line_comment] = STATE(392), - [sym_block_comment] = STATE(392), + [STATE(400)] = { + [sym_line_comment] = STATE(400), + [sym_block_comment] = STATE(400), [ts_builtin_sym_end] = ACTIONS(1431), [sym_identifier] = ACTIONS(1433), [anon_sym_SEMI] = ACTIONS(1431), @@ -61755,9 +64205,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1431), [sym_float_literal] = ACTIONS(1431), }, - [STATE(393)] = { - [sym_line_comment] = STATE(393), - [sym_block_comment] = STATE(393), + [STATE(401)] = { + [sym_line_comment] = STATE(401), + [sym_block_comment] = STATE(401), [ts_builtin_sym_end] = ACTIONS(1435), [sym_identifier] = ACTIONS(1437), [anon_sym_SEMI] = ACTIONS(1435), @@ -61866,229 +64316,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1435), [sym_float_literal] = ACTIONS(1435), }, - [STATE(394)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3006), - [sym_variadic_parameter] = STATE(3006), - [sym_parameter] = STATE(3006), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2735), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(394), - [sym_block_comment] = STATE(394), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(402)] = { + [sym_line_comment] = STATE(402), + [sym_block_comment] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(1439), + [sym_identifier] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_macro_rules_BANG] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_QMARK] = ACTIONS(1439), + [anon_sym_u8] = ACTIONS(1441), + [anon_sym_i8] = ACTIONS(1441), + [anon_sym_u16] = ACTIONS(1441), + [anon_sym_i16] = ACTIONS(1441), + [anon_sym_u32] = ACTIONS(1441), + [anon_sym_i32] = ACTIONS(1441), + [anon_sym_u64] = ACTIONS(1441), + [anon_sym_i64] = ACTIONS(1441), + [anon_sym_u128] = ACTIONS(1441), + [anon_sym_i128] = ACTIONS(1441), + [anon_sym_isize] = ACTIONS(1441), + [anon_sym_usize] = ACTIONS(1441), + [anon_sym_f32] = ACTIONS(1441), + [anon_sym_f64] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_str] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE_PIPE] = ACTIONS(1439), + [anon_sym_LT_LT] = ACTIONS(1441), + [anon_sym_GT_GT] = ACTIONS(1441), + [anon_sym_PLUS_EQ] = ACTIONS(1439), + [anon_sym_DASH_EQ] = ACTIONS(1439), + [anon_sym_STAR_EQ] = ACTIONS(1439), + [anon_sym_SLASH_EQ] = ACTIONS(1439), + [anon_sym_PERCENT_EQ] = ACTIONS(1439), + [anon_sym_CARET_EQ] = ACTIONS(1439), + [anon_sym_AMP_EQ] = ACTIONS(1439), + [anon_sym_PIPE_EQ] = ACTIONS(1439), + [anon_sym_LT_LT_EQ] = ACTIONS(1439), + [anon_sym_GT_GT_EQ] = ACTIONS(1439), + [anon_sym_EQ] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1439), + [anon_sym_BANG_EQ] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1439), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1441), + [anon_sym_as] = ACTIONS(1441), + [anon_sym_async] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_enum] = ACTIONS(1441), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_gen] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_impl] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_mod] = ACTIONS(1441), + [anon_sym_pub] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_struct] = ACTIONS(1441), + [anon_sym_trait] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_union] = ACTIONS(1441), + [anon_sym_unsafe] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_yield] = ACTIONS(1441), + [anon_sym_move] = ACTIONS(1441), + [anon_sym_try] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1439), + [aux_sym_string_literal_token1] = ACTIONS(1439), + [sym_char_literal] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1441), + [sym_super] = ACTIONS(1441), + [sym_crate] = ACTIONS(1441), + [sym_metavariable] = ACTIONS(1439), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1439), }, - [STATE(395)] = { - [sym_line_comment] = STATE(395), - [sym_block_comment] = STATE(395), - [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), + [STATE(403)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3427), + [sym_variadic_parameter] = STATE(3427), + [sym_parameter] = STATE(3427), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3218), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(403), + [sym_block_comment] = STATE(403), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(396)] = { - [sym_line_comment] = STATE(396), - [sym_block_comment] = STATE(396), + [STATE(404)] = { + [sym_line_comment] = STATE(404), + [sym_block_comment] = STATE(404), [ts_builtin_sym_end] = ACTIONS(1445), [sym_identifier] = ACTIONS(1447), [anon_sym_SEMI] = ACTIONS(1445), @@ -62097,9 +64547,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1445), [anon_sym_LBRACE] = ACTIONS(1445), [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1447), [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_QMARK] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1445), [anon_sym_u8] = ACTIONS(1447), [anon_sym_i8] = ACTIONS(1447), [anon_sym_u16] = ACTIONS(1447), @@ -62118,41 +64568,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1447), [anon_sym_char] = ACTIONS(1447), [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), [anon_sym_BANG] = ACTIONS(1447), [anon_sym_AMP] = ACTIONS(1447), [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [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(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1445), + [anon_sym_PIPE_PIPE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1447), + [anon_sym_PLUS_EQ] = ACTIONS(1445), + [anon_sym_DASH_EQ] = ACTIONS(1445), + [anon_sym_STAR_EQ] = ACTIONS(1445), + [anon_sym_SLASH_EQ] = ACTIONS(1445), + [anon_sym_PERCENT_EQ] = ACTIONS(1445), + [anon_sym_CARET_EQ] = ACTIONS(1445), + [anon_sym_AMP_EQ] = ACTIONS(1445), + [anon_sym_PIPE_EQ] = ACTIONS(1445), + [anon_sym_LT_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_GT_EQ] = ACTIONS(1445), + [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1447), [anon_sym_LT] = ACTIONS(1447), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(1447), [anon_sym_DOT_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), [anon_sym_COLON_COLON] = ACTIONS(1445), [anon_sym_POUND] = ACTIONS(1445), [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_as] = ACTIONS(1449), + [anon_sym_as] = ACTIONS(1447), [anon_sym_async] = ACTIONS(1447), [anon_sym_break] = ACTIONS(1447), [anon_sym_const] = ACTIONS(1447), @@ -62196,1219 +64646,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1445), [sym_float_literal] = ACTIONS(1445), }, - [STATE(397)] = { - [sym_line_comment] = STATE(397), - [sym_block_comment] = STATE(397), - [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), - }, - [STATE(398)] = { - [sym_line_comment] = STATE(398), - [sym_block_comment] = STATE(398), - [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), - }, - [STATE(399)] = { - [sym_line_comment] = STATE(399), - [sym_block_comment] = STATE(399), - [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(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_QMARK] = ACTIONS(1461), - [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(1463), - [anon_sym_PERCENT] = ACTIONS(1463), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1461), - [anon_sym_PIPE_PIPE] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1461), - [anon_sym_DASH_EQ] = ACTIONS(1461), - [anon_sym_STAR_EQ] = ACTIONS(1461), - [anon_sym_SLASH_EQ] = ACTIONS(1461), - [anon_sym_PERCENT_EQ] = ACTIONS(1461), - [anon_sym_CARET_EQ] = ACTIONS(1461), - [anon_sym_AMP_EQ] = ACTIONS(1461), - [anon_sym_PIPE_EQ] = ACTIONS(1461), - [anon_sym_LT_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_GT_EQ] = ACTIONS(1461), - [anon_sym_EQ] = ACTIONS(1463), - [anon_sym_EQ_EQ] = ACTIONS(1461), - [anon_sym_BANG_EQ] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1461), - [anon_sym_COLON_COLON] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1463), - [anon_sym_as] = ACTIONS(1463), - [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), - }, - [STATE(400)] = { - [sym_line_comment] = STATE(400), - [sym_block_comment] = STATE(400), - [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), - }, - [STATE(401)] = { - [sym_line_comment] = STATE(401), - [sym_block_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(1043), - [sym_identifier] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_macro_rules_BANG] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(1041), - [anon_sym_i8] = ACTIONS(1041), - [anon_sym_u16] = ACTIONS(1041), - [anon_sym_i16] = ACTIONS(1041), - [anon_sym_u32] = ACTIONS(1041), - [anon_sym_i32] = ACTIONS(1041), - [anon_sym_u64] = ACTIONS(1041), - [anon_sym_i64] = ACTIONS(1041), - [anon_sym_u128] = ACTIONS(1041), - [anon_sym_i128] = ACTIONS(1041), - [anon_sym_isize] = ACTIONS(1041), - [anon_sym_usize] = ACTIONS(1041), - [anon_sym_f32] = ACTIONS(1041), - [anon_sym_f64] = ACTIONS(1041), - [anon_sym_bool] = ACTIONS(1041), - [anon_sym_str] = ACTIONS(1041), - [anon_sym_char] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1041), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [anon_sym_LT_LT] = ACTIONS(1041), - [anon_sym_GT_GT] = ACTIONS(1041), - [anon_sym_PLUS_EQ] = ACTIONS(1043), - [anon_sym_DASH_EQ] = ACTIONS(1043), - [anon_sym_STAR_EQ] = ACTIONS(1043), - [anon_sym_SLASH_EQ] = ACTIONS(1043), - [anon_sym_PERCENT_EQ] = ACTIONS(1043), - [anon_sym_CARET_EQ] = ACTIONS(1043), - [anon_sym_AMP_EQ] = ACTIONS(1043), - [anon_sym_PIPE_EQ] = ACTIONS(1043), - [anon_sym_LT_LT_EQ] = ACTIONS(1043), - [anon_sym_GT_GT_EQ] = ACTIONS(1043), - [anon_sym_EQ] = ACTIONS(1041), - [anon_sym_EQ_EQ] = ACTIONS(1043), - [anon_sym_BANG_EQ] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1041), - [anon_sym_GT_EQ] = ACTIONS(1043), - [anon_sym_LT_EQ] = ACTIONS(1043), - [anon_sym_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_as] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_break] = ACTIONS(1041), - [anon_sym_const] = ACTIONS(1041), - [anon_sym_continue] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_enum] = ACTIONS(1041), - [anon_sym_fn] = ACTIONS(1041), - [anon_sym_for] = ACTIONS(1041), - [anon_sym_gen] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1041), - [anon_sym_impl] = ACTIONS(1041), - [anon_sym_let] = ACTIONS(1041), - [anon_sym_loop] = ACTIONS(1041), - [anon_sym_match] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_pub] = ACTIONS(1041), - [anon_sym_return] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_struct] = ACTIONS(1041), - [anon_sym_trait] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1041), - [anon_sym_unsafe] = ACTIONS(1041), - [anon_sym_use] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_extern] = ACTIONS(1041), - [anon_sym_yield] = ACTIONS(1041), - [anon_sym_move] = ACTIONS(1041), - [anon_sym_try] = ACTIONS(1041), - [sym_integer_literal] = ACTIONS(1043), - [aux_sym_string_literal_token1] = ACTIONS(1043), - [sym_char_literal] = ACTIONS(1043), - [anon_sym_true] = ACTIONS(1041), - [anon_sym_false] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1041), - [sym_super] = ACTIONS(1041), - [sym_crate] = ACTIONS(1041), - [sym_metavariable] = ACTIONS(1043), - [sym__raw_string_literal_start] = ACTIONS(1043), - [sym_float_literal] = ACTIONS(1043), - }, - [STATE(402)] = { - [sym_line_comment] = STATE(402), - [sym_block_comment] = STATE(402), - [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), - }, - [STATE(403)] = { - [sym_line_comment] = STATE(403), - [sym_block_comment] = STATE(403), - [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), - }, - [STATE(404)] = { - [sym_line_comment] = STATE(404), - [sym_block_comment] = STATE(404), - [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), - }, [STATE(405)] = { [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(1481), - [sym_identifier] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_macro_rules_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1481), - [anon_sym_u8] = ACTIONS(1483), - [anon_sym_i8] = ACTIONS(1483), - [anon_sym_u16] = ACTIONS(1483), - [anon_sym_i16] = ACTIONS(1483), - [anon_sym_u32] = ACTIONS(1483), - [anon_sym_i32] = ACTIONS(1483), - [anon_sym_u64] = ACTIONS(1483), - [anon_sym_i64] = ACTIONS(1483), - [anon_sym_u128] = ACTIONS(1483), - [anon_sym_i128] = ACTIONS(1483), - [anon_sym_isize] = ACTIONS(1483), - [anon_sym_usize] = ACTIONS(1483), - [anon_sym_f32] = ACTIONS(1483), - [anon_sym_f64] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_str] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1483), - [anon_sym_GT_GT] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_PERCENT_EQ] = ACTIONS(1481), - [anon_sym_CARET_EQ] = ACTIONS(1481), - [anon_sym_AMP_EQ] = ACTIONS(1481), - [anon_sym_PIPE_EQ] = ACTIONS(1481), - [anon_sym_LT_LT_EQ] = ACTIONS(1481), - [anon_sym_GT_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_COLON_COLON] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1483), - [anon_sym_as] = ACTIONS(1483), - [anon_sym_async] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_gen] = ACTIONS(1483), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_impl] = ACTIONS(1483), - [anon_sym_let] = ACTIONS(1483), - [anon_sym_loop] = ACTIONS(1483), - [anon_sym_match] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_pub] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_struct] = ACTIONS(1483), - [anon_sym_trait] = ACTIONS(1483), - [anon_sym_type] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [anon_sym_unsafe] = ACTIONS(1483), - [anon_sym_use] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_extern] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1483), - [anon_sym_move] = ACTIONS(1483), - [anon_sym_try] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1481), - [aux_sym_string_literal_token1] = ACTIONS(1481), - [sym_char_literal] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1483), - [sym_super] = ACTIONS(1483), - [sym_crate] = ACTIONS(1483), - [sym_metavariable] = ACTIONS(1481), - [sym__raw_string_literal_start] = ACTIONS(1481), - [sym_float_literal] = ACTIONS(1481), + [ts_builtin_sym_end] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_macro_rules_BANG] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [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(1449), + [anon_sym_POUND] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_break] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_continue] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_enum] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1451), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_gen] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1451), + [anon_sym_impl] = ACTIONS(1451), + [anon_sym_let] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_mod] = ACTIONS(1451), + [anon_sym_pub] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1451), + [anon_sym_static] = ACTIONS(1451), + [anon_sym_struct] = ACTIONS(1451), + [anon_sym_trait] = ACTIONS(1451), + [anon_sym_type] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_unsafe] = ACTIONS(1451), + [anon_sym_use] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1451), + [anon_sym_extern] = ACTIONS(1451), + [anon_sym_yield] = ACTIONS(1451), + [anon_sym_move] = ACTIONS(1451), + [anon_sym_try] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [aux_sym_string_literal_token1] = ACTIONS(1449), + [sym_char_literal] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_crate] = ACTIONS(1451), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1449), + [sym_float_literal] = ACTIONS(1449), }, [STATE(406)] = { [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(1485), - [sym_identifier] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_macro_rules_BANG] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_QMARK] = ACTIONS(1485), - [anon_sym_u8] = ACTIONS(1487), - [anon_sym_i8] = ACTIONS(1487), - [anon_sym_u16] = ACTIONS(1487), - [anon_sym_i16] = ACTIONS(1487), - [anon_sym_u32] = ACTIONS(1487), - [anon_sym_i32] = ACTIONS(1487), - [anon_sym_u64] = ACTIONS(1487), - [anon_sym_i64] = ACTIONS(1487), - [anon_sym_u128] = ACTIONS(1487), - [anon_sym_i128] = ACTIONS(1487), - [anon_sym_isize] = ACTIONS(1487), - [anon_sym_usize] = ACTIONS(1487), - [anon_sym_f32] = ACTIONS(1487), - [anon_sym_f64] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_str] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1485), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1485), - [anon_sym_DASH_EQ] = ACTIONS(1485), - [anon_sym_STAR_EQ] = ACTIONS(1485), - [anon_sym_SLASH_EQ] = ACTIONS(1485), - [anon_sym_PERCENT_EQ] = ACTIONS(1485), - [anon_sym_CARET_EQ] = ACTIONS(1485), - [anon_sym_AMP_EQ] = ACTIONS(1485), - [anon_sym_PIPE_EQ] = ACTIONS(1485), - [anon_sym_LT_LT_EQ] = ACTIONS(1485), - [anon_sym_GT_GT_EQ] = ACTIONS(1485), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1485), - [anon_sym_BANG_EQ] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1487), - [anon_sym_GT_EQ] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1485), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), - [anon_sym_COLON_COLON] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1487), - [anon_sym_as] = ACTIONS(1487), - [anon_sym_async] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_gen] = ACTIONS(1487), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_impl] = ACTIONS(1487), - [anon_sym_let] = ACTIONS(1487), - [anon_sym_loop] = ACTIONS(1487), - [anon_sym_match] = ACTIONS(1487), - [anon_sym_mod] = ACTIONS(1487), - [anon_sym_pub] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_trait] = ACTIONS(1487), - [anon_sym_type] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1487), - [anon_sym_unsafe] = ACTIONS(1487), - [anon_sym_use] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_extern] = ACTIONS(1487), - [anon_sym_yield] = ACTIONS(1487), - [anon_sym_move] = ACTIONS(1487), - [anon_sym_try] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1485), - [aux_sym_string_literal_token1] = ACTIONS(1485), - [sym_char_literal] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1487), - [sym_super] = ACTIONS(1487), - [sym_crate] = ACTIONS(1487), - [sym_metavariable] = ACTIONS(1485), - [sym__raw_string_literal_start] = ACTIONS(1485), - [sym_float_literal] = ACTIONS(1485), - }, - [STATE(407)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3084), - [sym_variadic_parameter] = STATE(3084), - [sym_parameter] = STATE(3084), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2802), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(407), - [sym_block_comment] = STATE(407), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1489), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(408)] = { - [sym_line_comment] = STATE(408), - [sym_block_comment] = STATE(408), [ts_builtin_sym_end] = ACTIONS(1039), [sym_identifier] = ACTIONS(1037), [anon_sym_SEMI] = ACTIONS(1039), @@ -63516,9 +64866,999 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1039), [sym_float_literal] = ACTIONS(1039), }, + [STATE(407)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3512), + [sym_variadic_parameter] = STATE(3512), + [sym_parameter] = STATE(3512), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3188), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(407), + [sym_block_comment] = STATE(407), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1453), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(408)] = { + [sym_line_comment] = STATE(408), + [sym_block_comment] = STATE(408), + [ts_builtin_sym_end] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_macro_rules_BANG] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_QMARK] = ACTIONS(1459), + [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(1461), + [anon_sym_SLASH] = ACTIONS(1461), + [anon_sym_PERCENT] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1457), + [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(1455), + [anon_sym_POUND] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(1461), + [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), + }, [STATE(409)] = { [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), + [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_PLUS] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_QMARK] = 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(1465), + [anon_sym_SLASH] = ACTIONS(1465), + [anon_sym_PERCENT] = ACTIONS(1465), + [anon_sym_CARET] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_PIPE_PIPE] = ACTIONS(1463), + [anon_sym_LT_LT] = ACTIONS(1465), + [anon_sym_GT_GT] = ACTIONS(1465), + [anon_sym_PLUS_EQ] = ACTIONS(1463), + [anon_sym_DASH_EQ] = ACTIONS(1463), + [anon_sym_STAR_EQ] = ACTIONS(1463), + [anon_sym_SLASH_EQ] = ACTIONS(1463), + [anon_sym_PERCENT_EQ] = ACTIONS(1463), + [anon_sym_CARET_EQ] = ACTIONS(1463), + [anon_sym_AMP_EQ] = ACTIONS(1463), + [anon_sym_PIPE_EQ] = ACTIONS(1463), + [anon_sym_LT_LT_EQ] = ACTIONS(1463), + [anon_sym_GT_GT_EQ] = ACTIONS(1463), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_EQ_EQ] = ACTIONS(1463), + [anon_sym_BANG_EQ] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1465), + [anon_sym_GT_EQ] = ACTIONS(1463), + [anon_sym_LT_EQ] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1463), + [anon_sym_COLON_COLON] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1465), + [anon_sym_as] = 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), + }, + [STATE(410)] = { + [sym_line_comment] = STATE(410), + [sym_block_comment] = STATE(410), + [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), + }, + [STATE(411)] = { + [sym_line_comment] = STATE(411), + [sym_block_comment] = STATE(411), + [ts_builtin_sym_end] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_macro_rules_BANG] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1471), + [anon_sym_u8] = ACTIONS(1473), + [anon_sym_i8] = ACTIONS(1473), + [anon_sym_u16] = ACTIONS(1473), + [anon_sym_i16] = ACTIONS(1473), + [anon_sym_u32] = ACTIONS(1473), + [anon_sym_i32] = ACTIONS(1473), + [anon_sym_u64] = ACTIONS(1473), + [anon_sym_i64] = ACTIONS(1473), + [anon_sym_u128] = ACTIONS(1473), + [anon_sym_i128] = ACTIONS(1473), + [anon_sym_isize] = ACTIONS(1473), + [anon_sym_usize] = ACTIONS(1473), + [anon_sym_f32] = ACTIONS(1473), + [anon_sym_f64] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_str] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1471), + [anon_sym_DASH_EQ] = ACTIONS(1471), + [anon_sym_STAR_EQ] = ACTIONS(1471), + [anon_sym_SLASH_EQ] = ACTIONS(1471), + [anon_sym_PERCENT_EQ] = ACTIONS(1471), + [anon_sym_CARET_EQ] = ACTIONS(1471), + [anon_sym_AMP_EQ] = ACTIONS(1471), + [anon_sym_PIPE_EQ] = ACTIONS(1471), + [anon_sym_LT_LT_EQ] = ACTIONS(1471), + [anon_sym_GT_GT_EQ] = ACTIONS(1471), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_GT_EQ] = ACTIONS(1471), + [anon_sym_LT_EQ] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1471), + [anon_sym_COLON_COLON] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_async] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_gen] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_impl] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_mod] = ACTIONS(1473), + [anon_sym_pub] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_trait] = ACTIONS(1473), + [anon_sym_type] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_unsafe] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_yield] = ACTIONS(1473), + [anon_sym_move] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1471), + [aux_sym_string_literal_token1] = ACTIONS(1471), + [sym_char_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1473), + [sym_super] = ACTIONS(1473), + [sym_crate] = ACTIONS(1473), + [sym_metavariable] = ACTIONS(1471), + [sym__raw_string_literal_start] = ACTIONS(1471), + [sym_float_literal] = ACTIONS(1471), + }, + [STATE(412)] = { + [sym_line_comment] = STATE(412), + [sym_block_comment] = STATE(412), + [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), + }, + [STATE(413)] = { + [sym_line_comment] = STATE(413), + [sym_block_comment] = STATE(413), + [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), + }, + [STATE(414)] = { + [sym_line_comment] = STATE(414), + [sym_block_comment] = STATE(414), + [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), + }, + [STATE(415)] = { + [sym_line_comment] = STATE(415), + [sym_block_comment] = STATE(415), + [ts_builtin_sym_end] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_macro_rules_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_u8] = ACTIONS(1489), + [anon_sym_i8] = ACTIONS(1489), + [anon_sym_u16] = ACTIONS(1489), + [anon_sym_i16] = ACTIONS(1489), + [anon_sym_u32] = ACTIONS(1489), + [anon_sym_i32] = ACTIONS(1489), + [anon_sym_u64] = ACTIONS(1489), + [anon_sym_i64] = ACTIONS(1489), + [anon_sym_u128] = ACTIONS(1489), + [anon_sym_i128] = ACTIONS(1489), + [anon_sym_isize] = ACTIONS(1489), + [anon_sym_usize] = ACTIONS(1489), + [anon_sym_f32] = ACTIONS(1489), + [anon_sym_f64] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_str] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_PERCENT] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1489), + [anon_sym_GT_GT] = ACTIONS(1489), + [anon_sym_PLUS_EQ] = ACTIONS(1487), + [anon_sym_DASH_EQ] = ACTIONS(1487), + [anon_sym_STAR_EQ] = ACTIONS(1487), + [anon_sym_SLASH_EQ] = ACTIONS(1487), + [anon_sym_PERCENT_EQ] = ACTIONS(1487), + [anon_sym_CARET_EQ] = ACTIONS(1487), + [anon_sym_AMP_EQ] = ACTIONS(1487), + [anon_sym_PIPE_EQ] = ACTIONS(1487), + [anon_sym_LT_LT_EQ] = ACTIONS(1487), + [anon_sym_GT_GT_EQ] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1489), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1487), + [anon_sym_COLON_COLON] = ACTIONS(1487), + [anon_sym_POUND] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1489), + [anon_sym_as] = ACTIONS(1489), + [anon_sym_async] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_default] = ACTIONS(1489), + [anon_sym_enum] = ACTIONS(1489), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_gen] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_impl] = ACTIONS(1489), + [anon_sym_let] = ACTIONS(1489), + [anon_sym_loop] = ACTIONS(1489), + [anon_sym_match] = ACTIONS(1489), + [anon_sym_mod] = ACTIONS(1489), + [anon_sym_pub] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1489), + [anon_sym_trait] = ACTIONS(1489), + [anon_sym_type] = ACTIONS(1489), + [anon_sym_union] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1489), + [anon_sym_use] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1489), + [anon_sym_move] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1487), + [aux_sym_string_literal_token1] = ACTIONS(1487), + [sym_char_literal] = ACTIONS(1487), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1489), + [sym_super] = ACTIONS(1489), + [sym_crate] = ACTIONS(1489), + [sym_metavariable] = ACTIONS(1487), + [sym__raw_string_literal_start] = ACTIONS(1487), + [sym_float_literal] = ACTIONS(1487), + }, + [STATE(416)] = { + [sym_line_comment] = STATE(416), + [sym_block_comment] = STATE(416), [ts_builtin_sym_end] = ACTIONS(1491), [sym_identifier] = ACTIONS(1493), [anon_sym_SEMI] = ACTIONS(1491), @@ -63527,9 +65867,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1491), [anon_sym_LBRACE] = ACTIONS(1491), [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1461), [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_QMARK] = ACTIONS(1491), + [anon_sym_QMARK] = ACTIONS(1459), [anon_sym_u8] = ACTIONS(1493), [anon_sym_i8] = ACTIONS(1493), [anon_sym_u16] = ACTIONS(1493), @@ -63548,41 +65888,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1493), [anon_sym_char] = ACTIONS(1493), [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1461), + [anon_sym_PERCENT] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1461), [anon_sym_BANG] = ACTIONS(1493), [anon_sym_AMP] = ACTIONS(1493), [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_AMP_AMP] = ACTIONS(1491), - [anon_sym_PIPE_PIPE] = ACTIONS(1491), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_PLUS_EQ] = ACTIONS(1491), - [anon_sym_DASH_EQ] = ACTIONS(1491), - [anon_sym_STAR_EQ] = ACTIONS(1491), - [anon_sym_SLASH_EQ] = ACTIONS(1491), - [anon_sym_PERCENT_EQ] = ACTIONS(1491), - [anon_sym_CARET_EQ] = ACTIONS(1491), - [anon_sym_AMP_EQ] = ACTIONS(1491), - [anon_sym_PIPE_EQ] = ACTIONS(1491), - [anon_sym_LT_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_GT_EQ] = ACTIONS(1491), - [anon_sym_EQ] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1493), + [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(1493), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1493), + [anon_sym_GT_EQ] = ACTIONS(1459), + [anon_sym_LT_EQ] = ACTIONS(1459), + [anon_sym_DOT] = ACTIONS(1461), [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1459), [anon_sym_COLON_COLON] = ACTIONS(1491), [anon_sym_POUND] = ACTIONS(1491), [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_as] = ACTIONS(1493), + [anon_sym_as] = ACTIONS(1461), [anon_sym_async] = ACTIONS(1493), [anon_sym_break] = ACTIONS(1493), [anon_sym_const] = ACTIONS(1493), @@ -63626,9 +65966,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1491), [sym_float_literal] = ACTIONS(1491), }, - [STATE(410)] = { - [sym_line_comment] = STATE(410), - [sym_block_comment] = STATE(410), + [STATE(417)] = { + [sym_line_comment] = STATE(417), + [sym_block_comment] = STATE(417), [ts_builtin_sym_end] = ACTIONS(1495), [sym_identifier] = ACTIONS(1497), [anon_sym_SEMI] = ACTIONS(1495), @@ -63736,9 +66076,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1495), [sym_float_literal] = ACTIONS(1495), }, - [STATE(411)] = { - [sym_line_comment] = STATE(411), - [sym_block_comment] = STATE(411), + [STATE(418)] = { + [sym_line_comment] = STATE(418), + [sym_block_comment] = STATE(418), [ts_builtin_sym_end] = ACTIONS(1499), [sym_identifier] = ACTIONS(1501), [anon_sym_SEMI] = ACTIONS(1499), @@ -63846,9 +66186,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1499), [sym_float_literal] = ACTIONS(1499), }, - [STATE(412)] = { - [sym_line_comment] = STATE(412), - [sym_block_comment] = STATE(412), + [STATE(419)] = { + [sym_line_comment] = STATE(419), + [sym_block_comment] = STATE(419), [ts_builtin_sym_end] = ACTIONS(1503), [sym_identifier] = ACTIONS(1505), [anon_sym_SEMI] = ACTIONS(1503), @@ -63956,9 +66296,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1503), [sym_float_literal] = ACTIONS(1503), }, - [STATE(413)] = { - [sym_line_comment] = STATE(413), - [sym_block_comment] = STATE(413), + [STATE(420)] = { + [sym_line_comment] = STATE(420), + [sym_block_comment] = STATE(420), [ts_builtin_sym_end] = ACTIONS(1507), [sym_identifier] = ACTIONS(1509), [anon_sym_SEMI] = ACTIONS(1507), @@ -64066,9 +66406,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1507), [sym_float_literal] = ACTIONS(1507), }, - [STATE(414)] = { - [sym_line_comment] = STATE(414), - [sym_block_comment] = STATE(414), + [STATE(421)] = { + [sym_line_comment] = STATE(421), + [sym_block_comment] = STATE(421), + [ts_builtin_sym_end] = ACTIONS(1043), + [sym_identifier] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_macro_rules_BANG] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(1041), + [anon_sym_i8] = ACTIONS(1041), + [anon_sym_u16] = ACTIONS(1041), + [anon_sym_i16] = ACTIONS(1041), + [anon_sym_u32] = ACTIONS(1041), + [anon_sym_i32] = ACTIONS(1041), + [anon_sym_u64] = ACTIONS(1041), + [anon_sym_i64] = ACTIONS(1041), + [anon_sym_u128] = ACTIONS(1041), + [anon_sym_i128] = ACTIONS(1041), + [anon_sym_isize] = ACTIONS(1041), + [anon_sym_usize] = ACTIONS(1041), + [anon_sym_f32] = ACTIONS(1041), + [anon_sym_f64] = ACTIONS(1041), + [anon_sym_bool] = ACTIONS(1041), + [anon_sym_str] = ACTIONS(1041), + [anon_sym_char] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1041), + [anon_sym_GT_GT] = ACTIONS(1041), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [anon_sym_DASH_EQ] = ACTIONS(1043), + [anon_sym_STAR_EQ] = ACTIONS(1043), + [anon_sym_SLASH_EQ] = ACTIONS(1043), + [anon_sym_PERCENT_EQ] = ACTIONS(1043), + [anon_sym_CARET_EQ] = ACTIONS(1043), + [anon_sym_AMP_EQ] = ACTIONS(1043), + [anon_sym_PIPE_EQ] = ACTIONS(1043), + [anon_sym_LT_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_GT_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_fn] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_gen] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_impl] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_pub] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_struct] = ACTIONS(1041), + [anon_sym_trait] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_union] = ACTIONS(1041), + [anon_sym_unsafe] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_yield] = ACTIONS(1041), + [anon_sym_move] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [sym_integer_literal] = ACTIONS(1043), + [aux_sym_string_literal_token1] = ACTIONS(1043), + [sym_char_literal] = ACTIONS(1043), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1041), + [sym_super] = ACTIONS(1041), + [sym_crate] = ACTIONS(1041), + [sym_metavariable] = ACTIONS(1043), + [sym__raw_string_literal_start] = ACTIONS(1043), + [sym_float_literal] = ACTIONS(1043), + }, + [STATE(422)] = { + [sym_line_comment] = STATE(422), + [sym_block_comment] = STATE(422), [ts_builtin_sym_end] = ACTIONS(1511), [sym_identifier] = ACTIONS(1513), [anon_sym_SEMI] = ACTIONS(1511), @@ -64176,9 +66626,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1511), [sym_float_literal] = ACTIONS(1511), }, - [STATE(415)] = { - [sym_line_comment] = STATE(415), - [sym_block_comment] = STATE(415), + [STATE(423)] = { + [sym_line_comment] = STATE(423), + [sym_block_comment] = STATE(423), [ts_builtin_sym_end] = ACTIONS(1515), [sym_identifier] = ACTIONS(1517), [anon_sym_SEMI] = ACTIONS(1515), @@ -64286,20 +66736,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1515), [sym_float_literal] = ACTIONS(1515), }, - [STATE(416)] = { - [sym_line_comment] = STATE(416), - [sym_block_comment] = STATE(416), + [STATE(424)] = { + [sym_line_comment] = STATE(424), + [sym_block_comment] = STATE(424), [ts_builtin_sym_end] = ACTIONS(1519), [sym_identifier] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1519), [anon_sym_macro_rules_BANG] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1519), [anon_sym_u8] = ACTIONS(1521), [anon_sym_i8] = ACTIONS(1521), [anon_sym_u16] = ACTIONS(1521), @@ -64317,42 +66767,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1521), [anon_sym_str] = ACTIONS(1521), [anon_sym_char] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_SLASH] = ACTIONS(1521), + [anon_sym_PERCENT] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [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(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_PIPE_PIPE] = ACTIONS(1519), + [anon_sym_LT_LT] = ACTIONS(1521), + [anon_sym_GT_GT] = ACTIONS(1521), + [anon_sym_PLUS_EQ] = ACTIONS(1519), + [anon_sym_DASH_EQ] = ACTIONS(1519), + [anon_sym_STAR_EQ] = ACTIONS(1519), + [anon_sym_SLASH_EQ] = ACTIONS(1519), + [anon_sym_PERCENT_EQ] = ACTIONS(1519), + [anon_sym_CARET_EQ] = ACTIONS(1519), + [anon_sym_AMP_EQ] = ACTIONS(1519), + [anon_sym_PIPE_EQ] = ACTIONS(1519), + [anon_sym_LT_LT_EQ] = ACTIONS(1519), + [anon_sym_GT_GT_EQ] = ACTIONS(1519), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_EQ_EQ] = ACTIONS(1519), + [anon_sym_BANG_EQ] = ACTIONS(1519), + [anon_sym_GT] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1521), + [anon_sym_GT_EQ] = ACTIONS(1519), + [anon_sym_LT_EQ] = ACTIONS(1519), + [anon_sym_DOT] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), [anon_sym_COLON_COLON] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(1519), [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_as] = ACTIONS(1449), + [anon_sym_as] = ACTIONS(1521), [anon_sym_async] = ACTIONS(1521), [anon_sym_break] = ACTIONS(1521), [anon_sym_const] = ACTIONS(1521), @@ -64396,827 +66846,827 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1519), [sym_float_literal] = ACTIONS(1519), }, - [STATE(417)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3163), - [sym_variadic_parameter] = STATE(3163), - [sym_parameter] = STATE(3163), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2983), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(417), - [sym_block_comment] = STATE(417), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(425)] = { + [sym_line_comment] = STATE(425), + [sym_block_comment] = STATE(425), + [ts_builtin_sym_end] = ACTIONS(1523), + [sym_identifier] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_macro_rules_BANG] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_LBRACK] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_u8] = ACTIONS(1525), + [anon_sym_i8] = ACTIONS(1525), + [anon_sym_u16] = ACTIONS(1525), + [anon_sym_i16] = ACTIONS(1525), + [anon_sym_u32] = ACTIONS(1525), + [anon_sym_i32] = ACTIONS(1525), + [anon_sym_u64] = ACTIONS(1525), + [anon_sym_i64] = ACTIONS(1525), + [anon_sym_u128] = ACTIONS(1525), + [anon_sym_i128] = ACTIONS(1525), + [anon_sym_isize] = ACTIONS(1525), + [anon_sym_usize] = ACTIONS(1525), + [anon_sym_f32] = ACTIONS(1525), + [anon_sym_f64] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_str] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_SLASH] = ACTIONS(1525), + [anon_sym_PERCENT] = ACTIONS(1525), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_PIPE_PIPE] = ACTIONS(1523), + [anon_sym_LT_LT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1523), + [anon_sym_DASH_EQ] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1523), + [anon_sym_SLASH_EQ] = ACTIONS(1523), + [anon_sym_PERCENT_EQ] = ACTIONS(1523), + [anon_sym_CARET_EQ] = ACTIONS(1523), + [anon_sym_AMP_EQ] = ACTIONS(1523), + [anon_sym_PIPE_EQ] = ACTIONS(1523), + [anon_sym_LT_LT_EQ] = ACTIONS(1523), + [anon_sym_GT_GT_EQ] = ACTIONS(1523), + [anon_sym_EQ] = ACTIONS(1525), + [anon_sym_EQ_EQ] = ACTIONS(1523), + [anon_sym_BANG_EQ] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1523), + [anon_sym_DOT] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1523), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1523), + [anon_sym_COLON_COLON] = ACTIONS(1523), + [anon_sym_POUND] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1525), + [anon_sym_as] = ACTIONS(1525), + [anon_sym_async] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_default] = ACTIONS(1525), + [anon_sym_enum] = ACTIONS(1525), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_gen] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_impl] = ACTIONS(1525), + [anon_sym_let] = ACTIONS(1525), + [anon_sym_loop] = ACTIONS(1525), + [anon_sym_match] = ACTIONS(1525), + [anon_sym_mod] = ACTIONS(1525), + [anon_sym_pub] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_struct] = ACTIONS(1525), + [anon_sym_trait] = ACTIONS(1525), + [anon_sym_type] = ACTIONS(1525), + [anon_sym_union] = ACTIONS(1525), + [anon_sym_unsafe] = ACTIONS(1525), + [anon_sym_use] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(1525), + [anon_sym_yield] = ACTIONS(1525), + [anon_sym_move] = ACTIONS(1525), + [anon_sym_try] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1523), + [aux_sym_string_literal_token1] = ACTIONS(1523), + [sym_char_literal] = ACTIONS(1523), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1525), + [sym_super] = ACTIONS(1525), + [sym_crate] = ACTIONS(1525), + [sym_metavariable] = ACTIONS(1523), + [sym__raw_string_literal_start] = ACTIONS(1523), + [sym_float_literal] = ACTIONS(1523), }, - [STATE(418)] = { - [sym_line_comment] = STATE(418), - [sym_block_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_macro_rules_BANG] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_u8] = ACTIONS(1527), - [anon_sym_i8] = ACTIONS(1527), - [anon_sym_u16] = ACTIONS(1527), - [anon_sym_i16] = ACTIONS(1527), - [anon_sym_u32] = ACTIONS(1527), - [anon_sym_i32] = ACTIONS(1527), - [anon_sym_u64] = ACTIONS(1527), - [anon_sym_i64] = ACTIONS(1527), - [anon_sym_u128] = ACTIONS(1527), - [anon_sym_i128] = ACTIONS(1527), - [anon_sym_isize] = ACTIONS(1527), - [anon_sym_usize] = ACTIONS(1527), - [anon_sym_f32] = ACTIONS(1527), - [anon_sym_f64] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_str] = ACTIONS(1527), - [anon_sym_char] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1527), - [anon_sym_PERCENT] = ACTIONS(1527), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(1527), - [anon_sym_PLUS_EQ] = ACTIONS(1525), - [anon_sym_DASH_EQ] = ACTIONS(1525), - [anon_sym_STAR_EQ] = ACTIONS(1525), - [anon_sym_SLASH_EQ] = ACTIONS(1525), - [anon_sym_PERCENT_EQ] = ACTIONS(1525), - [anon_sym_CARET_EQ] = ACTIONS(1525), - [anon_sym_AMP_EQ] = ACTIONS(1525), - [anon_sym_PIPE_EQ] = ACTIONS(1525), - [anon_sym_LT_LT_EQ] = ACTIONS(1525), - [anon_sym_GT_GT_EQ] = ACTIONS(1525), - [anon_sym_EQ] = ACTIONS(1527), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1525), - [anon_sym_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_POUND] = ACTIONS(1525), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_as] = ACTIONS(1527), - [anon_sym_async] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_default] = ACTIONS(1527), - [anon_sym_enum] = ACTIONS(1527), - [anon_sym_fn] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1527), - [anon_sym_gen] = ACTIONS(1527), - [anon_sym_if] = ACTIONS(1527), - [anon_sym_impl] = ACTIONS(1527), - [anon_sym_let] = ACTIONS(1527), - [anon_sym_loop] = ACTIONS(1527), - [anon_sym_match] = ACTIONS(1527), - [anon_sym_mod] = ACTIONS(1527), - [anon_sym_pub] = ACTIONS(1527), - [anon_sym_return] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(1527), - [anon_sym_struct] = ACTIONS(1527), - [anon_sym_trait] = ACTIONS(1527), - [anon_sym_type] = ACTIONS(1527), - [anon_sym_union] = ACTIONS(1527), - [anon_sym_unsafe] = ACTIONS(1527), - [anon_sym_use] = ACTIONS(1527), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_extern] = ACTIONS(1527), - [anon_sym_yield] = ACTIONS(1527), - [anon_sym_move] = ACTIONS(1527), - [anon_sym_try] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1525), - [aux_sym_string_literal_token1] = ACTIONS(1525), - [sym_char_literal] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1527), - [sym_super] = ACTIONS(1527), - [sym_crate] = ACTIONS(1527), - [sym_metavariable] = ACTIONS(1525), - [sym__raw_string_literal_start] = ACTIONS(1525), - [sym_float_literal] = ACTIONS(1525), + [STATE(426)] = { + [sym_line_comment] = STATE(426), + [sym_block_comment] = STATE(426), + [ts_builtin_sym_end] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_macro_rules_BANG] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1529), + [anon_sym_PERCENT] = ACTIONS(1529), + [anon_sym_CARET] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1527), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1529), + [anon_sym_PLUS_EQ] = ACTIONS(1527), + [anon_sym_DASH_EQ] = ACTIONS(1527), + [anon_sym_STAR_EQ] = ACTIONS(1527), + [anon_sym_SLASH_EQ] = ACTIONS(1527), + [anon_sym_PERCENT_EQ] = ACTIONS(1527), + [anon_sym_CARET_EQ] = ACTIONS(1527), + [anon_sym_AMP_EQ] = ACTIONS(1527), + [anon_sym_PIPE_EQ] = ACTIONS(1527), + [anon_sym_LT_LT_EQ] = ACTIONS(1527), + [anon_sym_GT_GT_EQ] = ACTIONS(1527), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_EQ_EQ] = ACTIONS(1527), + [anon_sym_BANG_EQ] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT_EQ] = ACTIONS(1527), + [anon_sym_LT_EQ] = ACTIONS(1527), + [anon_sym_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1527), + [anon_sym_COLON_COLON] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_as] = ACTIONS(1529), + [anon_sym_async] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_enum] = ACTIONS(1529), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_gen] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_impl] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_loop] = ACTIONS(1529), + [anon_sym_match] = ACTIONS(1529), + [anon_sym_mod] = ACTIONS(1529), + [anon_sym_pub] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_struct] = ACTIONS(1529), + [anon_sym_trait] = ACTIONS(1529), + [anon_sym_type] = ACTIONS(1529), + [anon_sym_union] = ACTIONS(1529), + [anon_sym_unsafe] = ACTIONS(1529), + [anon_sym_use] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1529), + [anon_sym_yield] = ACTIONS(1529), + [anon_sym_move] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1527), + [aux_sym_string_literal_token1] = ACTIONS(1527), + [sym_char_literal] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1529), + [sym_super] = ACTIONS(1529), + [sym_crate] = ACTIONS(1529), + [sym_metavariable] = ACTIONS(1527), + [sym__raw_string_literal_start] = ACTIONS(1527), + [sym_float_literal] = ACTIONS(1527), }, - [STATE(419)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(2908), - [sym_variadic_parameter] = STATE(2908), - [sym_parameter] = STATE(2908), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2666), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(419), - [sym_block_comment] = STATE(419), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1529), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(427)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3631), + [sym_variadic_parameter] = STATE(3631), + [sym_parameter] = STATE(3631), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3328), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(427), + [sym_block_comment] = STATE(427), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1531), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(420)] = { - [sym_line_comment] = STATE(420), - [sym_block_comment] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(1531), - [sym_identifier] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_macro_rules_BANG] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_QMARK] = ACTIONS(1531), - [anon_sym_u8] = ACTIONS(1533), - [anon_sym_i8] = ACTIONS(1533), - [anon_sym_u16] = ACTIONS(1533), - [anon_sym_i16] = ACTIONS(1533), - [anon_sym_u32] = ACTIONS(1533), - [anon_sym_i32] = ACTIONS(1533), - [anon_sym_u64] = ACTIONS(1533), - [anon_sym_i64] = ACTIONS(1533), - [anon_sym_u128] = ACTIONS(1533), - [anon_sym_i128] = ACTIONS(1533), - [anon_sym_isize] = ACTIONS(1533), - [anon_sym_usize] = ACTIONS(1533), - [anon_sym_f32] = ACTIONS(1533), - [anon_sym_f64] = ACTIONS(1533), - [anon_sym_bool] = ACTIONS(1533), - [anon_sym_str] = ACTIONS(1533), - [anon_sym_char] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_PIPE_PIPE] = ACTIONS(1531), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_PLUS_EQ] = ACTIONS(1531), - [anon_sym_DASH_EQ] = ACTIONS(1531), - [anon_sym_STAR_EQ] = ACTIONS(1531), - [anon_sym_SLASH_EQ] = ACTIONS(1531), - [anon_sym_PERCENT_EQ] = ACTIONS(1531), - [anon_sym_CARET_EQ] = ACTIONS(1531), - [anon_sym_AMP_EQ] = ACTIONS(1531), - [anon_sym_PIPE_EQ] = ACTIONS(1531), - [anon_sym_LT_LT_EQ] = ACTIONS(1531), - [anon_sym_GT_GT_EQ] = ACTIONS(1531), - [anon_sym_EQ] = ACTIONS(1533), - [anon_sym_EQ_EQ] = ACTIONS(1531), - [anon_sym_BANG_EQ] = ACTIONS(1531), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1531), - [anon_sym_LT_EQ] = ACTIONS(1531), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1531), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_POUND] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1533), - [anon_sym_as] = ACTIONS(1533), - [anon_sym_async] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_fn] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_gen] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_impl] = ACTIONS(1533), - [anon_sym_let] = ACTIONS(1533), - [anon_sym_loop] = ACTIONS(1533), - [anon_sym_match] = ACTIONS(1533), - [anon_sym_mod] = ACTIONS(1533), - [anon_sym_pub] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_trait] = ACTIONS(1533), - [anon_sym_type] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_unsafe] = ACTIONS(1533), - [anon_sym_use] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(1533), - [anon_sym_move] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [sym_integer_literal] = ACTIONS(1531), - [aux_sym_string_literal_token1] = ACTIONS(1531), - [sym_char_literal] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_crate] = ACTIONS(1533), - [sym_metavariable] = ACTIONS(1531), - [sym__raw_string_literal_start] = ACTIONS(1531), - [sym_float_literal] = ACTIONS(1531), + [STATE(428)] = { + [sym_line_comment] = STATE(428), + [sym_block_comment] = STATE(428), + [ts_builtin_sym_end] = ACTIONS(1533), + [sym_identifier] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_macro_rules_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_QMARK] = ACTIONS(1533), + [anon_sym_u8] = ACTIONS(1535), + [anon_sym_i8] = ACTIONS(1535), + [anon_sym_u16] = ACTIONS(1535), + [anon_sym_i16] = ACTIONS(1535), + [anon_sym_u32] = ACTIONS(1535), + [anon_sym_i32] = ACTIONS(1535), + [anon_sym_u64] = ACTIONS(1535), + [anon_sym_i64] = ACTIONS(1535), + [anon_sym_u128] = ACTIONS(1535), + [anon_sym_i128] = ACTIONS(1535), + [anon_sym_isize] = ACTIONS(1535), + [anon_sym_usize] = ACTIONS(1535), + [anon_sym_f32] = ACTIONS(1535), + [anon_sym_f64] = ACTIONS(1535), + [anon_sym_bool] = ACTIONS(1535), + [anon_sym_str] = ACTIONS(1535), + [anon_sym_char] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1535), + [anon_sym_SLASH] = ACTIONS(1535), + [anon_sym_PERCENT] = ACTIONS(1535), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_AMP_AMP] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1535), + [anon_sym_GT_GT] = ACTIONS(1535), + [anon_sym_PLUS_EQ] = ACTIONS(1533), + [anon_sym_DASH_EQ] = ACTIONS(1533), + [anon_sym_STAR_EQ] = ACTIONS(1533), + [anon_sym_SLASH_EQ] = ACTIONS(1533), + [anon_sym_PERCENT_EQ] = ACTIONS(1533), + [anon_sym_CARET_EQ] = ACTIONS(1533), + [anon_sym_AMP_EQ] = ACTIONS(1533), + [anon_sym_PIPE_EQ] = ACTIONS(1533), + [anon_sym_LT_LT_EQ] = ACTIONS(1533), + [anon_sym_GT_GT_EQ] = ACTIONS(1533), + [anon_sym_EQ] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1533), + [anon_sym_BANG_EQ] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_GT_EQ] = ACTIONS(1533), + [anon_sym_LT_EQ] = ACTIONS(1533), + [anon_sym_DOT] = ACTIONS(1535), + [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1533), + [anon_sym_COLON_COLON] = ACTIONS(1533), + [anon_sym_POUND] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_as] = ACTIONS(1535), + [anon_sym_async] = ACTIONS(1535), + [anon_sym_break] = ACTIONS(1535), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_continue] = ACTIONS(1535), + [anon_sym_default] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1535), + [anon_sym_for] = ACTIONS(1535), + [anon_sym_gen] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1535), + [anon_sym_impl] = ACTIONS(1535), + [anon_sym_let] = ACTIONS(1535), + [anon_sym_loop] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mod] = ACTIONS(1535), + [anon_sym_pub] = ACTIONS(1535), + [anon_sym_return] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1535), + [anon_sym_struct] = ACTIONS(1535), + [anon_sym_trait] = ACTIONS(1535), + [anon_sym_type] = ACTIONS(1535), + [anon_sym_union] = ACTIONS(1535), + [anon_sym_unsafe] = ACTIONS(1535), + [anon_sym_use] = ACTIONS(1535), + [anon_sym_while] = ACTIONS(1535), + [anon_sym_extern] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1535), + [anon_sym_move] = ACTIONS(1535), + [anon_sym_try] = ACTIONS(1535), + [sym_integer_literal] = ACTIONS(1533), + [aux_sym_string_literal_token1] = ACTIONS(1533), + [sym_char_literal] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1535), + [anon_sym_false] = ACTIONS(1535), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1535), + [sym_super] = ACTIONS(1535), + [sym_crate] = ACTIONS(1535), + [sym_metavariable] = ACTIONS(1533), + [sym__raw_string_literal_start] = ACTIONS(1533), + [sym_float_literal] = ACTIONS(1533), }, - [STATE(421)] = { - [sym_line_comment] = STATE(421), - [sym_block_comment] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_macro_rules_BANG] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_QMARK] = ACTIONS(1535), - [anon_sym_u8] = ACTIONS(1537), - [anon_sym_i8] = ACTIONS(1537), - [anon_sym_u16] = ACTIONS(1537), - [anon_sym_i16] = ACTIONS(1537), - [anon_sym_u32] = ACTIONS(1537), - [anon_sym_i32] = ACTIONS(1537), - [anon_sym_u64] = ACTIONS(1537), - [anon_sym_i64] = ACTIONS(1537), - [anon_sym_u128] = ACTIONS(1537), - [anon_sym_i128] = ACTIONS(1537), - [anon_sym_isize] = ACTIONS(1537), - [anon_sym_usize] = ACTIONS(1537), - [anon_sym_f32] = ACTIONS(1537), - [anon_sym_f64] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_str] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_PIPE_PIPE] = ACTIONS(1535), - [anon_sym_LT_LT] = ACTIONS(1537), - [anon_sym_GT_GT] = ACTIONS(1537), - [anon_sym_PLUS_EQ] = ACTIONS(1535), - [anon_sym_DASH_EQ] = ACTIONS(1535), - [anon_sym_STAR_EQ] = ACTIONS(1535), - [anon_sym_SLASH_EQ] = ACTIONS(1535), - [anon_sym_PERCENT_EQ] = ACTIONS(1535), - [anon_sym_CARET_EQ] = ACTIONS(1535), - [anon_sym_AMP_EQ] = ACTIONS(1535), - [anon_sym_PIPE_EQ] = ACTIONS(1535), - [anon_sym_LT_LT_EQ] = ACTIONS(1535), - [anon_sym_GT_GT_EQ] = ACTIONS(1535), - [anon_sym_EQ] = ACTIONS(1537), - [anon_sym_EQ_EQ] = ACTIONS(1535), - [anon_sym_BANG_EQ] = ACTIONS(1535), - [anon_sym_GT] = ACTIONS(1537), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_GT_EQ] = ACTIONS(1535), - [anon_sym_LT_EQ] = ACTIONS(1535), - [anon_sym_DOT] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_as] = ACTIONS(1537), - [anon_sym_async] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [anon_sym_fn] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_gen] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_impl] = ACTIONS(1537), - [anon_sym_let] = ACTIONS(1537), - [anon_sym_loop] = ACTIONS(1537), - [anon_sym_match] = ACTIONS(1537), - [anon_sym_mod] = ACTIONS(1537), - [anon_sym_pub] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_trait] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1537), - [anon_sym_unsafe] = ACTIONS(1537), - [anon_sym_use] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_extern] = ACTIONS(1537), - [anon_sym_yield] = ACTIONS(1537), - [anon_sym_move] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1535), - [aux_sym_string_literal_token1] = ACTIONS(1535), - [sym_char_literal] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_crate] = ACTIONS(1537), - [sym_metavariable] = ACTIONS(1535), - [sym__raw_string_literal_start] = ACTIONS(1535), - [sym_float_literal] = ACTIONS(1535), + [STATE(429)] = { + [sym_line_comment] = STATE(429), + [sym_block_comment] = STATE(429), + [ts_builtin_sym_end] = ACTIONS(1537), + [sym_identifier] = ACTIONS(1539), + [anon_sym_SEMI] = ACTIONS(1537), + [anon_sym_macro_rules_BANG] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_QMARK] = ACTIONS(1537), + [anon_sym_u8] = ACTIONS(1539), + [anon_sym_i8] = ACTIONS(1539), + [anon_sym_u16] = ACTIONS(1539), + [anon_sym_i16] = ACTIONS(1539), + [anon_sym_u32] = ACTIONS(1539), + [anon_sym_i32] = ACTIONS(1539), + [anon_sym_u64] = ACTIONS(1539), + [anon_sym_i64] = ACTIONS(1539), + [anon_sym_u128] = ACTIONS(1539), + [anon_sym_i128] = ACTIONS(1539), + [anon_sym_isize] = ACTIONS(1539), + [anon_sym_usize] = ACTIONS(1539), + [anon_sym_f32] = ACTIONS(1539), + [anon_sym_f64] = ACTIONS(1539), + [anon_sym_bool] = ACTIONS(1539), + [anon_sym_str] = ACTIONS(1539), + [anon_sym_char] = ACTIONS(1539), + [anon_sym_DASH] = ACTIONS(1539), + [anon_sym_SLASH] = ACTIONS(1539), + [anon_sym_PERCENT] = ACTIONS(1539), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_AMP_AMP] = ACTIONS(1537), + [anon_sym_PIPE_PIPE] = ACTIONS(1537), + [anon_sym_LT_LT] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(1539), + [anon_sym_PLUS_EQ] = ACTIONS(1537), + [anon_sym_DASH_EQ] = ACTIONS(1537), + [anon_sym_STAR_EQ] = ACTIONS(1537), + [anon_sym_SLASH_EQ] = ACTIONS(1537), + [anon_sym_PERCENT_EQ] = ACTIONS(1537), + [anon_sym_CARET_EQ] = ACTIONS(1537), + [anon_sym_AMP_EQ] = ACTIONS(1537), + [anon_sym_PIPE_EQ] = ACTIONS(1537), + [anon_sym_LT_LT_EQ] = ACTIONS(1537), + [anon_sym_GT_GT_EQ] = ACTIONS(1537), + [anon_sym_EQ] = ACTIONS(1539), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT_EQ] = ACTIONS(1537), + [anon_sym_LT_EQ] = ACTIONS(1537), + [anon_sym_DOT] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1539), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1537), + [anon_sym_COLON_COLON] = ACTIONS(1537), + [anon_sym_POUND] = ACTIONS(1537), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_as] = ACTIONS(1539), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_break] = ACTIONS(1539), + [anon_sym_const] = ACTIONS(1539), + [anon_sym_continue] = ACTIONS(1539), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_enum] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1539), + [anon_sym_for] = ACTIONS(1539), + [anon_sym_gen] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1539), + [anon_sym_impl] = ACTIONS(1539), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_loop] = ACTIONS(1539), + [anon_sym_match] = ACTIONS(1539), + [anon_sym_mod] = ACTIONS(1539), + [anon_sym_pub] = ACTIONS(1539), + [anon_sym_return] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1539), + [anon_sym_trait] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_union] = ACTIONS(1539), + [anon_sym_unsafe] = ACTIONS(1539), + [anon_sym_use] = ACTIONS(1539), + [anon_sym_while] = ACTIONS(1539), + [anon_sym_extern] = ACTIONS(1539), + [anon_sym_yield] = ACTIONS(1539), + [anon_sym_move] = ACTIONS(1539), + [anon_sym_try] = ACTIONS(1539), + [sym_integer_literal] = ACTIONS(1537), + [aux_sym_string_literal_token1] = ACTIONS(1537), + [sym_char_literal] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1539), + [anon_sym_false] = ACTIONS(1539), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1539), + [sym_super] = ACTIONS(1539), + [sym_crate] = ACTIONS(1539), + [sym_metavariable] = ACTIONS(1537), + [sym__raw_string_literal_start] = ACTIONS(1537), + [sym_float_literal] = ACTIONS(1537), }, - [STATE(422)] = { - [sym_line_comment] = STATE(422), - [sym_block_comment] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(1539), - [sym_identifier] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_macro_rules_BANG] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1539), - [anon_sym_u8] = ACTIONS(1541), - [anon_sym_i8] = ACTIONS(1541), - [anon_sym_u16] = ACTIONS(1541), - [anon_sym_i16] = ACTIONS(1541), - [anon_sym_u32] = ACTIONS(1541), - [anon_sym_i32] = ACTIONS(1541), - [anon_sym_u64] = ACTIONS(1541), - [anon_sym_i64] = ACTIONS(1541), - [anon_sym_u128] = ACTIONS(1541), - [anon_sym_i128] = ACTIONS(1541), - [anon_sym_isize] = ACTIONS(1541), - [anon_sym_usize] = ACTIONS(1541), - [anon_sym_f32] = ACTIONS(1541), - [anon_sym_f64] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_str] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(1541), - [anon_sym_PERCENT] = ACTIONS(1541), - [anon_sym_CARET] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_PIPE_PIPE] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1541), - [anon_sym_GT_GT] = ACTIONS(1541), - [anon_sym_PLUS_EQ] = ACTIONS(1539), - [anon_sym_DASH_EQ] = ACTIONS(1539), - [anon_sym_STAR_EQ] = ACTIONS(1539), - [anon_sym_SLASH_EQ] = ACTIONS(1539), - [anon_sym_PERCENT_EQ] = ACTIONS(1539), - [anon_sym_CARET_EQ] = ACTIONS(1539), - [anon_sym_AMP_EQ] = ACTIONS(1539), - [anon_sym_PIPE_EQ] = ACTIONS(1539), - [anon_sym_LT_LT_EQ] = ACTIONS(1539), - [anon_sym_GT_GT_EQ] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1541), - [anon_sym_EQ_EQ] = ACTIONS(1539), - [anon_sym_BANG_EQ] = ACTIONS(1539), - [anon_sym_GT] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1541), - [anon_sym_GT_EQ] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1539), - [anon_sym_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1539), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_POUND] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1541), - [anon_sym_as] = ACTIONS(1541), - [anon_sym_async] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_enum] = ACTIONS(1541), - [anon_sym_fn] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_gen] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_impl] = ACTIONS(1541), - [anon_sym_let] = ACTIONS(1541), - [anon_sym_loop] = ACTIONS(1541), - [anon_sym_match] = ACTIONS(1541), - [anon_sym_mod] = ACTIONS(1541), - [anon_sym_pub] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_struct] = ACTIONS(1541), - [anon_sym_trait] = ACTIONS(1541), - [anon_sym_type] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_unsafe] = ACTIONS(1541), - [anon_sym_use] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(1541), - [anon_sym_yield] = ACTIONS(1541), - [anon_sym_move] = ACTIONS(1541), - [anon_sym_try] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1539), - [aux_sym_string_literal_token1] = ACTIONS(1539), - [sym_char_literal] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1541), - [sym_super] = ACTIONS(1541), - [sym_crate] = ACTIONS(1541), - [sym_metavariable] = ACTIONS(1539), - [sym__raw_string_literal_start] = ACTIONS(1539), - [sym_float_literal] = ACTIONS(1539), + [STATE(430)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_self_parameter] = STATE(3289), + [sym_variadic_parameter] = STATE(3289), + [sym_parameter] = STATE(3289), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3073), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(3515), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3804), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(430), + [sym_block_comment] = STATE(430), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1541), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(423)] = { - [sym_line_comment] = STATE(423), - [sym_block_comment] = STATE(423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1451), - [anon_sym_macro_rules_BANG] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_LBRACK] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1521), - [anon_sym_i8] = ACTIONS(1521), - [anon_sym_u16] = ACTIONS(1521), - [anon_sym_i16] = ACTIONS(1521), - [anon_sym_u32] = ACTIONS(1521), - [anon_sym_i32] = ACTIONS(1521), - [anon_sym_u64] = ACTIONS(1521), - [anon_sym_i64] = ACTIONS(1521), - [anon_sym_u128] = ACTIONS(1521), - [anon_sym_i128] = ACTIONS(1521), - [anon_sym_isize] = ACTIONS(1521), - [anon_sym_usize] = ACTIONS(1521), - [anon_sym_f32] = ACTIONS(1521), - [anon_sym_f64] = ACTIONS(1521), - [anon_sym_bool] = ACTIONS(1521), - [anon_sym_str] = ACTIONS(1521), - [anon_sym_char] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [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(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_gen] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_impl] = ACTIONS(1521), - [anon_sym_let] = ACTIONS(1521), - [anon_sym_loop] = ACTIONS(1521), - [anon_sym_match] = ACTIONS(1521), - [anon_sym_mod] = ACTIONS(1521), - [anon_sym_pub] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_struct] = ACTIONS(1521), - [anon_sym_trait] = ACTIONS(1521), - [anon_sym_type] = ACTIONS(1521), - [anon_sym_union] = ACTIONS(1521), - [anon_sym_unsafe] = ACTIONS(1521), - [anon_sym_use] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1521), - [anon_sym_yield] = ACTIONS(1521), - [anon_sym_move] = ACTIONS(1521), - [anon_sym_try] = ACTIONS(1521), - [sym_integer_literal] = ACTIONS(1519), - [aux_sym_string_literal_token1] = ACTIONS(1519), - [sym_char_literal] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1521), - [sym_super] = ACTIONS(1521), - [sym_crate] = ACTIONS(1521), - [sym_metavariable] = ACTIONS(1519), - [sym__raw_string_literal_start] = ACTIONS(1519), - [sym_float_literal] = ACTIONS(1519), + [STATE(431)] = { + [sym_line_comment] = STATE(431), + [sym_block_comment] = STATE(431), + [sym_identifier] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_macro_rules_BANG] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_QMARK] = ACTIONS(1459), + [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(1461), + [anon_sym_SLASH] = ACTIONS(1461), + [anon_sym_PERCENT] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1457), + [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(1455), + [anon_sym_POUND] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(1461), + [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), }, - [STATE(424)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3087), - [sym_bracketed_type] = STATE(3662), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3403), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2575), - [sym_scoped_identifier] = STATE(2249), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2708), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(424), - [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(432)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3451), + [sym_bracketed_type] = STATE(4154), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3861), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2933), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3133), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(432), + [sym_block_comment] = STATE(432), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_RBRACK] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1549), [anon_sym_i8] = ACTIONS(1549), [anon_sym_u16] = ACTIONS(1549), @@ -65234,520 +67684,838 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1549), [anon_sym_str] = ACTIONS(1549), [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1117), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), [anon_sym_COMMA] = ACTIONS(1553), [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), [anon_sym_default] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1561), [sym_super] = ACTIONS(1561), [sym_crate] = ACTIONS(1561), [sym_metavariable] = ACTIONS(1563), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(425)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(425), - [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1567), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(433)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2352), + [sym_bracketed_type] = STATE(4153), + [sym_lifetime] = STATE(971), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3854), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2862), + [sym_scoped_identifier] = STATE(2494), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2496), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(433), + [sym_block_comment] = STATE(433), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1183), + [anon_sym_i8] = ACTIONS(1183), + [anon_sym_u16] = ACTIONS(1183), + [anon_sym_i16] = ACTIONS(1183), + [anon_sym_u32] = ACTIONS(1183), + [anon_sym_i32] = ACTIONS(1183), + [anon_sym_u64] = ACTIONS(1183), + [anon_sym_i64] = ACTIONS(1183), + [anon_sym_u128] = ACTIONS(1183), + [anon_sym_i128] = ACTIONS(1183), + [anon_sym_isize] = ACTIONS(1183), + [anon_sym_usize] = ACTIONS(1183), + [anon_sym_f32] = ACTIONS(1183), + [anon_sym_f64] = ACTIONS(1183), + [anon_sym_bool] = ACTIONS(1183), + [anon_sym_str] = ACTIONS(1183), + [anon_sym_char] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1195), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1199), + [sym_super] = ACTIONS(1199), + [sym_crate] = ACTIONS(1199), + [sym_metavariable] = ACTIONS(1201), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(426)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(426), - [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1265), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(434)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2329), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2474), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(434), + [sym_block_comment] = STATE(434), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1167), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(427)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(427), - [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), + [STATE(435)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2352), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(971), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2496), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(435), + [sym_block_comment] = STATE(435), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), [sym_mutable_specifier] = ACTIONS(1569), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1571), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_self] = ACTIONS(1167), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(428)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(428), - [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [STATE(436)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2352), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(970), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2496), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(436), + [sym_block_comment] = STATE(436), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1571), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1573), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(429)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3662), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3403), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2575), - [sym_scoped_identifier] = STATE(2249), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(429), - [sym_block_comment] = STATE(429), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(437)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2329), + [sym_bracketed_type] = STATE(4146), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3739), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2897), + [sym_scoped_identifier] = STATE(2612), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2474), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(437), + [sym_block_comment] = STATE(437), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u128] = ACTIONS(1109), + [anon_sym_i128] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_str] = ACTIONS(1109), + [anon_sym_char] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1145), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1575), + [sym_super] = ACTIONS(1167), + [sym_crate] = ACTIONS(1167), + [sym_metavariable] = ACTIONS(1169), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(438)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2352), + [sym_bracketed_type] = STATE(4153), + [sym_lifetime] = STATE(970), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3854), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2862), + [sym_scoped_identifier] = STATE(2494), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2496), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(438), + [sym_block_comment] = STATE(438), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1183), + [anon_sym_i8] = ACTIONS(1183), + [anon_sym_u16] = ACTIONS(1183), + [anon_sym_i16] = ACTIONS(1183), + [anon_sym_u32] = ACTIONS(1183), + [anon_sym_i32] = ACTIONS(1183), + [anon_sym_u64] = ACTIONS(1183), + [anon_sym_i64] = ACTIONS(1183), + [anon_sym_u128] = ACTIONS(1183), + [anon_sym_i128] = ACTIONS(1183), + [anon_sym_isize] = ACTIONS(1183), + [anon_sym_usize] = ACTIONS(1183), + [anon_sym_f32] = ACTIONS(1183), + [anon_sym_f64] = ACTIONS(1183), + [anon_sym_bool] = ACTIONS(1183), + [anon_sym_str] = ACTIONS(1183), + [anon_sym_char] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1195), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1579), + [sym_super] = ACTIONS(1199), + [sym_crate] = ACTIONS(1199), + [sym_metavariable] = ACTIONS(1201), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(439)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2329), + [sym_bracketed_type] = STATE(4153), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3854), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2862), + [sym_scoped_identifier] = STATE(2494), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2474), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(439), + [sym_block_comment] = STATE(439), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1183), + [anon_sym_i8] = ACTIONS(1183), + [anon_sym_u16] = ACTIONS(1183), + [anon_sym_i16] = ACTIONS(1183), + [anon_sym_u32] = ACTIONS(1183), + [anon_sym_i32] = ACTIONS(1183), + [anon_sym_u64] = ACTIONS(1183), + [anon_sym_i64] = ACTIONS(1183), + [anon_sym_u128] = ACTIONS(1183), + [anon_sym_i128] = ACTIONS(1183), + [anon_sym_isize] = ACTIONS(1183), + [anon_sym_usize] = ACTIONS(1183), + [anon_sym_f32] = ACTIONS(1183), + [anon_sym_f64] = ACTIONS(1183), + [anon_sym_bool] = ACTIONS(1183), + [anon_sym_str] = ACTIONS(1183), + [anon_sym_char] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1195), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1581), + [sym_super] = ACTIONS(1199), + [sym_crate] = ACTIONS(1199), + [sym_metavariable] = ACTIONS(1201), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(440)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2352), + [sym_bracketed_type] = STATE(4154), + [sym_lifetime] = STATE(971), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3861), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2933), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2496), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(440), + [sym_block_comment] = STATE(440), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1549), [anon_sym_i8] = ACTIONS(1549), [anon_sym_u16] = ACTIONS(1549), @@ -65765,307 +68533,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1549), [anon_sym_str] = ACTIONS(1549), [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1117), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), [anon_sym_default] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1583), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1561), [sym_super] = ACTIONS(1561), [sym_crate] = ACTIONS(1561), [sym_metavariable] = ACTIONS(1563), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(430)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(430), - [sym_block_comment] = STATE(430), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1577), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(431)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(431), - [sym_block_comment] = STATE(431), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1265), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(441)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2329), + [sym_bracketed_type] = STATE(4153), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3854), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2862), + [sym_scoped_identifier] = STATE(2494), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2474), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(441), + [sym_block_comment] = STATE(441), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1183), + [anon_sym_i8] = ACTIONS(1183), + [anon_sym_u16] = ACTIONS(1183), + [anon_sym_i16] = ACTIONS(1183), + [anon_sym_u32] = ACTIONS(1183), + [anon_sym_i32] = ACTIONS(1183), + [anon_sym_u64] = ACTIONS(1183), + [anon_sym_i64] = ACTIONS(1183), + [anon_sym_u128] = ACTIONS(1183), + [anon_sym_i128] = ACTIONS(1183), + [anon_sym_isize] = ACTIONS(1183), + [anon_sym_usize] = ACTIONS(1183), + [anon_sym_f32] = ACTIONS(1183), + [anon_sym_f64] = ACTIONS(1183), + [anon_sym_bool] = ACTIONS(1183), + [anon_sym_str] = ACTIONS(1183), + [anon_sym_char] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1195), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1199), + [sym_super] = ACTIONS(1199), + [sym_crate] = ACTIONS(1199), + [sym_metavariable] = ACTIONS(1201), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(432)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3662), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3403), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2575), - [sym_scoped_identifier] = STATE(2249), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(432), - [sym_block_comment] = STATE(432), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(442)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2329), + [sym_bracketed_type] = STATE(4154), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3861), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2933), + [sym_scoped_identifier] = STATE(2548), + [sym_scoped_type_identifier] = STATE(2491), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2474), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(442), + [sym_block_comment] = STATE(442), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1543), [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1549), [anon_sym_i8] = ACTIONS(1549), [anon_sym_u16] = ACTIONS(1549), @@ -66083,259 +68745,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1549), [anon_sym_str] = ACTIONS(1549), [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1117), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1137), [anon_sym_default] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_ref] = ACTIONS(1153), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1561), [sym_super] = ACTIONS(1561), [sym_crate] = ACTIONS(1561), [sym_metavariable] = ACTIONS(1563), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(433)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(433), - [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1583), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(434)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(434), - [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(435)] = { - [sym_line_comment] = STATE(435), - [sym_block_comment] = STATE(435), + [STATE(443)] = { + [sym_line_comment] = STATE(443), + [sym_block_comment] = STATE(443), [sym_identifier] = ACTIONS(1585), [anon_sym_SEMI] = ACTIONS(1587), [anon_sym_LPAREN] = ACTIONS(1587), @@ -66434,9 +68884,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1587), [sym_float_literal] = ACTIONS(1587), }, - [STATE(436)] = { - [sym_line_comment] = STATE(436), - [sym_block_comment] = STATE(436), + [STATE(444)] = { + [sym_line_comment] = STATE(444), + [sym_block_comment] = STATE(444), [sym_identifier] = ACTIONS(1585), [anon_sym_LPAREN] = ACTIONS(1587), [anon_sym_LBRACK] = ACTIONS(1587), @@ -66530,34 +68980,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1587), [sym_float_literal] = ACTIONS(1587), }, - [STATE(437)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2180), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(437), - [sym_block_comment] = STATE(437), + [STATE(445)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2486), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(445), + [sym_block_comment] = STATE(445), [sym_identifier] = ACTIONS(1589), [anon_sym_LPAREN] = ACTIONS(1591), [anon_sym_LBRACK] = ACTIONS(1591), @@ -66587,7 +69037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1591), [anon_sym__] = ACTIONS(1589), [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), [anon_sym_COLON_COLON] = ACTIONS(1591), [anon_sym_DASH_GT] = ACTIONS(1591), [anon_sym_SQUOTE] = ACTIONS(1589), @@ -66606,8 +69056,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1589), [anon_sym_unsafe] = ACTIONS(1589), [anon_sym_while] = ACTIONS(1589), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), [anon_sym_yield] = ACTIONS(1589), [anon_sym_move] = ACTIONS(1589), [anon_sym_try] = ACTIONS(1589), @@ -66625,34 +69075,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1591), [sym_float_literal] = ACTIONS(1591), }, - [STATE(438)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2184), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(438), - [sym_block_comment] = STATE(438), + [STATE(446)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2497), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(446), + [sym_block_comment] = STATE(446), [sym_identifier] = ACTIONS(1593), [anon_sym_LPAREN] = ACTIONS(1595), [anon_sym_LBRACK] = ACTIONS(1595), @@ -66682,7 +69132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1595), [anon_sym__] = ACTIONS(1593), [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), [anon_sym_COLON_COLON] = ACTIONS(1595), [anon_sym_DASH_GT] = ACTIONS(1595), [anon_sym_SQUOTE] = ACTIONS(1593), @@ -66701,8 +69151,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1593), [anon_sym_unsafe] = ACTIONS(1593), [anon_sym_while] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), [anon_sym_yield] = ACTIONS(1593), [anon_sym_move] = ACTIONS(1593), [anon_sym_try] = ACTIONS(1593), @@ -66720,40 +69170,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1595), [sym_float_literal] = ACTIONS(1595), }, - [STATE(439)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(439), - [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(447)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2825), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2825), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(3194), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(3194), + [sym__literal] = STATE(3194), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(447), + [sym_block_comment] = STATE(447), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -66777,72 +69227,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1613), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(440)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(440), - [sym_block_comment] = STATE(440), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(448)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2825), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2825), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(3194), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(3194), + [sym__literal] = STATE(3194), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(448), + [sym_block_comment] = STATE(448), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -66866,72 +69316,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1635), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(441)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(441), - [sym_block_comment] = STATE(441), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(449)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2825), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2825), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(3194), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(3194), + [sym__literal] = STATE(3194), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(449), + [sym_block_comment] = STATE(449), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -66955,72 +69405,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1637), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(442)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(442), - [sym_block_comment] = STATE(442), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(450)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2825), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2825), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(3194), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(3194), + [sym__literal] = STATE(3194), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(450), + [sym_block_comment] = STATE(450), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67044,72 +69494,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1639), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(443)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(443), - [sym_block_comment] = STATE(443), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(451)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2825), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2825), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(3194), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(3194), + [sym__literal] = STATE(3194), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(451), + [sym_block_comment] = STATE(451), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67133,72 +69583,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1641), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(444)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(444), - [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(452)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2825), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2825), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(3194), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(3194), + [sym__literal] = STATE(3194), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(452), + [sym_block_comment] = STATE(452), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67222,72 +69672,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1643), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(445)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(445), - [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(453)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2825), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2825), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(3194), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(3194), + [sym__literal] = STATE(3194), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(453), + [sym_block_comment] = STATE(453), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67311,72 +69761,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1645), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(446)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(446), - [sym_block_comment] = STATE(446), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(454)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2825), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2825), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(3194), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(3194), + [sym__literal] = STATE(3194), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(454), + [sym_block_comment] = STATE(454), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67400,72 +69850,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1647), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(447)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(447), - [sym_block_comment] = STATE(447), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(455)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2825), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2825), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(3194), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(3194), + [sym__literal] = STATE(3194), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(455), + [sym_block_comment] = STATE(455), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67489,72 +69939,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1649), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(448)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(448), - [sym_block_comment] = STATE(448), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(456)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2825), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2825), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(3194), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(3194), + [sym__literal] = STATE(3194), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(456), + [sym_block_comment] = STATE(456), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67578,72 +70028,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1651), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(449)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(449), - [sym_block_comment] = STATE(449), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(457)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2825), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2825), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(3194), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(3194), + [sym__literal] = STATE(3194), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(457), + [sym_block_comment] = STATE(457), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67667,72 +70117,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1653), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(450)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(450), - [sym_block_comment] = STATE(450), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(458)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2825), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2825), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(3194), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(3194), + [sym__literal] = STATE(3194), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(458), + [sym_block_comment] = STATE(458), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67756,72 +70206,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_GT] = ACTIONS(1655), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(451)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2392), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2520), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2520), - [sym__literal] = STATE(2520), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(451), - [sym_block_comment] = STATE(451), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(459)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2825), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2825), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(3194), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(3194), + [sym__literal] = STATE(3194), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(459), + [sym_block_comment] = STATE(459), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67845,71 +70295,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(452)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2474), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2474), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2516), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2516), - [sym__literal] = STATE(2516), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(452), - [sym_block_comment] = STATE(452), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(460)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2725), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2725), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(2867), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(2867), + [sym__literal] = STATE(2867), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(460), + [sym_block_comment] = STATE(460), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -67933,71 +70383,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(453)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(453), - [sym_block_comment] = STATE(453), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(461)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2770), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2770), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(2846), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(2846), + [sym__literal] = STATE(2846), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(461), + [sym_block_comment] = STATE(461), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -68021,71 +70471,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(454)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2451), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2451), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2544), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2544), - [sym__literal] = STATE(2544), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(454), - [sym_block_comment] = STATE(454), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(462)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2717), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2717), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(2856), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(2856), + [sym__literal] = STATE(2856), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(462), + [sym_block_comment] = STATE(462), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -68109,71 +70559,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(455)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2380), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2380), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2549), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2549), - [sym__literal] = STATE(2549), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), - [sym_line_comment] = STATE(455), - [sym_block_comment] = STATE(455), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [STATE(463)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2727), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2727), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_type_binding] = STATE(2821), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_label] = STATE(4244), + [sym_block] = STATE(2821), + [sym__literal] = STATE(2821), + [sym_string_literal] = STATE(3348), + [sym_raw_string_literal] = STATE(3348), + [sym_boolean_literal] = STATE(3348), + [sym_line_comment] = STATE(463), + [sym_block_comment] = STATE(463), + [aux_sym_function_modifiers_repeat1] = STATE(2605), [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), @@ -68197,633 +70647,465 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1161), [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1171), [sym_float_literal] = ACTIONS(1629), }, - [STATE(456)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3737), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(456), - [sym_block_comment] = STATE(456), - [aux_sym_match_block_repeat1] = STATE(469), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [STATE(464)] = { + [sym_else_clause] = STATE(492), + [sym_line_comment] = STATE(464), + [sym_block_comment] = STATE(464), + [sym_identifier] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_QMARK] = ACTIONS(1413), + [anon_sym_u8] = ACTIONS(1415), + [anon_sym_i8] = ACTIONS(1415), + [anon_sym_u16] = ACTIONS(1415), + [anon_sym_i16] = ACTIONS(1415), + [anon_sym_u32] = ACTIONS(1415), + [anon_sym_i32] = ACTIONS(1415), + [anon_sym_u64] = ACTIONS(1415), + [anon_sym_i64] = ACTIONS(1415), + [anon_sym_u128] = ACTIONS(1415), + [anon_sym_i128] = ACTIONS(1415), + [anon_sym_isize] = ACTIONS(1415), + [anon_sym_usize] = ACTIONS(1415), + [anon_sym_f32] = ACTIONS(1415), + [anon_sym_f64] = ACTIONS(1415), + [anon_sym_bool] = ACTIONS(1415), + [anon_sym_str] = ACTIONS(1415), + [anon_sym_char] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_SLASH] = ACTIONS(1415), + [anon_sym_PERCENT] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_AMP_AMP] = ACTIONS(1413), + [anon_sym_PIPE_PIPE] = ACTIONS(1413), + [anon_sym_LT_LT] = ACTIONS(1415), + [anon_sym_GT_GT] = ACTIONS(1415), + [anon_sym_PLUS_EQ] = ACTIONS(1413), + [anon_sym_DASH_EQ] = ACTIONS(1413), + [anon_sym_STAR_EQ] = ACTIONS(1413), + [anon_sym_SLASH_EQ] = ACTIONS(1413), + [anon_sym_PERCENT_EQ] = ACTIONS(1413), + [anon_sym_CARET_EQ] = ACTIONS(1413), + [anon_sym_AMP_EQ] = ACTIONS(1413), + [anon_sym_PIPE_EQ] = ACTIONS(1413), + [anon_sym_LT_LT_EQ] = ACTIONS(1413), + [anon_sym_GT_GT_EQ] = ACTIONS(1413), + [anon_sym_EQ] = ACTIONS(1415), + [anon_sym_EQ_EQ] = ACTIONS(1413), + [anon_sym_BANG_EQ] = ACTIONS(1413), + [anon_sym_GT] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1415), + [anon_sym_GT_EQ] = ACTIONS(1413), + [anon_sym_LT_EQ] = ACTIONS(1413), + [anon_sym__] = ACTIONS(1415), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1413), + [anon_sym_COMMA] = ACTIONS(1413), + [anon_sym_COLON_COLON] = ACTIONS(1413), + [anon_sym_POUND] = ACTIONS(1413), + [anon_sym_as] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_default] = ACTIONS(1415), + [anon_sym_gen] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1415), + [anon_sym_ref] = ACTIONS(1415), + [anon_sym_else] = ACTIONS(1657), + [sym_mutable_specifier] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1413), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1415), + [sym_super] = ACTIONS(1415), + [sym_crate] = ACTIONS(1415), + [sym_metavariable] = ACTIONS(1413), + [sym__raw_string_literal_start] = ACTIONS(1413), + [sym_float_literal] = ACTIONS(1413), }, - [STATE(457)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3459), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(457), - [sym_block_comment] = STATE(457), - [aux_sym_match_block_repeat1] = STATE(468), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [STATE(465)] = { + [sym_attribute_item] = STATE(1539), + [sym_inner_attribute_item] = STATE(1539), + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_match_arm] = STATE(1541), + [sym_last_match_arm] = STATE(3940), + [sym_match_pattern] = STATE(3928), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3496), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), + [sym_line_comment] = STATE(465), + [sym_block_comment] = STATE(465), + [aux_sym_match_block_repeat1] = STATE(473), + [aux_sym_match_arm_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), }, - [STATE(458)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3528), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(458), - [sym_block_comment] = STATE(458), - [aux_sym_match_block_repeat1] = STATE(462), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), + [STATE(466)] = { + [sym_attribute_item] = STATE(1539), + [sym_inner_attribute_item] = STATE(1539), + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_match_arm] = STATE(1541), + [sym_last_match_arm] = STATE(4290), + [sym_match_pattern] = STATE(3928), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3496), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), + [sym_line_comment] = STATE(466), + [sym_block_comment] = STATE(466), + [aux_sym_match_block_repeat1] = STATE(474), + [aux_sym_match_arm_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), }, - [STATE(459)] = { - [sym_else_clause] = STATE(479), - [sym_line_comment] = STATE(459), - [sym_block_comment] = STATE(459), - [sym_identifier] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_QMARK] = ACTIONS(1393), - [anon_sym_u8] = ACTIONS(1395), - [anon_sym_i8] = ACTIONS(1395), - [anon_sym_u16] = ACTIONS(1395), - [anon_sym_i16] = ACTIONS(1395), - [anon_sym_u32] = ACTIONS(1395), - [anon_sym_i32] = ACTIONS(1395), - [anon_sym_u64] = ACTIONS(1395), - [anon_sym_i64] = ACTIONS(1395), - [anon_sym_u128] = ACTIONS(1395), - [anon_sym_i128] = ACTIONS(1395), - [anon_sym_isize] = ACTIONS(1395), - [anon_sym_usize] = ACTIONS(1395), - [anon_sym_f32] = ACTIONS(1395), - [anon_sym_f64] = ACTIONS(1395), - [anon_sym_bool] = ACTIONS(1395), - [anon_sym_str] = ACTIONS(1395), - [anon_sym_char] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1393), - [anon_sym_PIPE_PIPE] = ACTIONS(1393), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_PLUS_EQ] = ACTIONS(1393), - [anon_sym_DASH_EQ] = ACTIONS(1393), - [anon_sym_STAR_EQ] = ACTIONS(1393), - [anon_sym_SLASH_EQ] = ACTIONS(1393), - [anon_sym_PERCENT_EQ] = ACTIONS(1393), - [anon_sym_CARET_EQ] = ACTIONS(1393), - [anon_sym_AMP_EQ] = ACTIONS(1393), - [anon_sym_PIPE_EQ] = ACTIONS(1393), - [anon_sym_LT_LT_EQ] = ACTIONS(1393), - [anon_sym_GT_GT_EQ] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_BANG_EQ] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1393), - [anon_sym__] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1393), - [anon_sym_COMMA] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1393), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_as] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_gen] = ACTIONS(1395), - [anon_sym_union] = ACTIONS(1395), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1707), - [sym_mutable_specifier] = ACTIONS(1395), - [sym_integer_literal] = ACTIONS(1393), - [aux_sym_string_literal_token1] = ACTIONS(1393), - [sym_char_literal] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [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(1393), - [sym__raw_string_literal_start] = ACTIONS(1393), - [sym_float_literal] = ACTIONS(1393), + [STATE(467)] = { + [sym_attribute_item] = STATE(1539), + [sym_inner_attribute_item] = STATE(1539), + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_match_arm] = STATE(1541), + [sym_last_match_arm] = STATE(3967), + [sym_match_pattern] = STATE(3928), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3496), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), + [aux_sym_match_block_repeat1] = STATE(476), + [aux_sym_match_arm_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), }, - [STATE(460)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3527), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(460), - [sym_block_comment] = STATE(460), - [aux_sym_match_block_repeat1] = STATE(466), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), + [STATE(468)] = { + [sym_attribute_item] = STATE(1539), + [sym_inner_attribute_item] = STATE(1539), + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_match_arm] = STATE(1541), + [sym_last_match_arm] = STATE(3966), + [sym_match_pattern] = STATE(3928), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3496), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [aux_sym_match_block_repeat1] = STATE(477), + [aux_sym_match_arm_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(461)] = { - [sym_line_comment] = STATE(461), - [sym_block_comment] = STATE(461), - [sym_identifier] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1433), - [anon_sym_i8] = ACTIONS(1433), - [anon_sym_u16] = ACTIONS(1433), - [anon_sym_i16] = ACTIONS(1433), - [anon_sym_u32] = ACTIONS(1433), - [anon_sym_i32] = ACTIONS(1433), - [anon_sym_u64] = ACTIONS(1433), - [anon_sym_i64] = ACTIONS(1433), - [anon_sym_u128] = ACTIONS(1433), - [anon_sym_i128] = ACTIONS(1433), - [anon_sym_isize] = ACTIONS(1433), - [anon_sym_usize] = ACTIONS(1433), - [anon_sym_f32] = ACTIONS(1433), - [anon_sym_f64] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_str] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_SLASH] = ACTIONS(1433), - [anon_sym_PERCENT] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1433), - [anon_sym_GT_GT] = ACTIONS(1433), - [anon_sym_PLUS_EQ] = ACTIONS(1431), - [anon_sym_DASH_EQ] = ACTIONS(1431), - [anon_sym_STAR_EQ] = ACTIONS(1431), - [anon_sym_SLASH_EQ] = ACTIONS(1431), - [anon_sym_PERCENT_EQ] = ACTIONS(1431), - [anon_sym_CARET_EQ] = ACTIONS(1431), - [anon_sym_AMP_EQ] = ACTIONS(1431), - [anon_sym_PIPE_EQ] = ACTIONS(1431), - [anon_sym_LT_LT_EQ] = ACTIONS(1431), - [anon_sym_GT_GT_EQ] = ACTIONS(1431), - [anon_sym_EQ] = ACTIONS(1433), - [anon_sym_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1433), - [anon_sym_LT] = ACTIONS(1433), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym__] = ACTIONS(1433), - [anon_sym_DOT] = ACTIONS(1433), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), - [anon_sym_COMMA] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_POUND] = ACTIONS(1431), - [anon_sym_as] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_gen] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_ref] = ACTIONS(1433), - [anon_sym_else] = ACTIONS(1433), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [aux_sym_string_literal_token1] = ACTIONS(1431), - [sym_char_literal] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1433), - [sym_super] = ACTIONS(1433), - [sym_crate] = ACTIONS(1433), - [sym_metavariable] = ACTIONS(1431), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1431), - }, - [STATE(462)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3777), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(462), - [sym_block_comment] = STATE(462), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), }, - [STATE(463)] = { - [sym_line_comment] = STATE(463), - [sym_block_comment] = STATE(463), + [STATE(469)] = { + [sym_line_comment] = STATE(469), + [sym_block_comment] = STATE(469), [sym_identifier] = ACTIONS(1421), [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_LBRACK] = ACTIONS(1419), @@ -68905,9 +71187,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1419), [sym_float_literal] = ACTIONS(1419), }, - [STATE(464)] = { - [sym_line_comment] = STATE(464), - [sym_block_comment] = STATE(464), + [STATE(470)] = { + [sym_line_comment] = STATE(470), + [sym_block_comment] = STATE(470), [sym_identifier] = ACTIONS(1425), [anon_sym_LPAREN] = ACTIONS(1423), [anon_sym_LBRACK] = ACTIONS(1423), @@ -68989,9 +71271,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1423), [sym_float_literal] = ACTIONS(1423), }, - [STATE(465)] = { - [sym_line_comment] = STATE(465), - [sym_block_comment] = STATE(465), + [STATE(471)] = { + [sym_line_comment] = STATE(471), + [sym_block_comment] = STATE(471), [sym_identifier] = ACTIONS(1429), [anon_sym_LPAREN] = ACTIONS(1427), [anon_sym_LBRACK] = ACTIONS(1427), @@ -69073,93 +71355,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1427), [sym_float_literal] = ACTIONS(1427), }, - [STATE(466)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3580), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(466), - [sym_block_comment] = STATE(466), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [STATE(472)] = { + [sym_line_comment] = STATE(472), + [sym_block_comment] = STATE(472), + [sym_identifier] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(1433), + [anon_sym_PERCENT] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE_PIPE] = ACTIONS(1431), + [anon_sym_LT_LT] = ACTIONS(1433), + [anon_sym_GT_GT] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1431), + [anon_sym_DASH_EQ] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1431), + [anon_sym_SLASH_EQ] = ACTIONS(1431), + [anon_sym_PERCENT_EQ] = ACTIONS(1431), + [anon_sym_CARET_EQ] = ACTIONS(1431), + [anon_sym_AMP_EQ] = ACTIONS(1431), + [anon_sym_PIPE_EQ] = ACTIONS(1431), + [anon_sym_LT_LT_EQ] = ACTIONS(1431), + [anon_sym_GT_GT_EQ] = ACTIONS(1431), + [anon_sym_EQ] = ACTIONS(1433), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(1433), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym__] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_COLON_COLON] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(1431), + [anon_sym_as] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_default] = ACTIONS(1433), + [anon_sym_gen] = ACTIONS(1433), + [anon_sym_union] = ACTIONS(1433), + [anon_sym_ref] = ACTIONS(1433), + [anon_sym_else] = ACTIONS(1433), + [sym_mutable_specifier] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1431), + [aux_sym_string_literal_token1] = ACTIONS(1431), + [sym_char_literal] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1433), + [sym_super] = ACTIONS(1433), + [sym_crate] = ACTIONS(1433), + [sym_metavariable] = ACTIONS(1431), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1431), }, - [STATE(467)] = { - [sym_line_comment] = STATE(467), - [sym_block_comment] = STATE(467), + [STATE(473)] = { + [sym_attribute_item] = STATE(1539), + [sym_inner_attribute_item] = STATE(1539), + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_match_arm] = STATE(1541), + [sym_last_match_arm] = STATE(3951), + [sym_match_pattern] = STATE(3928), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3496), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), + [sym_line_comment] = STATE(473), + [sym_block_comment] = STATE(473), + [aux_sym_match_block_repeat1] = STATE(478), + [aux_sym_match_arm_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), + }, + [STATE(474)] = { + [sym_attribute_item] = STATE(1539), + [sym_inner_attribute_item] = STATE(1539), + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_match_arm] = STATE(1541), + [sym_last_match_arm] = STATE(3931), + [sym_match_pattern] = STATE(3928), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3496), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), + [sym_line_comment] = STATE(474), + [sym_block_comment] = STATE(474), + [aux_sym_match_block_repeat1] = STATE(478), + [aux_sym_match_arm_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), + }, + [STATE(475)] = { + [sym_line_comment] = STATE(475), + [sym_block_comment] = STATE(475), [sym_identifier] = ACTIONS(1437), [anon_sym_LPAREN] = ACTIONS(1435), [anon_sym_LBRACK] = ACTIONS(1435), @@ -69241,920 +71691,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1435), [sym_float_literal] = ACTIONS(1435), }, - [STATE(468)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3499), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(468), - [sym_block_comment] = STATE(468), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(469)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3469), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(469), - [sym_block_comment] = STATE(469), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(470)] = { - [sym_line_comment] = STATE(470), - [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_QMARK] = ACTIONS(1535), - [anon_sym_u8] = ACTIONS(1537), - [anon_sym_i8] = ACTIONS(1537), - [anon_sym_u16] = ACTIONS(1537), - [anon_sym_i16] = ACTIONS(1537), - [anon_sym_u32] = ACTIONS(1537), - [anon_sym_i32] = ACTIONS(1537), - [anon_sym_u64] = ACTIONS(1537), - [anon_sym_i64] = ACTIONS(1537), - [anon_sym_u128] = ACTIONS(1537), - [anon_sym_i128] = ACTIONS(1537), - [anon_sym_isize] = ACTIONS(1537), - [anon_sym_usize] = ACTIONS(1537), - [anon_sym_f32] = ACTIONS(1537), - [anon_sym_f64] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_str] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_PIPE_PIPE] = ACTIONS(1535), - [anon_sym_LT_LT] = ACTIONS(1537), - [anon_sym_GT_GT] = ACTIONS(1537), - [anon_sym_PLUS_EQ] = ACTIONS(1535), - [anon_sym_DASH_EQ] = ACTIONS(1535), - [anon_sym_STAR_EQ] = ACTIONS(1535), - [anon_sym_SLASH_EQ] = ACTIONS(1535), - [anon_sym_PERCENT_EQ] = ACTIONS(1535), - [anon_sym_CARET_EQ] = ACTIONS(1535), - [anon_sym_AMP_EQ] = ACTIONS(1535), - [anon_sym_PIPE_EQ] = ACTIONS(1535), - [anon_sym_LT_LT_EQ] = ACTIONS(1535), - [anon_sym_GT_GT_EQ] = ACTIONS(1535), - [anon_sym_EQ] = ACTIONS(1537), - [anon_sym_EQ_EQ] = ACTIONS(1535), - [anon_sym_BANG_EQ] = ACTIONS(1535), - [anon_sym_GT] = ACTIONS(1537), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_GT_EQ] = ACTIONS(1535), - [anon_sym_LT_EQ] = ACTIONS(1535), - [anon_sym__] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), - [anon_sym_COMMA] = ACTIONS(1535), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_gen] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1537), - [sym_mutable_specifier] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1535), - [aux_sym_string_literal_token1] = ACTIONS(1535), - [sym_char_literal] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_crate] = ACTIONS(1537), - [sym_metavariable] = ACTIONS(1535), - [sym__raw_string_literal_start] = ACTIONS(1535), - [sym_float_literal] = ACTIONS(1535), - }, - [STATE(471)] = { - [sym_line_comment] = STATE(471), - [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1711), - [anon_sym_i8] = ACTIONS(1711), - [anon_sym_u16] = ACTIONS(1711), - [anon_sym_i16] = ACTIONS(1711), - [anon_sym_u32] = ACTIONS(1711), - [anon_sym_i32] = ACTIONS(1711), - [anon_sym_u64] = ACTIONS(1711), - [anon_sym_i64] = ACTIONS(1711), - [anon_sym_u128] = ACTIONS(1711), - [anon_sym_i128] = ACTIONS(1711), - [anon_sym_isize] = ACTIONS(1711), - [anon_sym_usize] = ACTIONS(1711), - [anon_sym_f32] = ACTIONS(1711), - [anon_sym_f64] = ACTIONS(1711), - [anon_sym_bool] = ACTIONS(1711), - [anon_sym_str] = ACTIONS(1711), - [anon_sym_char] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [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(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym__] = ACTIONS(1711), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_default] = ACTIONS(1711), - [anon_sym_gen] = ACTIONS(1711), - [anon_sym_union] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1711), - [sym_mutable_specifier] = ACTIONS(1711), - [sym_integer_literal] = ACTIONS(1713), - [aux_sym_string_literal_token1] = ACTIONS(1713), - [sym_char_literal] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1711), - [anon_sym_false] = ACTIONS(1711), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1713), - [sym_float_literal] = ACTIONS(1713), - }, - [STATE(472)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_match_pattern] = STATE(3570), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(472), - [sym_block_comment] = STATE(472), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(627), - [sym_identifier] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_u8] = ACTIONS(1724), - [anon_sym_i8] = ACTIONS(1724), - [anon_sym_u16] = ACTIONS(1724), - [anon_sym_i16] = ACTIONS(1724), - [anon_sym_u32] = ACTIONS(1724), - [anon_sym_i32] = ACTIONS(1724), - [anon_sym_u64] = ACTIONS(1724), - [anon_sym_i64] = ACTIONS(1724), - [anon_sym_u128] = ACTIONS(1724), - [anon_sym_i128] = ACTIONS(1724), - [anon_sym_isize] = ACTIONS(1724), - [anon_sym_usize] = ACTIONS(1724), - [anon_sym_f32] = ACTIONS(1724), - [anon_sym_f64] = ACTIONS(1724), - [anon_sym_bool] = ACTIONS(1724), - [anon_sym_str] = ACTIONS(1724), - [anon_sym_char] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym__] = ACTIONS(1739), - [anon_sym_DOT_DOT] = ACTIONS(1742), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_COLON_COLON] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(1751), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1757), - [anon_sym_gen] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_ref] = ACTIONS(1760), - [sym_mutable_specifier] = ACTIONS(1763), - [sym_integer_literal] = ACTIONS(1766), - [aux_sym_string_literal_token1] = ACTIONS(1769), - [sym_char_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1775), - [sym_super] = ACTIONS(1775), - [sym_crate] = ACTIONS(1775), - [sym_metavariable] = ACTIONS(1778), - [sym__raw_string_literal_start] = ACTIONS(1781), - [sym_float_literal] = ACTIONS(1766), - }, - [STATE(473)] = { - [sym_line_comment] = STATE(473), - [sym_block_comment] = STATE(473), - [sym_identifier] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [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(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym__] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_gen] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_ref] = ACTIONS(1784), - [sym_mutable_specifier] = ACTIONS(1784), - [sym_integer_literal] = ACTIONS(1786), - [aux_sym_string_literal_token1] = ACTIONS(1786), - [sym_char_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1784), - [sym_super] = ACTIONS(1784), - [sym_crate] = ACTIONS(1784), - [sym_metavariable] = ACTIONS(1786), - [sym__raw_string_literal_start] = ACTIONS(1786), - [sym_float_literal] = ACTIONS(1786), - }, - [STATE(474)] = { - [sym_line_comment] = STATE(474), - [sym_block_comment] = STATE(474), - [sym_identifier] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_QMARK] = ACTIONS(1461), - [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(1463), - [anon_sym_PERCENT] = ACTIONS(1463), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1461), - [anon_sym_PIPE_PIPE] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1461), - [anon_sym_DASH_EQ] = ACTIONS(1461), - [anon_sym_STAR_EQ] = ACTIONS(1461), - [anon_sym_SLASH_EQ] = ACTIONS(1461), - [anon_sym_PERCENT_EQ] = ACTIONS(1461), - [anon_sym_CARET_EQ] = ACTIONS(1461), - [anon_sym_AMP_EQ] = ACTIONS(1461), - [anon_sym_PIPE_EQ] = ACTIONS(1461), - [anon_sym_LT_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_GT_EQ] = ACTIONS(1461), - [anon_sym_EQ] = ACTIONS(1463), - [anon_sym_EQ_EQ] = ACTIONS(1461), - [anon_sym_BANG_EQ] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym__] = ACTIONS(1463), - [anon_sym_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1461), - [anon_sym_COMMA] = ACTIONS(1461), - [anon_sym_COLON_COLON] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_default] = ACTIONS(1463), - [anon_sym_gen] = ACTIONS(1463), - [anon_sym_union] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1463), - [sym_mutable_specifier] = 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), - }, - [STATE(475)] = { - [sym_line_comment] = STATE(475), - [sym_block_comment] = STATE(475), - [sym_identifier] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1481), - [anon_sym_u8] = ACTIONS(1483), - [anon_sym_i8] = ACTIONS(1483), - [anon_sym_u16] = ACTIONS(1483), - [anon_sym_i16] = ACTIONS(1483), - [anon_sym_u32] = ACTIONS(1483), - [anon_sym_i32] = ACTIONS(1483), - [anon_sym_u64] = ACTIONS(1483), - [anon_sym_i64] = ACTIONS(1483), - [anon_sym_u128] = ACTIONS(1483), - [anon_sym_i128] = ACTIONS(1483), - [anon_sym_isize] = ACTIONS(1483), - [anon_sym_usize] = ACTIONS(1483), - [anon_sym_f32] = ACTIONS(1483), - [anon_sym_f64] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_str] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1483), - [anon_sym_GT_GT] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_PERCENT_EQ] = ACTIONS(1481), - [anon_sym_CARET_EQ] = ACTIONS(1481), - [anon_sym_AMP_EQ] = ACTIONS(1481), - [anon_sym_PIPE_EQ] = ACTIONS(1481), - [anon_sym_LT_LT_EQ] = ACTIONS(1481), - [anon_sym_GT_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym__] = ACTIONS(1483), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1481), - [anon_sym_COLON_COLON] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1481), - [anon_sym_as] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_gen] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1483), - [sym_mutable_specifier] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1481), - [aux_sym_string_literal_token1] = ACTIONS(1481), - [sym_char_literal] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1483), - [sym_super] = ACTIONS(1483), - [sym_crate] = ACTIONS(1483), - [sym_metavariable] = ACTIONS(1481), - [sym__raw_string_literal_start] = ACTIONS(1481), - [sym_float_literal] = ACTIONS(1481), - }, [STATE(476)] = { + [sym_attribute_item] = STATE(1539), + [sym_inner_attribute_item] = STATE(1539), + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_match_arm] = STATE(1541), + [sym_last_match_arm] = STATE(4206), + [sym_match_pattern] = STATE(3928), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3496), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), [sym_line_comment] = STATE(476), [sym_block_comment] = STATE(476), - [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), + [aux_sym_match_block_repeat1] = STATE(478), + [aux_sym_match_arm_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), }, [STATE(477)] = { + [sym_attribute_item] = STATE(1539), + [sym_inner_attribute_item] = STATE(1539), + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_match_arm] = STATE(1541), + [sym_last_match_arm] = STATE(4035), + [sym_match_pattern] = STATE(3928), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3496), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_QMARK] = ACTIONS(1531), - [anon_sym_u8] = ACTIONS(1533), - [anon_sym_i8] = ACTIONS(1533), - [anon_sym_u16] = ACTIONS(1533), - [anon_sym_i16] = ACTIONS(1533), - [anon_sym_u32] = ACTIONS(1533), - [anon_sym_i32] = ACTIONS(1533), - [anon_sym_u64] = ACTIONS(1533), - [anon_sym_i64] = ACTIONS(1533), - [anon_sym_u128] = ACTIONS(1533), - [anon_sym_i128] = ACTIONS(1533), - [anon_sym_isize] = ACTIONS(1533), - [anon_sym_usize] = ACTIONS(1533), - [anon_sym_f32] = ACTIONS(1533), - [anon_sym_f64] = ACTIONS(1533), - [anon_sym_bool] = ACTIONS(1533), - [anon_sym_str] = ACTIONS(1533), - [anon_sym_char] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_PIPE_PIPE] = ACTIONS(1531), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_PLUS_EQ] = ACTIONS(1531), - [anon_sym_DASH_EQ] = ACTIONS(1531), - [anon_sym_STAR_EQ] = ACTIONS(1531), - [anon_sym_SLASH_EQ] = ACTIONS(1531), - [anon_sym_PERCENT_EQ] = ACTIONS(1531), - [anon_sym_CARET_EQ] = ACTIONS(1531), - [anon_sym_AMP_EQ] = ACTIONS(1531), - [anon_sym_PIPE_EQ] = ACTIONS(1531), - [anon_sym_LT_LT_EQ] = ACTIONS(1531), - [anon_sym_GT_GT_EQ] = ACTIONS(1531), - [anon_sym_EQ] = ACTIONS(1533), - [anon_sym_EQ_EQ] = ACTIONS(1531), - [anon_sym_BANG_EQ] = ACTIONS(1531), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1531), - [anon_sym_LT_EQ] = ACTIONS(1531), - [anon_sym__] = ACTIONS(1533), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1531), - [anon_sym_COMMA] = ACTIONS(1531), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_POUND] = ACTIONS(1531), - [anon_sym_as] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_gen] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_ref] = ACTIONS(1533), - [sym_mutable_specifier] = ACTIONS(1533), - [sym_integer_literal] = ACTIONS(1531), - [aux_sym_string_literal_token1] = ACTIONS(1531), - [sym_char_literal] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_crate] = ACTIONS(1533), - [sym_metavariable] = ACTIONS(1531), - [sym__raw_string_literal_start] = ACTIONS(1531), - [sym_float_literal] = ACTIONS(1531), + [aux_sym_match_block_repeat1] = STATE(478), + [aux_sym_match_arm_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), }, [STATE(478)] = { + [sym_attribute_item] = STATE(1539), + [sym_inner_attribute_item] = STATE(1539), + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_match_arm] = STATE(1541), + [sym_match_pattern] = STATE(4294), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3496), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), [sym_line_comment] = STATE(478), [sym_block_comment] = STATE(478), - [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), + [aux_sym_match_block_repeat1] = STATE(478), + [aux_sym_match_arm_repeat1] = STATE(861), + [sym_identifier] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_u8] = ACTIONS(1720), + [anon_sym_i8] = ACTIONS(1720), + [anon_sym_u16] = ACTIONS(1720), + [anon_sym_i16] = ACTIONS(1720), + [anon_sym_u32] = ACTIONS(1720), + [anon_sym_i32] = ACTIONS(1720), + [anon_sym_u64] = ACTIONS(1720), + [anon_sym_i64] = ACTIONS(1720), + [anon_sym_u128] = ACTIONS(1720), + [anon_sym_i128] = ACTIONS(1720), + [anon_sym_isize] = ACTIONS(1720), + [anon_sym_usize] = ACTIONS(1720), + [anon_sym_f32] = ACTIONS(1720), + [anon_sym_f64] = ACTIONS(1720), + [anon_sym_bool] = ACTIONS(1720), + [anon_sym_str] = ACTIONS(1720), + [anon_sym_char] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym__] = ACTIONS(1735), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_POUND] = ACTIONS(1747), + [anon_sym_const] = ACTIONS(1750), + [anon_sym_default] = ACTIONS(1753), + [anon_sym_gen] = ACTIONS(1753), + [anon_sym_union] = ACTIONS(1753), + [anon_sym_ref] = ACTIONS(1756), + [sym_mutable_specifier] = ACTIONS(1759), + [sym_integer_literal] = ACTIONS(1762), + [aux_sym_string_literal_token1] = ACTIONS(1765), + [sym_char_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1774), + [sym__raw_string_literal_start] = ACTIONS(1777), + [sym_float_literal] = ACTIONS(1762), }, [STATE(479)] = { [sym_line_comment] = STATE(479), @@ -70242,6 +72028,504 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(480)] = { [sym_line_comment] = STATE(480), [sym_block_comment] = STATE(480), + [sym_identifier] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1519), + [anon_sym_u8] = ACTIONS(1521), + [anon_sym_i8] = ACTIONS(1521), + [anon_sym_u16] = ACTIONS(1521), + [anon_sym_i16] = ACTIONS(1521), + [anon_sym_u32] = ACTIONS(1521), + [anon_sym_i32] = ACTIONS(1521), + [anon_sym_u64] = ACTIONS(1521), + [anon_sym_i64] = ACTIONS(1521), + [anon_sym_u128] = ACTIONS(1521), + [anon_sym_i128] = ACTIONS(1521), + [anon_sym_isize] = ACTIONS(1521), + [anon_sym_usize] = ACTIONS(1521), + [anon_sym_f32] = ACTIONS(1521), + [anon_sym_f64] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_str] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_SLASH] = ACTIONS(1521), + [anon_sym_PERCENT] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_PIPE_PIPE] = ACTIONS(1519), + [anon_sym_LT_LT] = ACTIONS(1521), + [anon_sym_GT_GT] = ACTIONS(1521), + [anon_sym_PLUS_EQ] = ACTIONS(1519), + [anon_sym_DASH_EQ] = ACTIONS(1519), + [anon_sym_STAR_EQ] = ACTIONS(1519), + [anon_sym_SLASH_EQ] = ACTIONS(1519), + [anon_sym_PERCENT_EQ] = ACTIONS(1519), + [anon_sym_CARET_EQ] = ACTIONS(1519), + [anon_sym_AMP_EQ] = ACTIONS(1519), + [anon_sym_PIPE_EQ] = ACTIONS(1519), + [anon_sym_LT_LT_EQ] = ACTIONS(1519), + [anon_sym_GT_GT_EQ] = ACTIONS(1519), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_EQ_EQ] = ACTIONS(1519), + [anon_sym_BANG_EQ] = ACTIONS(1519), + [anon_sym_GT] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1521), + [anon_sym_GT_EQ] = ACTIONS(1519), + [anon_sym_LT_EQ] = ACTIONS(1519), + [anon_sym__] = ACTIONS(1521), + [anon_sym_DOT] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(1519), + [anon_sym_as] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_gen] = ACTIONS(1521), + [anon_sym_union] = ACTIONS(1521), + [anon_sym_ref] = ACTIONS(1521), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1519), + [aux_sym_string_literal_token1] = ACTIONS(1519), + [sym_char_literal] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1521), + [sym_super] = ACTIONS(1521), + [sym_crate] = ACTIONS(1521), + [sym_metavariable] = ACTIONS(1519), + [sym__raw_string_literal_start] = ACTIONS(1519), + [sym_float_literal] = ACTIONS(1519), + }, + [STATE(481)] = { + [sym_line_comment] = STATE(481), + [sym_block_comment] = STATE(481), + [sym_identifier] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_LBRACK] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_u8] = ACTIONS(1525), + [anon_sym_i8] = ACTIONS(1525), + [anon_sym_u16] = ACTIONS(1525), + [anon_sym_i16] = ACTIONS(1525), + [anon_sym_u32] = ACTIONS(1525), + [anon_sym_i32] = ACTIONS(1525), + [anon_sym_u64] = ACTIONS(1525), + [anon_sym_i64] = ACTIONS(1525), + [anon_sym_u128] = ACTIONS(1525), + [anon_sym_i128] = ACTIONS(1525), + [anon_sym_isize] = ACTIONS(1525), + [anon_sym_usize] = ACTIONS(1525), + [anon_sym_f32] = ACTIONS(1525), + [anon_sym_f64] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_str] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_SLASH] = ACTIONS(1525), + [anon_sym_PERCENT] = ACTIONS(1525), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_PIPE_PIPE] = ACTIONS(1523), + [anon_sym_LT_LT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1523), + [anon_sym_DASH_EQ] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1523), + [anon_sym_SLASH_EQ] = ACTIONS(1523), + [anon_sym_PERCENT_EQ] = ACTIONS(1523), + [anon_sym_CARET_EQ] = ACTIONS(1523), + [anon_sym_AMP_EQ] = ACTIONS(1523), + [anon_sym_PIPE_EQ] = ACTIONS(1523), + [anon_sym_LT_LT_EQ] = ACTIONS(1523), + [anon_sym_GT_GT_EQ] = ACTIONS(1523), + [anon_sym_EQ] = ACTIONS(1525), + [anon_sym_EQ_EQ] = ACTIONS(1523), + [anon_sym_BANG_EQ] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1523), + [anon_sym__] = ACTIONS(1525), + [anon_sym_DOT] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1523), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1523), + [anon_sym_COMMA] = ACTIONS(1523), + [anon_sym_COLON_COLON] = ACTIONS(1523), + [anon_sym_POUND] = ACTIONS(1523), + [anon_sym_as] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_default] = ACTIONS(1525), + [anon_sym_gen] = ACTIONS(1525), + [anon_sym_union] = ACTIONS(1525), + [anon_sym_ref] = ACTIONS(1525), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1523), + [aux_sym_string_literal_token1] = ACTIONS(1523), + [sym_char_literal] = ACTIONS(1523), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1525), + [sym_super] = ACTIONS(1525), + [sym_crate] = ACTIONS(1525), + [sym_metavariable] = ACTIONS(1523), + [sym__raw_string_literal_start] = ACTIONS(1523), + [sym_float_literal] = ACTIONS(1523), + }, + [STATE(482)] = { + [sym_line_comment] = STATE(482), + [sym_block_comment] = STATE(482), + [sym_identifier] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_QMARK] = ACTIONS(1537), + [anon_sym_u8] = ACTIONS(1539), + [anon_sym_i8] = ACTIONS(1539), + [anon_sym_u16] = ACTIONS(1539), + [anon_sym_i16] = ACTIONS(1539), + [anon_sym_u32] = ACTIONS(1539), + [anon_sym_i32] = ACTIONS(1539), + [anon_sym_u64] = ACTIONS(1539), + [anon_sym_i64] = ACTIONS(1539), + [anon_sym_u128] = ACTIONS(1539), + [anon_sym_i128] = ACTIONS(1539), + [anon_sym_isize] = ACTIONS(1539), + [anon_sym_usize] = ACTIONS(1539), + [anon_sym_f32] = ACTIONS(1539), + [anon_sym_f64] = ACTIONS(1539), + [anon_sym_bool] = ACTIONS(1539), + [anon_sym_str] = ACTIONS(1539), + [anon_sym_char] = ACTIONS(1539), + [anon_sym_DASH] = ACTIONS(1539), + [anon_sym_SLASH] = ACTIONS(1539), + [anon_sym_PERCENT] = ACTIONS(1539), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_AMP_AMP] = ACTIONS(1537), + [anon_sym_PIPE_PIPE] = ACTIONS(1537), + [anon_sym_LT_LT] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(1539), + [anon_sym_PLUS_EQ] = ACTIONS(1537), + [anon_sym_DASH_EQ] = ACTIONS(1537), + [anon_sym_STAR_EQ] = ACTIONS(1537), + [anon_sym_SLASH_EQ] = ACTIONS(1537), + [anon_sym_PERCENT_EQ] = ACTIONS(1537), + [anon_sym_CARET_EQ] = ACTIONS(1537), + [anon_sym_AMP_EQ] = ACTIONS(1537), + [anon_sym_PIPE_EQ] = ACTIONS(1537), + [anon_sym_LT_LT_EQ] = ACTIONS(1537), + [anon_sym_GT_GT_EQ] = ACTIONS(1537), + [anon_sym_EQ] = ACTIONS(1539), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT_EQ] = ACTIONS(1537), + [anon_sym_LT_EQ] = ACTIONS(1537), + [anon_sym__] = ACTIONS(1539), + [anon_sym_DOT] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1539), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1537), + [anon_sym_COMMA] = ACTIONS(1537), + [anon_sym_COLON_COLON] = ACTIONS(1537), + [anon_sym_POUND] = ACTIONS(1537), + [anon_sym_as] = ACTIONS(1539), + [anon_sym_const] = ACTIONS(1539), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_gen] = ACTIONS(1539), + [anon_sym_union] = ACTIONS(1539), + [anon_sym_ref] = ACTIONS(1539), + [sym_mutable_specifier] = ACTIONS(1539), + [sym_integer_literal] = ACTIONS(1537), + [aux_sym_string_literal_token1] = ACTIONS(1537), + [sym_char_literal] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1539), + [anon_sym_false] = ACTIONS(1539), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1539), + [sym_super] = ACTIONS(1539), + [sym_crate] = ACTIONS(1539), + [sym_metavariable] = ACTIONS(1537), + [sym__raw_string_literal_start] = ACTIONS(1537), + [sym_float_literal] = ACTIONS(1537), + }, + [STATE(483)] = { + [sym_line_comment] = STATE(483), + [sym_block_comment] = STATE(483), + [sym_identifier] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_QMARK] = 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(1447), + [anon_sym_SLASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1445), + [anon_sym_PIPE_PIPE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1447), + [anon_sym_PLUS_EQ] = ACTIONS(1445), + [anon_sym_DASH_EQ] = ACTIONS(1445), + [anon_sym_STAR_EQ] = ACTIONS(1445), + [anon_sym_SLASH_EQ] = ACTIONS(1445), + [anon_sym_PERCENT_EQ] = ACTIONS(1445), + [anon_sym_CARET_EQ] = ACTIONS(1445), + [anon_sym_AMP_EQ] = ACTIONS(1445), + [anon_sym_PIPE_EQ] = ACTIONS(1445), + [anon_sym_LT_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_GT_EQ] = ACTIONS(1445), + [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym__] = ACTIONS(1447), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), + [anon_sym_COMMA] = ACTIONS(1445), + [anon_sym_COLON_COLON] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(1445), + [anon_sym_as] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1447), + [anon_sym_gen] = ACTIONS(1447), + [anon_sym_union] = ACTIONS(1447), + [anon_sym_ref] = ACTIONS(1447), + [sym_mutable_specifier] = 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), + }, + [STATE(484)] = { + [sym_line_comment] = STATE(484), + [sym_block_comment] = STATE(484), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1487), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_u8] = ACTIONS(1489), + [anon_sym_i8] = ACTIONS(1489), + [anon_sym_u16] = ACTIONS(1489), + [anon_sym_i16] = ACTIONS(1489), + [anon_sym_u32] = ACTIONS(1489), + [anon_sym_i32] = ACTIONS(1489), + [anon_sym_u64] = ACTIONS(1489), + [anon_sym_i64] = ACTIONS(1489), + [anon_sym_u128] = ACTIONS(1489), + [anon_sym_i128] = ACTIONS(1489), + [anon_sym_isize] = ACTIONS(1489), + [anon_sym_usize] = ACTIONS(1489), + [anon_sym_f32] = ACTIONS(1489), + [anon_sym_f64] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_str] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_PERCENT] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1489), + [anon_sym_GT_GT] = ACTIONS(1489), + [anon_sym_PLUS_EQ] = ACTIONS(1487), + [anon_sym_DASH_EQ] = ACTIONS(1487), + [anon_sym_STAR_EQ] = ACTIONS(1487), + [anon_sym_SLASH_EQ] = ACTIONS(1487), + [anon_sym_PERCENT_EQ] = ACTIONS(1487), + [anon_sym_CARET_EQ] = ACTIONS(1487), + [anon_sym_AMP_EQ] = ACTIONS(1487), + [anon_sym_PIPE_EQ] = ACTIONS(1487), + [anon_sym_LT_LT_EQ] = ACTIONS(1487), + [anon_sym_GT_GT_EQ] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1489), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym__] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1487), + [anon_sym_COMMA] = ACTIONS(1487), + [anon_sym_COLON_COLON] = ACTIONS(1487), + [anon_sym_POUND] = ACTIONS(1487), + [anon_sym_as] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_default] = ACTIONS(1489), + [anon_sym_gen] = ACTIONS(1489), + [anon_sym_union] = ACTIONS(1489), + [anon_sym_ref] = ACTIONS(1489), + [sym_mutable_specifier] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1487), + [aux_sym_string_literal_token1] = ACTIONS(1487), + [sym_char_literal] = ACTIONS(1487), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1489), + [sym_super] = ACTIONS(1489), + [sym_crate] = ACTIONS(1489), + [sym_metavariable] = ACTIONS(1487), + [sym__raw_string_literal_start] = ACTIONS(1487), + [sym_float_literal] = ACTIONS(1487), + }, + [STATE(485)] = { + [sym_line_comment] = STATE(485), + [sym_block_comment] = STATE(485), + [sym_identifier] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_QMARK] = ACTIONS(1439), + [anon_sym_u8] = ACTIONS(1441), + [anon_sym_i8] = ACTIONS(1441), + [anon_sym_u16] = ACTIONS(1441), + [anon_sym_i16] = ACTIONS(1441), + [anon_sym_u32] = ACTIONS(1441), + [anon_sym_i32] = ACTIONS(1441), + [anon_sym_u64] = ACTIONS(1441), + [anon_sym_i64] = ACTIONS(1441), + [anon_sym_u128] = ACTIONS(1441), + [anon_sym_i128] = ACTIONS(1441), + [anon_sym_isize] = ACTIONS(1441), + [anon_sym_usize] = ACTIONS(1441), + [anon_sym_f32] = ACTIONS(1441), + [anon_sym_f64] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_str] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_PIPE_PIPE] = ACTIONS(1439), + [anon_sym_LT_LT] = ACTIONS(1441), + [anon_sym_GT_GT] = ACTIONS(1441), + [anon_sym_PLUS_EQ] = ACTIONS(1439), + [anon_sym_DASH_EQ] = ACTIONS(1439), + [anon_sym_STAR_EQ] = ACTIONS(1439), + [anon_sym_SLASH_EQ] = ACTIONS(1439), + [anon_sym_PERCENT_EQ] = ACTIONS(1439), + [anon_sym_CARET_EQ] = ACTIONS(1439), + [anon_sym_AMP_EQ] = ACTIONS(1439), + [anon_sym_PIPE_EQ] = ACTIONS(1439), + [anon_sym_LT_LT_EQ] = ACTIONS(1439), + [anon_sym_GT_GT_EQ] = ACTIONS(1439), + [anon_sym_EQ] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1439), + [anon_sym_BANG_EQ] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_GT_EQ] = ACTIONS(1439), + [anon_sym_LT_EQ] = ACTIONS(1439), + [anon_sym__] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1439), + [anon_sym_COMMA] = ACTIONS(1439), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(1439), + [anon_sym_as] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_gen] = ACTIONS(1441), + [anon_sym_union] = ACTIONS(1441), + [anon_sym_ref] = ACTIONS(1441), + [sym_mutable_specifier] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1439), + [aux_sym_string_literal_token1] = ACTIONS(1439), + [sym_char_literal] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1441), + [sym_super] = ACTIONS(1441), + [sym_crate] = ACTIONS(1441), + [sym_metavariable] = ACTIONS(1439), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1439), + }, + [STATE(486)] = { + [sym_line_comment] = STATE(486), + [sym_block_comment] = STATE(486), [sym_identifier] = ACTIONS(1517), [anon_sym_LPAREN] = ACTIONS(1515), [anon_sym_LBRACK] = ACTIONS(1515), @@ -70322,92 +72606,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1515), [sym_float_literal] = ACTIONS(1515), }, - [STATE(481)] = { - [sym_line_comment] = STATE(481), - [sym_block_comment] = STATE(481), - [sym_identifier] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_QMARK] = ACTIONS(1495), - [anon_sym_u8] = ACTIONS(1497), - [anon_sym_i8] = ACTIONS(1497), - [anon_sym_u16] = ACTIONS(1497), - [anon_sym_i16] = ACTIONS(1497), - [anon_sym_u32] = ACTIONS(1497), - [anon_sym_i32] = ACTIONS(1497), - [anon_sym_u64] = ACTIONS(1497), - [anon_sym_i64] = ACTIONS(1497), - [anon_sym_u128] = ACTIONS(1497), - [anon_sym_i128] = ACTIONS(1497), - [anon_sym_isize] = ACTIONS(1497), - [anon_sym_usize] = ACTIONS(1497), - [anon_sym_f32] = ACTIONS(1497), - [anon_sym_f64] = ACTIONS(1497), - [anon_sym_bool] = ACTIONS(1497), - [anon_sym_str] = ACTIONS(1497), - [anon_sym_char] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_AMP_AMP] = ACTIONS(1495), - [anon_sym_PIPE_PIPE] = ACTIONS(1495), - [anon_sym_LT_LT] = ACTIONS(1497), - [anon_sym_GT_GT] = ACTIONS(1497), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_EQ] = ACTIONS(1497), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym__] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(1495), - [anon_sym_COLON_COLON] = ACTIONS(1495), - [anon_sym_POUND] = ACTIONS(1495), - [anon_sym_as] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_gen] = ACTIONS(1497), - [anon_sym_union] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1497), - [sym_mutable_specifier] = ACTIONS(1497), - [sym_integer_literal] = ACTIONS(1495), - [aux_sym_string_literal_token1] = ACTIONS(1495), - [sym_char_literal] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1497), - [sym_super] = ACTIONS(1497), - [sym_crate] = ACTIONS(1497), - [sym_metavariable] = ACTIONS(1495), - [sym__raw_string_literal_start] = ACTIONS(1495), - [sym_float_literal] = ACTIONS(1495), - }, - [STATE(482)] = { - [sym_line_comment] = STATE(482), - [sym_block_comment] = STATE(482), + [STATE(487)] = { + [sym_line_comment] = STATE(487), + [sym_block_comment] = STATE(487), [sym_identifier] = ACTIONS(1509), [anon_sym_LPAREN] = ACTIONS(1507), [anon_sym_LBRACK] = ACTIONS(1507), @@ -70488,92 +72689,673 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1507), [sym_float_literal] = ACTIONS(1507), }, - [STATE(483)] = { - [sym_line_comment] = STATE(483), - [sym_block_comment] = STATE(483), - [sym_identifier] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_u8] = ACTIONS(1527), - [anon_sym_i8] = ACTIONS(1527), - [anon_sym_u16] = ACTIONS(1527), - [anon_sym_i16] = ACTIONS(1527), - [anon_sym_u32] = ACTIONS(1527), - [anon_sym_i32] = ACTIONS(1527), - [anon_sym_u64] = ACTIONS(1527), - [anon_sym_i64] = ACTIONS(1527), - [anon_sym_u128] = ACTIONS(1527), - [anon_sym_i128] = ACTIONS(1527), - [anon_sym_isize] = ACTIONS(1527), - [anon_sym_usize] = ACTIONS(1527), - [anon_sym_f32] = ACTIONS(1527), - [anon_sym_f64] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_str] = ACTIONS(1527), - [anon_sym_char] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1527), - [anon_sym_PERCENT] = ACTIONS(1527), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(1527), - [anon_sym_PLUS_EQ] = ACTIONS(1525), - [anon_sym_DASH_EQ] = ACTIONS(1525), - [anon_sym_STAR_EQ] = ACTIONS(1525), - [anon_sym_SLASH_EQ] = ACTIONS(1525), - [anon_sym_PERCENT_EQ] = ACTIONS(1525), - [anon_sym_CARET_EQ] = ACTIONS(1525), - [anon_sym_AMP_EQ] = ACTIONS(1525), - [anon_sym_PIPE_EQ] = ACTIONS(1525), - [anon_sym_LT_LT_EQ] = ACTIONS(1525), - [anon_sym_GT_GT_EQ] = ACTIONS(1525), - [anon_sym_EQ] = ACTIONS(1527), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1525), - [anon_sym__] = ACTIONS(1527), - [anon_sym_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_COMMA] = ACTIONS(1525), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_POUND] = ACTIONS(1525), - [anon_sym_as] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_default] = ACTIONS(1527), - [anon_sym_gen] = ACTIONS(1527), - [anon_sym_union] = ACTIONS(1527), - [anon_sym_ref] = ACTIONS(1527), - [sym_mutable_specifier] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1525), - [aux_sym_string_literal_token1] = ACTIONS(1525), - [sym_char_literal] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1527), - [sym_super] = ACTIONS(1527), - [sym_crate] = ACTIONS(1527), - [sym_metavariable] = ACTIONS(1525), - [sym__raw_string_literal_start] = ACTIONS(1525), - [sym_float_literal] = ACTIONS(1525), + [STATE(488)] = { + [sym_line_comment] = STATE(488), + [sym_block_comment] = STATE(488), + [sym_identifier] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1529), + [anon_sym_PERCENT] = ACTIONS(1529), + [anon_sym_CARET] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1527), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1529), + [anon_sym_PLUS_EQ] = ACTIONS(1527), + [anon_sym_DASH_EQ] = ACTIONS(1527), + [anon_sym_STAR_EQ] = ACTIONS(1527), + [anon_sym_SLASH_EQ] = ACTIONS(1527), + [anon_sym_PERCENT_EQ] = ACTIONS(1527), + [anon_sym_CARET_EQ] = ACTIONS(1527), + [anon_sym_AMP_EQ] = ACTIONS(1527), + [anon_sym_PIPE_EQ] = ACTIONS(1527), + [anon_sym_LT_LT_EQ] = ACTIONS(1527), + [anon_sym_GT_GT_EQ] = ACTIONS(1527), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_EQ_EQ] = ACTIONS(1527), + [anon_sym_BANG_EQ] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT_EQ] = ACTIONS(1527), + [anon_sym_LT_EQ] = ACTIONS(1527), + [anon_sym__] = ACTIONS(1529), + [anon_sym_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1527), + [anon_sym_COMMA] = ACTIONS(1527), + [anon_sym_COLON_COLON] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(1527), + [anon_sym_as] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_gen] = ACTIONS(1529), + [anon_sym_union] = ACTIONS(1529), + [anon_sym_ref] = ACTIONS(1529), + [sym_mutable_specifier] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1527), + [aux_sym_string_literal_token1] = ACTIONS(1527), + [sym_char_literal] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1529), + [sym_super] = ACTIONS(1529), + [sym_crate] = ACTIONS(1529), + [sym_metavariable] = ACTIONS(1527), + [sym__raw_string_literal_start] = ACTIONS(1527), + [sym_float_literal] = ACTIONS(1527), }, - [STATE(484)] = { - [sym_line_comment] = STATE(484), - [sym_block_comment] = STATE(484), + [STATE(489)] = { + [sym_line_comment] = STATE(489), + [sym_block_comment] = STATE(489), + [sym_identifier] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_QMARK] = 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(1465), + [anon_sym_SLASH] = ACTIONS(1465), + [anon_sym_PERCENT] = ACTIONS(1465), + [anon_sym_CARET] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_PIPE_PIPE] = ACTIONS(1463), + [anon_sym_LT_LT] = ACTIONS(1465), + [anon_sym_GT_GT] = ACTIONS(1465), + [anon_sym_PLUS_EQ] = ACTIONS(1463), + [anon_sym_DASH_EQ] = ACTIONS(1463), + [anon_sym_STAR_EQ] = ACTIONS(1463), + [anon_sym_SLASH_EQ] = ACTIONS(1463), + [anon_sym_PERCENT_EQ] = ACTIONS(1463), + [anon_sym_CARET_EQ] = ACTIONS(1463), + [anon_sym_AMP_EQ] = ACTIONS(1463), + [anon_sym_PIPE_EQ] = ACTIONS(1463), + [anon_sym_LT_LT_EQ] = ACTIONS(1463), + [anon_sym_GT_GT_EQ] = ACTIONS(1463), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_EQ_EQ] = ACTIONS(1463), + [anon_sym_BANG_EQ] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1465), + [anon_sym_GT_EQ] = ACTIONS(1463), + [anon_sym_LT_EQ] = ACTIONS(1463), + [anon_sym__] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1463), + [anon_sym_COMMA] = ACTIONS(1463), + [anon_sym_COLON_COLON] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(1463), + [anon_sym_as] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_gen] = ACTIONS(1465), + [anon_sym_union] = ACTIONS(1465), + [anon_sym_ref] = ACTIONS(1465), + [sym_mutable_specifier] = 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), + }, + [STATE(490)] = { + [sym_line_comment] = STATE(490), + [sym_block_comment] = STATE(490), + [sym_identifier] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [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__] = ACTIONS(1451), + [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_COMMA] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1449), + [anon_sym_POUND] = ACTIONS(1449), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_gen] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_ref] = ACTIONS(1451), + [sym_mutable_specifier] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [aux_sym_string_literal_token1] = ACTIONS(1449), + [sym_char_literal] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_crate] = ACTIONS(1451), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1449), + [sym_float_literal] = ACTIONS(1449), + }, + [STATE(491)] = { + [sym_line_comment] = STATE(491), + [sym_block_comment] = STATE(491), + [sym_identifier] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1471), + [anon_sym_u8] = ACTIONS(1473), + [anon_sym_i8] = ACTIONS(1473), + [anon_sym_u16] = ACTIONS(1473), + [anon_sym_i16] = ACTIONS(1473), + [anon_sym_u32] = ACTIONS(1473), + [anon_sym_i32] = ACTIONS(1473), + [anon_sym_u64] = ACTIONS(1473), + [anon_sym_i64] = ACTIONS(1473), + [anon_sym_u128] = ACTIONS(1473), + [anon_sym_i128] = ACTIONS(1473), + [anon_sym_isize] = ACTIONS(1473), + [anon_sym_usize] = ACTIONS(1473), + [anon_sym_f32] = ACTIONS(1473), + [anon_sym_f64] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_str] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1471), + [anon_sym_DASH_EQ] = ACTIONS(1471), + [anon_sym_STAR_EQ] = ACTIONS(1471), + [anon_sym_SLASH_EQ] = ACTIONS(1471), + [anon_sym_PERCENT_EQ] = ACTIONS(1471), + [anon_sym_CARET_EQ] = ACTIONS(1471), + [anon_sym_AMP_EQ] = ACTIONS(1471), + [anon_sym_PIPE_EQ] = ACTIONS(1471), + [anon_sym_LT_LT_EQ] = ACTIONS(1471), + [anon_sym_GT_GT_EQ] = ACTIONS(1471), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_GT_EQ] = ACTIONS(1471), + [anon_sym_LT_EQ] = ACTIONS(1471), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1471), + [anon_sym_COMMA] = ACTIONS(1471), + [anon_sym_COLON_COLON] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_gen] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_ref] = ACTIONS(1473), + [sym_mutable_specifier] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1471), + [aux_sym_string_literal_token1] = ACTIONS(1471), + [sym_char_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1473), + [sym_super] = ACTIONS(1473), + [sym_crate] = ACTIONS(1473), + [sym_metavariable] = ACTIONS(1471), + [sym__raw_string_literal_start] = ACTIONS(1471), + [sym_float_literal] = ACTIONS(1471), + }, + [STATE(492)] = { + [sym_line_comment] = STATE(492), + [sym_block_comment] = STATE(492), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_LBRACK] = 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_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__] = ACTIONS(1477), + [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_COMMA] = ACTIONS(1475), + [anon_sym_COLON_COLON] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(1475), + [anon_sym_as] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_default] = ACTIONS(1477), + [anon_sym_gen] = ACTIONS(1477), + [anon_sym_union] = ACTIONS(1477), + [anon_sym_ref] = ACTIONS(1477), + [sym_mutable_specifier] = 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), + }, + [STATE(493)] = { + [sym_line_comment] = STATE(493), + [sym_block_comment] = STATE(493), + [sym_identifier] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_QMARK] = ACTIONS(1459), + [anon_sym_u8] = ACTIONS(1780), + [anon_sym_i8] = ACTIONS(1780), + [anon_sym_u16] = ACTIONS(1780), + [anon_sym_i16] = ACTIONS(1780), + [anon_sym_u32] = ACTIONS(1780), + [anon_sym_i32] = ACTIONS(1780), + [anon_sym_u64] = ACTIONS(1780), + [anon_sym_i64] = ACTIONS(1780), + [anon_sym_u128] = ACTIONS(1780), + [anon_sym_i128] = ACTIONS(1780), + [anon_sym_isize] = ACTIONS(1780), + [anon_sym_usize] = ACTIONS(1780), + [anon_sym_f32] = ACTIONS(1780), + [anon_sym_f64] = ACTIONS(1780), + [anon_sym_bool] = ACTIONS(1780), + [anon_sym_str] = ACTIONS(1780), + [anon_sym_char] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1461), + [anon_sym_PERCENT] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [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(1780), + [anon_sym_GT_EQ] = ACTIONS(1459), + [anon_sym_LT_EQ] = ACTIONS(1459), + [anon_sym__] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1459), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_POUND] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1780), + [anon_sym_default] = ACTIONS(1780), + [anon_sym_gen] = ACTIONS(1780), + [anon_sym_union] = ACTIONS(1780), + [anon_sym_ref] = ACTIONS(1780), + [sym_mutable_specifier] = ACTIONS(1780), + [sym_integer_literal] = ACTIONS(1782), + [aux_sym_string_literal_token1] = ACTIONS(1782), + [sym_char_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1780), + [sym_super] = ACTIONS(1780), + [sym_crate] = ACTIONS(1780), + [sym_metavariable] = ACTIONS(1782), + [sym__raw_string_literal_start] = ACTIONS(1782), + [sym_float_literal] = ACTIONS(1782), + }, + [STATE(494)] = { + [sym_line_comment] = STATE(494), + [sym_block_comment] = STATE(494), + [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), + }, + [STATE(495)] = { + [sym_line_comment] = STATE(495), + [sym_block_comment] = STATE(495), + [sym_identifier] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_QMARK] = ACTIONS(1495), + [anon_sym_u8] = ACTIONS(1497), + [anon_sym_i8] = ACTIONS(1497), + [anon_sym_u16] = ACTIONS(1497), + [anon_sym_i16] = ACTIONS(1497), + [anon_sym_u32] = ACTIONS(1497), + [anon_sym_i32] = ACTIONS(1497), + [anon_sym_u64] = ACTIONS(1497), + [anon_sym_i64] = ACTIONS(1497), + [anon_sym_u128] = ACTIONS(1497), + [anon_sym_i128] = ACTIONS(1497), + [anon_sym_isize] = ACTIONS(1497), + [anon_sym_usize] = ACTIONS(1497), + [anon_sym_f32] = ACTIONS(1497), + [anon_sym_f64] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_str] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_PIPE_PIPE] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_PLUS_EQ] = ACTIONS(1495), + [anon_sym_DASH_EQ] = ACTIONS(1495), + [anon_sym_STAR_EQ] = ACTIONS(1495), + [anon_sym_SLASH_EQ] = ACTIONS(1495), + [anon_sym_PERCENT_EQ] = ACTIONS(1495), + [anon_sym_CARET_EQ] = ACTIONS(1495), + [anon_sym_AMP_EQ] = ACTIONS(1495), + [anon_sym_PIPE_EQ] = ACTIONS(1495), + [anon_sym_LT_LT_EQ] = ACTIONS(1495), + [anon_sym_GT_GT_EQ] = ACTIONS(1495), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym__] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_COLON_COLON] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1497), + [anon_sym_gen] = ACTIONS(1497), + [anon_sym_union] = ACTIONS(1497), + [anon_sym_ref] = ACTIONS(1497), + [sym_mutable_specifier] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1495), + [aux_sym_string_literal_token1] = ACTIONS(1495), + [sym_char_literal] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1497), + [sym_super] = ACTIONS(1497), + [sym_crate] = ACTIONS(1497), + [sym_metavariable] = ACTIONS(1495), + [sym__raw_string_literal_start] = ACTIONS(1495), + [sym_float_literal] = ACTIONS(1495), + }, + [STATE(496)] = { + [sym_line_comment] = STATE(496), + [sym_block_comment] = STATE(496), [sym_identifier] = ACTIONS(1505), [anon_sym_LPAREN] = ACTIONS(1503), [anon_sym_LBRACK] = ACTIONS(1503), @@ -70654,3670 +73436,832 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1503), [sym_float_literal] = ACTIONS(1503), }, - [STATE(485)] = { - [sym_line_comment] = STATE(485), - [sym_block_comment] = STATE(485), - [sym_identifier] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_QMARK] = ACTIONS(1491), - [anon_sym_u8] = ACTIONS(1493), - [anon_sym_i8] = ACTIONS(1493), - [anon_sym_u16] = ACTIONS(1493), - [anon_sym_i16] = ACTIONS(1493), - [anon_sym_u32] = ACTIONS(1493), - [anon_sym_i32] = ACTIONS(1493), - [anon_sym_u64] = ACTIONS(1493), - [anon_sym_i64] = ACTIONS(1493), - [anon_sym_u128] = ACTIONS(1493), - [anon_sym_i128] = ACTIONS(1493), - [anon_sym_isize] = ACTIONS(1493), - [anon_sym_usize] = ACTIONS(1493), - [anon_sym_f32] = ACTIONS(1493), - [anon_sym_f64] = ACTIONS(1493), - [anon_sym_bool] = ACTIONS(1493), - [anon_sym_str] = ACTIONS(1493), - [anon_sym_char] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_AMP_AMP] = ACTIONS(1491), - [anon_sym_PIPE_PIPE] = ACTIONS(1491), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_PLUS_EQ] = ACTIONS(1491), - [anon_sym_DASH_EQ] = ACTIONS(1491), - [anon_sym_STAR_EQ] = ACTIONS(1491), - [anon_sym_SLASH_EQ] = ACTIONS(1491), - [anon_sym_PERCENT_EQ] = ACTIONS(1491), - [anon_sym_CARET_EQ] = ACTIONS(1491), - [anon_sym_AMP_EQ] = ACTIONS(1491), - [anon_sym_PIPE_EQ] = ACTIONS(1491), - [anon_sym_LT_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_GT_EQ] = ACTIONS(1491), - [anon_sym_EQ] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), - [anon_sym_COMMA] = ACTIONS(1491), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym_POUND] = ACTIONS(1491), - [anon_sym_as] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_gen] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_ref] = ACTIONS(1493), - [sym_mutable_specifier] = ACTIONS(1493), - [sym_integer_literal] = ACTIONS(1491), - [aux_sym_string_literal_token1] = ACTIONS(1491), - [sym_char_literal] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1493), - [sym_super] = ACTIONS(1493), - [sym_crate] = ACTIONS(1493), - [sym_metavariable] = ACTIONS(1491), - [sym__raw_string_literal_start] = ACTIONS(1491), - [sym_float_literal] = ACTIONS(1491), - }, - [STATE(486)] = { - [sym_line_comment] = STATE(486), - [sym_block_comment] = STATE(486), - [sym_identifier] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_QMARK] = ACTIONS(1485), - [anon_sym_u8] = ACTIONS(1487), - [anon_sym_i8] = ACTIONS(1487), - [anon_sym_u16] = ACTIONS(1487), - [anon_sym_i16] = ACTIONS(1487), - [anon_sym_u32] = ACTIONS(1487), - [anon_sym_i32] = ACTIONS(1487), - [anon_sym_u64] = ACTIONS(1487), - [anon_sym_i64] = ACTIONS(1487), - [anon_sym_u128] = ACTIONS(1487), - [anon_sym_i128] = ACTIONS(1487), - [anon_sym_isize] = ACTIONS(1487), - [anon_sym_usize] = ACTIONS(1487), - [anon_sym_f32] = ACTIONS(1487), - [anon_sym_f64] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_str] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1485), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1485), - [anon_sym_DASH_EQ] = ACTIONS(1485), - [anon_sym_STAR_EQ] = ACTIONS(1485), - [anon_sym_SLASH_EQ] = ACTIONS(1485), - [anon_sym_PERCENT_EQ] = ACTIONS(1485), - [anon_sym_CARET_EQ] = ACTIONS(1485), - [anon_sym_AMP_EQ] = ACTIONS(1485), - [anon_sym_PIPE_EQ] = ACTIONS(1485), - [anon_sym_LT_LT_EQ] = ACTIONS(1485), - [anon_sym_GT_GT_EQ] = ACTIONS(1485), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1485), - [anon_sym_BANG_EQ] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1487), - [anon_sym_GT_EQ] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1485), - [anon_sym__] = ACTIONS(1487), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), - [anon_sym_COMMA] = ACTIONS(1485), - [anon_sym_COLON_COLON] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1485), - [anon_sym_as] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_gen] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1487), - [anon_sym_ref] = ACTIONS(1487), - [sym_mutable_specifier] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1485), - [aux_sym_string_literal_token1] = ACTIONS(1485), - [sym_char_literal] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1487), - [sym_super] = ACTIONS(1487), - [sym_crate] = ACTIONS(1487), - [sym_metavariable] = ACTIONS(1485), - [sym__raw_string_literal_start] = ACTIONS(1485), - [sym_float_literal] = ACTIONS(1485), - }, - [STATE(487)] = { - [sym_line_comment] = STATE(487), - [sym_block_comment] = STATE(487), - [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), - }, - [STATE(488)] = { - [sym_line_comment] = STATE(488), - [sym_block_comment] = STATE(488), - [sym_identifier] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_QMARK] = ACTIONS(1499), - [anon_sym_u8] = ACTIONS(1501), - [anon_sym_i8] = ACTIONS(1501), - [anon_sym_u16] = ACTIONS(1501), - [anon_sym_i16] = ACTIONS(1501), - [anon_sym_u32] = ACTIONS(1501), - [anon_sym_i32] = ACTIONS(1501), - [anon_sym_u64] = ACTIONS(1501), - [anon_sym_i64] = ACTIONS(1501), - [anon_sym_u128] = ACTIONS(1501), - [anon_sym_i128] = ACTIONS(1501), - [anon_sym_isize] = ACTIONS(1501), - [anon_sym_usize] = ACTIONS(1501), - [anon_sym_f32] = ACTIONS(1501), - [anon_sym_f64] = ACTIONS(1501), - [anon_sym_bool] = ACTIONS(1501), - [anon_sym_str] = ACTIONS(1501), - [anon_sym_char] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_AMP_AMP] = ACTIONS(1499), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1501), - [anon_sym_PLUS_EQ] = ACTIONS(1499), - [anon_sym_DASH_EQ] = ACTIONS(1499), - [anon_sym_STAR_EQ] = ACTIONS(1499), - [anon_sym_SLASH_EQ] = ACTIONS(1499), - [anon_sym_PERCENT_EQ] = ACTIONS(1499), - [anon_sym_CARET_EQ] = ACTIONS(1499), - [anon_sym_AMP_EQ] = ACTIONS(1499), - [anon_sym_PIPE_EQ] = ACTIONS(1499), - [anon_sym_LT_LT_EQ] = ACTIONS(1499), - [anon_sym_GT_GT_EQ] = ACTIONS(1499), - [anon_sym_EQ] = ACTIONS(1501), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym__] = ACTIONS(1501), - [anon_sym_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1499), - [anon_sym_POUND] = ACTIONS(1499), - [anon_sym_as] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1501), - [anon_sym_gen] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1501), - [anon_sym_ref] = ACTIONS(1501), - [sym_mutable_specifier] = ACTIONS(1501), - [sym_integer_literal] = ACTIONS(1499), - [aux_sym_string_literal_token1] = ACTIONS(1499), - [sym_char_literal] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1501), - [sym_super] = ACTIONS(1501), - [sym_crate] = ACTIONS(1501), - [sym_metavariable] = ACTIONS(1499), - [sym__raw_string_literal_start] = ACTIONS(1499), - [sym_float_literal] = ACTIONS(1499), - }, - [STATE(489)] = { - [sym_line_comment] = STATE(489), - [sym_block_comment] = STATE(489), - [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), - }, - [STATE(490)] = { - [sym_line_comment] = STATE(490), - [sym_block_comment] = STATE(490), - [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), - }, - [STATE(491)] = { - [sym_line_comment] = STATE(491), - [sym_block_comment] = STATE(491), - [sym_identifier] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1539), - [anon_sym_u8] = ACTIONS(1541), - [anon_sym_i8] = ACTIONS(1541), - [anon_sym_u16] = ACTIONS(1541), - [anon_sym_i16] = ACTIONS(1541), - [anon_sym_u32] = ACTIONS(1541), - [anon_sym_i32] = ACTIONS(1541), - [anon_sym_u64] = ACTIONS(1541), - [anon_sym_i64] = ACTIONS(1541), - [anon_sym_u128] = ACTIONS(1541), - [anon_sym_i128] = ACTIONS(1541), - [anon_sym_isize] = ACTIONS(1541), - [anon_sym_usize] = ACTIONS(1541), - [anon_sym_f32] = ACTIONS(1541), - [anon_sym_f64] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_str] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(1541), - [anon_sym_PERCENT] = ACTIONS(1541), - [anon_sym_CARET] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_PIPE_PIPE] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1541), - [anon_sym_GT_GT] = ACTIONS(1541), - [anon_sym_PLUS_EQ] = ACTIONS(1539), - [anon_sym_DASH_EQ] = ACTIONS(1539), - [anon_sym_STAR_EQ] = ACTIONS(1539), - [anon_sym_SLASH_EQ] = ACTIONS(1539), - [anon_sym_PERCENT_EQ] = ACTIONS(1539), - [anon_sym_CARET_EQ] = ACTIONS(1539), - [anon_sym_AMP_EQ] = ACTIONS(1539), - [anon_sym_PIPE_EQ] = ACTIONS(1539), - [anon_sym_LT_LT_EQ] = ACTIONS(1539), - [anon_sym_GT_GT_EQ] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1541), - [anon_sym_EQ_EQ] = ACTIONS(1539), - [anon_sym_BANG_EQ] = ACTIONS(1539), - [anon_sym_GT] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1541), - [anon_sym_GT_EQ] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1539), - [anon_sym__] = ACTIONS(1541), - [anon_sym_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1539), - [anon_sym_COMMA] = ACTIONS(1539), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_POUND] = ACTIONS(1539), - [anon_sym_as] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_gen] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_ref] = ACTIONS(1541), - [sym_mutable_specifier] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1539), - [aux_sym_string_literal_token1] = ACTIONS(1539), - [sym_char_literal] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1541), - [sym_super] = ACTIONS(1541), - [sym_crate] = ACTIONS(1541), - [sym_metavariable] = ACTIONS(1539), - [sym__raw_string_literal_start] = ACTIONS(1539), - [sym_float_literal] = ACTIONS(1539), - }, - [STATE(492)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3136), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2844), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(492), - [sym_block_comment] = STATE(492), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(493)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3020), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2624), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(493), - [sym_block_comment] = STATE(493), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(494)] = { - [sym_line_comment] = STATE(494), - [sym_block_comment] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_macro_rules_BANG] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_u8] = ACTIONS(1816), - [anon_sym_i8] = ACTIONS(1816), - [anon_sym_u16] = ACTIONS(1816), - [anon_sym_i16] = ACTIONS(1816), - [anon_sym_u32] = ACTIONS(1816), - [anon_sym_i32] = ACTIONS(1816), - [anon_sym_u64] = ACTIONS(1816), - [anon_sym_i64] = ACTIONS(1816), - [anon_sym_u128] = ACTIONS(1816), - [anon_sym_i128] = ACTIONS(1816), - [anon_sym_isize] = ACTIONS(1816), - [anon_sym_usize] = ACTIONS(1816), - [anon_sym_f32] = ACTIONS(1816), - [anon_sym_f64] = ACTIONS(1816), - [anon_sym_bool] = ACTIONS(1816), - [anon_sym_str] = ACTIONS(1816), - [anon_sym_char] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_COLON_COLON] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1816), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_fn] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_gen] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_impl] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1816), - [anon_sym_pub] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1816), - [anon_sym_trait] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1816), - [anon_sym_unsafe] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_yield] = ACTIONS(1816), - [anon_sym_move] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [sym_integer_literal] = ACTIONS(1814), - [aux_sym_string_literal_token1] = ACTIONS(1814), - [sym_char_literal] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1816), - [sym_super] = ACTIONS(1816), - [sym_crate] = ACTIONS(1816), - [sym_metavariable] = ACTIONS(1814), - [sym__raw_string_literal_start] = ACTIONS(1814), - [sym_float_literal] = ACTIONS(1814), - }, - [STATE(495)] = { - [sym_line_comment] = STATE(495), - [sym_block_comment] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1818), - [sym_identifier] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_macro_rules_BANG] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_u8] = ACTIONS(1820), - [anon_sym_i8] = ACTIONS(1820), - [anon_sym_u16] = ACTIONS(1820), - [anon_sym_i16] = ACTIONS(1820), - [anon_sym_u32] = ACTIONS(1820), - [anon_sym_i32] = ACTIONS(1820), - [anon_sym_u64] = ACTIONS(1820), - [anon_sym_i64] = ACTIONS(1820), - [anon_sym_u128] = ACTIONS(1820), - [anon_sym_i128] = ACTIONS(1820), - [anon_sym_isize] = ACTIONS(1820), - [anon_sym_usize] = ACTIONS(1820), - [anon_sym_f32] = ACTIONS(1820), - [anon_sym_f64] = ACTIONS(1820), - [anon_sym_bool] = ACTIONS(1820), - [anon_sym_str] = ACTIONS(1820), - [anon_sym_char] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_enum] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_gen] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_impl] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_mod] = ACTIONS(1820), - [anon_sym_pub] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_trait] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1820), - [anon_sym_unsafe] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_yield] = ACTIONS(1820), - [anon_sym_move] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [aux_sym_string_literal_token1] = ACTIONS(1818), - [sym_char_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1818), - [sym__raw_string_literal_start] = ACTIONS(1818), - [sym_float_literal] = ACTIONS(1818), - }, - [STATE(496)] = { - [sym_line_comment] = STATE(496), - [sym_block_comment] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_macro_rules_BANG] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_u8] = ACTIONS(1824), - [anon_sym_i8] = ACTIONS(1824), - [anon_sym_u16] = ACTIONS(1824), - [anon_sym_i16] = ACTIONS(1824), - [anon_sym_u32] = ACTIONS(1824), - [anon_sym_i32] = ACTIONS(1824), - [anon_sym_u64] = ACTIONS(1824), - [anon_sym_i64] = ACTIONS(1824), - [anon_sym_u128] = ACTIONS(1824), - [anon_sym_i128] = ACTIONS(1824), - [anon_sym_isize] = ACTIONS(1824), - [anon_sym_usize] = ACTIONS(1824), - [anon_sym_f32] = ACTIONS(1824), - [anon_sym_f64] = ACTIONS(1824), - [anon_sym_bool] = ACTIONS(1824), - [anon_sym_str] = ACTIONS(1824), - [anon_sym_char] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1824), - [anon_sym_enum] = ACTIONS(1824), - [anon_sym_fn] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_gen] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_mod] = ACTIONS(1824), - [anon_sym_pub] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1824), - [anon_sym_trait] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1824), - [anon_sym_unsafe] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_yield] = ACTIONS(1824), - [anon_sym_move] = ACTIONS(1824), - [anon_sym_try] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [aux_sym_string_literal_token1] = ACTIONS(1822), - [sym_char_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1824), - [sym_super] = ACTIONS(1824), - [sym_crate] = ACTIONS(1824), - [sym_metavariable] = ACTIONS(1822), - [sym__raw_string_literal_start] = ACTIONS(1822), - [sym_float_literal] = ACTIONS(1822), - }, [STATE(497)] = { [sym_line_comment] = STATE(497), [sym_block_comment] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_macro_rules_BANG] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_u8] = ACTIONS(1828), - [anon_sym_i8] = ACTIONS(1828), - [anon_sym_u16] = ACTIONS(1828), - [anon_sym_i16] = ACTIONS(1828), - [anon_sym_u32] = ACTIONS(1828), - [anon_sym_i32] = ACTIONS(1828), - [anon_sym_u64] = ACTIONS(1828), - [anon_sym_i64] = ACTIONS(1828), - [anon_sym_u128] = ACTIONS(1828), - [anon_sym_i128] = ACTIONS(1828), - [anon_sym_isize] = ACTIONS(1828), - [anon_sym_usize] = ACTIONS(1828), - [anon_sym_f32] = ACTIONS(1828), - [anon_sym_f64] = ACTIONS(1828), - [anon_sym_bool] = ACTIONS(1828), - [anon_sym_str] = ACTIONS(1828), - [anon_sym_char] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_default] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1828), - [anon_sym_fn] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_gen] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_impl] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_mod] = ACTIONS(1828), - [anon_sym_pub] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_struct] = ACTIONS(1828), - [anon_sym_trait] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1828), - [anon_sym_union] = ACTIONS(1828), - [anon_sym_unsafe] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_yield] = ACTIONS(1828), - [anon_sym_move] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [aux_sym_string_literal_token1] = ACTIONS(1826), - [sym_char_literal] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1828), - [sym_super] = ACTIONS(1828), - [sym_crate] = ACTIONS(1828), - [sym_metavariable] = ACTIONS(1826), - [sym__raw_string_literal_start] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1826), + [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), }, [STATE(498)] = { [sym_line_comment] = STATE(498), [sym_block_comment] = STATE(498), - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_macro_rules_BANG] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_u8] = ACTIONS(1832), - [anon_sym_i8] = ACTIONS(1832), - [anon_sym_u16] = ACTIONS(1832), - [anon_sym_i16] = ACTIONS(1832), - [anon_sym_u32] = ACTIONS(1832), - [anon_sym_i32] = ACTIONS(1832), - [anon_sym_u64] = ACTIONS(1832), - [anon_sym_i64] = ACTIONS(1832), - [anon_sym_u128] = ACTIONS(1832), - [anon_sym_i128] = ACTIONS(1832), - [anon_sym_isize] = ACTIONS(1832), - [anon_sym_usize] = ACTIONS(1832), - [anon_sym_f32] = ACTIONS(1832), - [anon_sym_f64] = ACTIONS(1832), - [anon_sym_bool] = ACTIONS(1832), - [anon_sym_str] = ACTIONS(1832), - [anon_sym_char] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_COLON_COLON] = ACTIONS(1830), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_SQUOTE] = ACTIONS(1832), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_default] = ACTIONS(1832), - [anon_sym_enum] = ACTIONS(1832), - [anon_sym_fn] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_gen] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_impl] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_mod] = ACTIONS(1832), - [anon_sym_pub] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_struct] = ACTIONS(1832), - [anon_sym_trait] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_unsafe] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_yield] = ACTIONS(1832), - [anon_sym_move] = ACTIONS(1832), - [anon_sym_try] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1830), - [aux_sym_string_literal_token1] = ACTIONS(1830), - [sym_char_literal] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1832), - [sym_super] = ACTIONS(1832), - [sym_crate] = ACTIONS(1832), - [sym_metavariable] = ACTIONS(1830), - [sym__raw_string_literal_start] = ACTIONS(1830), - [sym_float_literal] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_QMARK] = ACTIONS(1459), + [anon_sym_u8] = ACTIONS(1784), + [anon_sym_i8] = ACTIONS(1784), + [anon_sym_u16] = ACTIONS(1784), + [anon_sym_i16] = ACTIONS(1784), + [anon_sym_u32] = ACTIONS(1784), + [anon_sym_i32] = ACTIONS(1784), + [anon_sym_u64] = ACTIONS(1784), + [anon_sym_i64] = ACTIONS(1784), + [anon_sym_u128] = ACTIONS(1784), + [anon_sym_i128] = ACTIONS(1784), + [anon_sym_isize] = ACTIONS(1784), + [anon_sym_usize] = ACTIONS(1784), + [anon_sym_f32] = ACTIONS(1784), + [anon_sym_f64] = ACTIONS(1784), + [anon_sym_bool] = ACTIONS(1784), + [anon_sym_str] = ACTIONS(1784), + [anon_sym_char] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_SLASH] = ACTIONS(1461), + [anon_sym_PERCENT] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [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(1784), + [anon_sym_GT_EQ] = ACTIONS(1459), + [anon_sym_LT_EQ] = ACTIONS(1459), + [anon_sym__] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(1459), + [anon_sym_COLON_COLON] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_gen] = ACTIONS(1784), + [anon_sym_union] = ACTIONS(1784), + [anon_sym_ref] = ACTIONS(1784), + [sym_mutable_specifier] = ACTIONS(1784), + [sym_integer_literal] = ACTIONS(1786), + [aux_sym_string_literal_token1] = ACTIONS(1786), + [sym_char_literal] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1784), + [anon_sym_false] = ACTIONS(1784), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1784), + [sym_super] = ACTIONS(1784), + [sym_crate] = ACTIONS(1784), + [sym_metavariable] = ACTIONS(1786), + [sym__raw_string_literal_start] = ACTIONS(1786), + [sym_float_literal] = ACTIONS(1786), }, [STATE(499)] = { [sym_line_comment] = STATE(499), [sym_block_comment] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_macro_rules_BANG] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_u8] = ACTIONS(1836), - [anon_sym_i8] = ACTIONS(1836), - [anon_sym_u16] = ACTIONS(1836), - [anon_sym_i16] = ACTIONS(1836), - [anon_sym_u32] = ACTIONS(1836), - [anon_sym_i32] = ACTIONS(1836), - [anon_sym_u64] = ACTIONS(1836), - [anon_sym_i64] = ACTIONS(1836), - [anon_sym_u128] = ACTIONS(1836), - [anon_sym_i128] = ACTIONS(1836), - [anon_sym_isize] = ACTIONS(1836), - [anon_sym_usize] = ACTIONS(1836), - [anon_sym_f32] = ACTIONS(1836), - [anon_sym_f64] = ACTIONS(1836), - [anon_sym_bool] = ACTIONS(1836), - [anon_sym_str] = ACTIONS(1836), - [anon_sym_char] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1834), - [anon_sym_COLON_COLON] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_SQUOTE] = ACTIONS(1836), - [anon_sym_async] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_fn] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1836), - [anon_sym_gen] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_impl] = ACTIONS(1836), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_loop] = ACTIONS(1836), - [anon_sym_match] = ACTIONS(1836), - [anon_sym_mod] = ACTIONS(1836), - [anon_sym_pub] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_trait] = ACTIONS(1836), - [anon_sym_type] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1836), - [anon_sym_unsafe] = ACTIONS(1836), - [anon_sym_use] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_move] = ACTIONS(1836), - [anon_sym_try] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(1834), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1836), - [sym_super] = ACTIONS(1836), - [sym_crate] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1834), - [sym__raw_string_literal_start] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), + [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), }, [STATE(500)] = { + [sym_empty_statement] = STATE(1412), + [sym_macro_definition] = STATE(1412), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(1412), + [sym_mod_item] = STATE(1412), + [sym_foreign_mod_item] = STATE(1412), + [sym_struct_item] = STATE(1412), + [sym_union_item] = STATE(1412), + [sym_enum_item] = STATE(1412), + [sym_extern_crate_declaration] = STATE(1412), + [sym_const_item] = STATE(1412), + [sym_static_item] = STATE(1412), + [sym_type_item] = STATE(1412), + [sym_function_item] = STATE(1412), + [sym_function_signature_item] = STATE(1412), + [sym_function_modifiers] = STATE(4257), + [sym_impl_item] = STATE(1412), + [sym_trait_item] = STATE(1412), + [sym_associated_type] = STATE(1412), + [sym_let_declaration] = STATE(1412), + [sym_use_declaration] = STATE(1412), + [sym_extern_modifier] = STATE(2509), + [sym_visibility_modifier] = STATE(2283), + [sym_bracketed_type] = STATE(4179), + [sym_generic_type_with_turbofish] = STATE(4258), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(3811), [sym_line_comment] = STATE(500), [sym_block_comment] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1838), - [sym_identifier] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_macro_rules_BANG] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_u8] = ACTIONS(1840), - [anon_sym_i8] = ACTIONS(1840), - [anon_sym_u16] = ACTIONS(1840), - [anon_sym_i16] = ACTIONS(1840), - [anon_sym_u32] = ACTIONS(1840), - [anon_sym_i32] = ACTIONS(1840), - [anon_sym_u64] = ACTIONS(1840), - [anon_sym_i64] = ACTIONS(1840), - [anon_sym_u128] = ACTIONS(1840), - [anon_sym_i128] = ACTIONS(1840), - [anon_sym_isize] = ACTIONS(1840), - [anon_sym_usize] = ACTIONS(1840), - [anon_sym_f32] = ACTIONS(1840), - [anon_sym_f64] = ACTIONS(1840), - [anon_sym_bool] = ACTIONS(1840), - [anon_sym_str] = ACTIONS(1840), - [anon_sym_char] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1838), - [anon_sym_COLON_COLON] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_enum] = ACTIONS(1840), - [anon_sym_fn] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_gen] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_impl] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_mod] = ACTIONS(1840), - [anon_sym_pub] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_struct] = ACTIONS(1840), - [anon_sym_trait] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1840), - [anon_sym_union] = ACTIONS(1840), - [anon_sym_unsafe] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_yield] = ACTIONS(1840), - [anon_sym_move] = ACTIONS(1840), - [anon_sym_try] = ACTIONS(1840), - [sym_integer_literal] = ACTIONS(1838), - [aux_sym_string_literal_token1] = ACTIONS(1838), - [sym_char_literal] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1840), - [anon_sym_false] = ACTIONS(1840), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1840), - [sym_super] = ACTIONS(1840), - [sym_crate] = ACTIONS(1840), - [sym_metavariable] = ACTIONS(1838), - [sym__raw_string_literal_start] = ACTIONS(1838), - [sym_float_literal] = ACTIONS(1838), + [aux_sym_mod_item_repeat1] = STATE(2252), + [aux_sym_declaration_list_repeat1] = STATE(500), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_macro_rules_BANG] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_u8] = ACTIONS(1799), + [anon_sym_i8] = ACTIONS(1799), + [anon_sym_u16] = ACTIONS(1799), + [anon_sym_i16] = ACTIONS(1799), + [anon_sym_u32] = ACTIONS(1799), + [anon_sym_i32] = ACTIONS(1799), + [anon_sym_u64] = ACTIONS(1799), + [anon_sym_i64] = ACTIONS(1799), + [anon_sym_u128] = ACTIONS(1799), + [anon_sym_i128] = ACTIONS(1799), + [anon_sym_isize] = ACTIONS(1799), + [anon_sym_usize] = ACTIONS(1799), + [anon_sym_f32] = ACTIONS(1799), + [anon_sym_f64] = ACTIONS(1799), + [anon_sym_bool] = ACTIONS(1799), + [anon_sym_str] = ACTIONS(1799), + [anon_sym_char] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1805), + [anon_sym_POUND] = ACTIONS(1808), + [anon_sym_async] = ACTIONS(1811), + [anon_sym_const] = ACTIONS(1814), + [anon_sym_default] = ACTIONS(1817), + [anon_sym_enum] = ACTIONS(1820), + [anon_sym_fn] = ACTIONS(1823), + [anon_sym_gen] = ACTIONS(1826), + [anon_sym_impl] = ACTIONS(1829), + [anon_sym_let] = ACTIONS(1832), + [anon_sym_mod] = ACTIONS(1835), + [anon_sym_pub] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1841), + [anon_sym_struct] = ACTIONS(1844), + [anon_sym_trait] = ACTIONS(1847), + [anon_sym_type] = ACTIONS(1850), + [anon_sym_union] = ACTIONS(1853), + [anon_sym_unsafe] = ACTIONS(1856), + [anon_sym_use] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1862), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1865), + [sym_super] = ACTIONS(1865), + [sym_crate] = ACTIONS(1868), + [sym_metavariable] = ACTIONS(1871), }, [STATE(501)] = { + [sym_empty_statement] = STATE(1412), + [sym_macro_definition] = STATE(1412), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(1412), + [sym_mod_item] = STATE(1412), + [sym_foreign_mod_item] = STATE(1412), + [sym_struct_item] = STATE(1412), + [sym_union_item] = STATE(1412), + [sym_enum_item] = STATE(1412), + [sym_extern_crate_declaration] = STATE(1412), + [sym_const_item] = STATE(1412), + [sym_static_item] = STATE(1412), + [sym_type_item] = STATE(1412), + [sym_function_item] = STATE(1412), + [sym_function_signature_item] = STATE(1412), + [sym_function_modifiers] = STATE(4257), + [sym_impl_item] = STATE(1412), + [sym_trait_item] = STATE(1412), + [sym_associated_type] = STATE(1412), + [sym_let_declaration] = STATE(1412), + [sym_use_declaration] = STATE(1412), + [sym_extern_modifier] = STATE(2509), + [sym_visibility_modifier] = STATE(2283), + [sym_bracketed_type] = STATE(4179), + [sym_generic_type_with_turbofish] = STATE(4258), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(3811), [sym_line_comment] = STATE(501), [sym_block_comment] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_macro_rules_BANG] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_u8] = ACTIONS(1844), - [anon_sym_i8] = ACTIONS(1844), - [anon_sym_u16] = ACTIONS(1844), - [anon_sym_i16] = ACTIONS(1844), - [anon_sym_u32] = ACTIONS(1844), - [anon_sym_i32] = ACTIONS(1844), - [anon_sym_u64] = ACTIONS(1844), - [anon_sym_i64] = ACTIONS(1844), - [anon_sym_u128] = ACTIONS(1844), - [anon_sym_i128] = ACTIONS(1844), - [anon_sym_isize] = ACTIONS(1844), - [anon_sym_usize] = ACTIONS(1844), - [anon_sym_f32] = ACTIONS(1844), - [anon_sym_f64] = ACTIONS(1844), - [anon_sym_bool] = ACTIONS(1844), - [anon_sym_str] = ACTIONS(1844), - [anon_sym_char] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_COLON_COLON] = ACTIONS(1842), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_fn] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_gen] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_impl] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_loop] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [anon_sym_mod] = ACTIONS(1844), - [anon_sym_pub] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [anon_sym_trait] = ACTIONS(1844), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_unsafe] = ACTIONS(1844), - [anon_sym_use] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_yield] = ACTIONS(1844), - [anon_sym_move] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(1844), - [sym_integer_literal] = ACTIONS(1842), - [aux_sym_string_literal_token1] = ACTIONS(1842), - [sym_char_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1844), - [anon_sym_false] = ACTIONS(1844), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1844), - [sym_super] = ACTIONS(1844), - [sym_crate] = ACTIONS(1844), - [sym_metavariable] = ACTIONS(1842), - [sym__raw_string_literal_start] = ACTIONS(1842), - [sym_float_literal] = ACTIONS(1842), + [aux_sym_mod_item_repeat1] = STATE(2252), + [aux_sym_declaration_list_repeat1] = STATE(502), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_macro_rules_BANG] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_u8] = ACTIONS(1882), + [anon_sym_i8] = ACTIONS(1882), + [anon_sym_u16] = ACTIONS(1882), + [anon_sym_i16] = ACTIONS(1882), + [anon_sym_u32] = ACTIONS(1882), + [anon_sym_i32] = ACTIONS(1882), + [anon_sym_u64] = ACTIONS(1882), + [anon_sym_i64] = ACTIONS(1882), + [anon_sym_u128] = ACTIONS(1882), + [anon_sym_i128] = ACTIONS(1882), + [anon_sym_isize] = ACTIONS(1882), + [anon_sym_usize] = ACTIONS(1882), + [anon_sym_f32] = ACTIONS(1882), + [anon_sym_f64] = ACTIONS(1882), + [anon_sym_bool] = ACTIONS(1882), + [anon_sym_str] = ACTIONS(1882), + [anon_sym_char] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1892), + [anon_sym_fn] = ACTIONS(1894), + [anon_sym_gen] = ACTIONS(1896), + [anon_sym_impl] = ACTIONS(1898), + [anon_sym_let] = ACTIONS(1900), + [anon_sym_mod] = ACTIONS(1902), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_struct] = ACTIONS(1906), + [anon_sym_trait] = ACTIONS(1908), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_unsafe] = ACTIONS(1914), + [anon_sym_use] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1920), + [sym_super] = ACTIONS(1920), + [sym_crate] = ACTIONS(1922), + [sym_metavariable] = ACTIONS(1924), }, [STATE(502)] = { + [sym_empty_statement] = STATE(1412), + [sym_macro_definition] = STATE(1412), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(1412), + [sym_mod_item] = STATE(1412), + [sym_foreign_mod_item] = STATE(1412), + [sym_struct_item] = STATE(1412), + [sym_union_item] = STATE(1412), + [sym_enum_item] = STATE(1412), + [sym_extern_crate_declaration] = STATE(1412), + [sym_const_item] = STATE(1412), + [sym_static_item] = STATE(1412), + [sym_type_item] = STATE(1412), + [sym_function_item] = STATE(1412), + [sym_function_signature_item] = STATE(1412), + [sym_function_modifiers] = STATE(4257), + [sym_impl_item] = STATE(1412), + [sym_trait_item] = STATE(1412), + [sym_associated_type] = STATE(1412), + [sym_let_declaration] = STATE(1412), + [sym_use_declaration] = STATE(1412), + [sym_extern_modifier] = STATE(2509), + [sym_visibility_modifier] = STATE(2283), + [sym_bracketed_type] = STATE(4179), + [sym_generic_type_with_turbofish] = STATE(4258), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(3811), [sym_line_comment] = STATE(502), [sym_block_comment] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1846), - [sym_identifier] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_macro_rules_BANG] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_u8] = ACTIONS(1848), - [anon_sym_i8] = ACTIONS(1848), - [anon_sym_u16] = ACTIONS(1848), - [anon_sym_i16] = ACTIONS(1848), - [anon_sym_u32] = ACTIONS(1848), - [anon_sym_i32] = ACTIONS(1848), - [anon_sym_u64] = ACTIONS(1848), - [anon_sym_i64] = ACTIONS(1848), - [anon_sym_u128] = ACTIONS(1848), - [anon_sym_i128] = ACTIONS(1848), - [anon_sym_isize] = ACTIONS(1848), - [anon_sym_usize] = ACTIONS(1848), - [anon_sym_f32] = ACTIONS(1848), - [anon_sym_f64] = ACTIONS(1848), - [anon_sym_bool] = ACTIONS(1848), - [anon_sym_str] = ACTIONS(1848), - [anon_sym_char] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1846), - [anon_sym_COLON_COLON] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_async] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_default] = ACTIONS(1848), - [anon_sym_enum] = ACTIONS(1848), - [anon_sym_fn] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_gen] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_impl] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_mod] = ACTIONS(1848), - [anon_sym_pub] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1848), - [anon_sym_struct] = ACTIONS(1848), - [anon_sym_trait] = ACTIONS(1848), - [anon_sym_type] = ACTIONS(1848), - [anon_sym_union] = ACTIONS(1848), - [anon_sym_unsafe] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_yield] = ACTIONS(1848), - [anon_sym_move] = ACTIONS(1848), - [anon_sym_try] = ACTIONS(1848), - [sym_integer_literal] = ACTIONS(1846), - [aux_sym_string_literal_token1] = ACTIONS(1846), - [sym_char_literal] = ACTIONS(1846), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1848), - [sym_super] = ACTIONS(1848), - [sym_crate] = ACTIONS(1848), - [sym_metavariable] = ACTIONS(1846), - [sym__raw_string_literal_start] = ACTIONS(1846), - [sym_float_literal] = ACTIONS(1846), + [aux_sym_mod_item_repeat1] = STATE(2252), + [aux_sym_declaration_list_repeat1] = STATE(500), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_macro_rules_BANG] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_u8] = ACTIONS(1882), + [anon_sym_i8] = ACTIONS(1882), + [anon_sym_u16] = ACTIONS(1882), + [anon_sym_i16] = ACTIONS(1882), + [anon_sym_u32] = ACTIONS(1882), + [anon_sym_i32] = ACTIONS(1882), + [anon_sym_u64] = ACTIONS(1882), + [anon_sym_i64] = ACTIONS(1882), + [anon_sym_u128] = ACTIONS(1882), + [anon_sym_i128] = ACTIONS(1882), + [anon_sym_isize] = ACTIONS(1882), + [anon_sym_usize] = ACTIONS(1882), + [anon_sym_f32] = ACTIONS(1882), + [anon_sym_f64] = ACTIONS(1882), + [anon_sym_bool] = ACTIONS(1882), + [anon_sym_str] = ACTIONS(1882), + [anon_sym_char] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1892), + [anon_sym_fn] = ACTIONS(1894), + [anon_sym_gen] = ACTIONS(1896), + [anon_sym_impl] = ACTIONS(1898), + [anon_sym_let] = ACTIONS(1900), + [anon_sym_mod] = ACTIONS(1902), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_struct] = ACTIONS(1906), + [anon_sym_trait] = ACTIONS(1908), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_unsafe] = ACTIONS(1914), + [anon_sym_use] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1920), + [sym_super] = ACTIONS(1920), + [sym_crate] = ACTIONS(1922), + [sym_metavariable] = ACTIONS(1924), }, [STATE(503)] = { + [sym_empty_statement] = STATE(1412), + [sym_macro_definition] = STATE(1412), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(1412), + [sym_mod_item] = STATE(1412), + [sym_foreign_mod_item] = STATE(1412), + [sym_struct_item] = STATE(1412), + [sym_union_item] = STATE(1412), + [sym_enum_item] = STATE(1412), + [sym_extern_crate_declaration] = STATE(1412), + [sym_const_item] = STATE(1412), + [sym_static_item] = STATE(1412), + [sym_type_item] = STATE(1412), + [sym_function_item] = STATE(1412), + [sym_function_signature_item] = STATE(1412), + [sym_function_modifiers] = STATE(4257), + [sym_impl_item] = STATE(1412), + [sym_trait_item] = STATE(1412), + [sym_associated_type] = STATE(1412), + [sym_let_declaration] = STATE(1412), + [sym_use_declaration] = STATE(1412), + [sym_extern_modifier] = STATE(2509), + [sym_visibility_modifier] = STATE(2283), + [sym_bracketed_type] = STATE(4179), + [sym_generic_type_with_turbofish] = STATE(4258), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(3811), [sym_line_comment] = STATE(503), [sym_block_comment] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_macro_rules_BANG] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_u8] = ACTIONS(1852), - [anon_sym_i8] = ACTIONS(1852), - [anon_sym_u16] = ACTIONS(1852), - [anon_sym_i16] = ACTIONS(1852), - [anon_sym_u32] = ACTIONS(1852), - [anon_sym_i32] = ACTIONS(1852), - [anon_sym_u64] = ACTIONS(1852), - [anon_sym_i64] = ACTIONS(1852), - [anon_sym_u128] = ACTIONS(1852), - [anon_sym_i128] = ACTIONS(1852), - [anon_sym_isize] = ACTIONS(1852), - [anon_sym_usize] = ACTIONS(1852), - [anon_sym_f32] = ACTIONS(1852), - [anon_sym_f64] = ACTIONS(1852), - [anon_sym_bool] = ACTIONS(1852), - [anon_sym_str] = ACTIONS(1852), - [anon_sym_char] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1850), - [anon_sym_COLON_COLON] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_default] = ACTIONS(1852), - [anon_sym_enum] = ACTIONS(1852), - [anon_sym_fn] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_gen] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_impl] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_mod] = ACTIONS(1852), - [anon_sym_pub] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_struct] = ACTIONS(1852), - [anon_sym_trait] = ACTIONS(1852), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_union] = ACTIONS(1852), - [anon_sym_unsafe] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_yield] = ACTIONS(1852), - [anon_sym_move] = ACTIONS(1852), - [anon_sym_try] = ACTIONS(1852), - [sym_integer_literal] = ACTIONS(1850), - [aux_sym_string_literal_token1] = ACTIONS(1850), - [sym_char_literal] = ACTIONS(1850), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1852), - [sym_super] = ACTIONS(1852), - [sym_crate] = ACTIONS(1852), - [sym_metavariable] = ACTIONS(1850), - [sym__raw_string_literal_start] = ACTIONS(1850), - [sym_float_literal] = ACTIONS(1850), + [aux_sym_mod_item_repeat1] = STATE(2252), + [aux_sym_declaration_list_repeat1] = STATE(500), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_macro_rules_BANG] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1928), + [anon_sym_u8] = ACTIONS(1882), + [anon_sym_i8] = ACTIONS(1882), + [anon_sym_u16] = ACTIONS(1882), + [anon_sym_i16] = ACTIONS(1882), + [anon_sym_u32] = ACTIONS(1882), + [anon_sym_i32] = ACTIONS(1882), + [anon_sym_u64] = ACTIONS(1882), + [anon_sym_i64] = ACTIONS(1882), + [anon_sym_u128] = ACTIONS(1882), + [anon_sym_i128] = ACTIONS(1882), + [anon_sym_isize] = ACTIONS(1882), + [anon_sym_usize] = ACTIONS(1882), + [anon_sym_f32] = ACTIONS(1882), + [anon_sym_f64] = ACTIONS(1882), + [anon_sym_bool] = ACTIONS(1882), + [anon_sym_str] = ACTIONS(1882), + [anon_sym_char] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1892), + [anon_sym_fn] = ACTIONS(1894), + [anon_sym_gen] = ACTIONS(1896), + [anon_sym_impl] = ACTIONS(1898), + [anon_sym_let] = ACTIONS(1900), + [anon_sym_mod] = ACTIONS(1902), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_struct] = ACTIONS(1906), + [anon_sym_trait] = ACTIONS(1908), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_unsafe] = ACTIONS(1914), + [anon_sym_use] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1920), + [sym_super] = ACTIONS(1920), + [sym_crate] = ACTIONS(1922), + [sym_metavariable] = ACTIONS(1924), }, [STATE(504)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym_closure_expression] = STATE(3325), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(3104), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), [sym_line_comment] = STATE(504), [sym_block_comment] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1854), - [sym_identifier] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_macro_rules_BANG] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_u8] = ACTIONS(1856), - [anon_sym_i8] = ACTIONS(1856), - [anon_sym_u16] = ACTIONS(1856), - [anon_sym_i16] = ACTIONS(1856), - [anon_sym_u32] = ACTIONS(1856), - [anon_sym_i32] = ACTIONS(1856), - [anon_sym_u64] = ACTIONS(1856), - [anon_sym_i64] = ACTIONS(1856), - [anon_sym_u128] = ACTIONS(1856), - [anon_sym_i128] = ACTIONS(1856), - [anon_sym_isize] = ACTIONS(1856), - [anon_sym_usize] = ACTIONS(1856), - [anon_sym_f32] = ACTIONS(1856), - [anon_sym_f64] = ACTIONS(1856), - [anon_sym_bool] = ACTIONS(1856), - [anon_sym_str] = ACTIONS(1856), - [anon_sym_char] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_DOT_DOT] = ACTIONS(1854), - [anon_sym_COLON_COLON] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_async] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_default] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_fn] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_gen] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_impl] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_mod] = ACTIONS(1856), - [anon_sym_pub] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1856), - [anon_sym_trait] = ACTIONS(1856), - [anon_sym_type] = ACTIONS(1856), - [anon_sym_union] = ACTIONS(1856), - [anon_sym_unsafe] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_yield] = ACTIONS(1856), - [anon_sym_move] = ACTIONS(1856), - [anon_sym_try] = ACTIONS(1856), - [sym_integer_literal] = ACTIONS(1854), - [aux_sym_string_literal_token1] = ACTIONS(1854), - [sym_char_literal] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1856), - [sym_super] = ACTIONS(1856), - [sym_crate] = ACTIONS(1856), - [sym_metavariable] = ACTIONS(1854), - [sym__raw_string_literal_start] = ACTIONS(1854), - [sym_float_literal] = ACTIONS(1854), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1399), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [anon_sym_move] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, [STATE(505)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym_closure_expression] = STATE(3525), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(3064), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), [sym_line_comment] = STATE(505), [sym_block_comment] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(1858), - [sym_identifier] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_macro_rules_BANG] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_u8] = ACTIONS(1860), - [anon_sym_i8] = ACTIONS(1860), - [anon_sym_u16] = ACTIONS(1860), - [anon_sym_i16] = ACTIONS(1860), - [anon_sym_u32] = ACTIONS(1860), - [anon_sym_i32] = ACTIONS(1860), - [anon_sym_u64] = ACTIONS(1860), - [anon_sym_i64] = ACTIONS(1860), - [anon_sym_u128] = ACTIONS(1860), - [anon_sym_i128] = ACTIONS(1860), - [anon_sym_isize] = ACTIONS(1860), - [anon_sym_usize] = ACTIONS(1860), - [anon_sym_f32] = ACTIONS(1860), - [anon_sym_f64] = ACTIONS(1860), - [anon_sym_bool] = ACTIONS(1860), - [anon_sym_str] = ACTIONS(1860), - [anon_sym_char] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1858), - [anon_sym_COLON_COLON] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(1858), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_async] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_default] = ACTIONS(1860), - [anon_sym_enum] = ACTIONS(1860), - [anon_sym_fn] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_gen] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_impl] = ACTIONS(1860), - [anon_sym_let] = ACTIONS(1860), - [anon_sym_loop] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_mod] = ACTIONS(1860), - [anon_sym_pub] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1860), - [anon_sym_struct] = ACTIONS(1860), - [anon_sym_trait] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_union] = ACTIONS(1860), - [anon_sym_unsafe] = ACTIONS(1860), - [anon_sym_use] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_yield] = ACTIONS(1860), - [anon_sym_move] = ACTIONS(1860), - [anon_sym_try] = ACTIONS(1860), - [sym_integer_literal] = ACTIONS(1858), - [aux_sym_string_literal_token1] = ACTIONS(1858), - [sym_char_literal] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1860), - [sym_super] = ACTIONS(1860), - [sym_crate] = ACTIONS(1860), - [sym_metavariable] = ACTIONS(1858), - [sym__raw_string_literal_start] = ACTIONS(1858), - [sym_float_literal] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1954), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [anon_sym_move] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, [STATE(506)] = { + [sym_empty_statement] = STATE(1412), + [sym_macro_definition] = STATE(1412), + [sym_attribute_item] = STATE(2254), + [sym_inner_attribute_item] = STATE(1412), + [sym_mod_item] = STATE(1412), + [sym_foreign_mod_item] = STATE(1412), + [sym_struct_item] = STATE(1412), + [sym_union_item] = STATE(1412), + [sym_enum_item] = STATE(1412), + [sym_extern_crate_declaration] = STATE(1412), + [sym_const_item] = STATE(1412), + [sym_static_item] = STATE(1412), + [sym_type_item] = STATE(1412), + [sym_function_item] = STATE(1412), + [sym_function_signature_item] = STATE(1412), + [sym_function_modifiers] = STATE(4257), + [sym_impl_item] = STATE(1412), + [sym_trait_item] = STATE(1412), + [sym_associated_type] = STATE(1412), + [sym_let_declaration] = STATE(1412), + [sym_use_declaration] = STATE(1412), + [sym_extern_modifier] = STATE(2509), + [sym_visibility_modifier] = STATE(2283), + [sym_bracketed_type] = STATE(4179), + [sym_generic_type_with_turbofish] = STATE(4258), + [sym_macro_invocation] = STATE(1412), + [sym_scoped_identifier] = STATE(3811), [sym_line_comment] = STATE(506), [sym_block_comment] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1862), - [sym_identifier] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_macro_rules_BANG] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_u8] = ACTIONS(1864), - [anon_sym_i8] = ACTIONS(1864), - [anon_sym_u16] = ACTIONS(1864), - [anon_sym_i16] = ACTIONS(1864), - [anon_sym_u32] = ACTIONS(1864), - [anon_sym_i32] = ACTIONS(1864), - [anon_sym_u64] = ACTIONS(1864), - [anon_sym_i64] = ACTIONS(1864), - [anon_sym_u128] = ACTIONS(1864), - [anon_sym_i128] = ACTIONS(1864), - [anon_sym_isize] = ACTIONS(1864), - [anon_sym_usize] = ACTIONS(1864), - [anon_sym_f32] = ACTIONS(1864), - [anon_sym_f64] = ACTIONS(1864), - [anon_sym_bool] = ACTIONS(1864), - [anon_sym_str] = ACTIONS(1864), - [anon_sym_char] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1862), - [anon_sym_COLON_COLON] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(1862), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_async] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_default] = ACTIONS(1864), - [anon_sym_enum] = ACTIONS(1864), - [anon_sym_fn] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_gen] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_impl] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_mod] = ACTIONS(1864), - [anon_sym_pub] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1864), - [anon_sym_struct] = ACTIONS(1864), - [anon_sym_trait] = ACTIONS(1864), - [anon_sym_type] = ACTIONS(1864), - [anon_sym_union] = ACTIONS(1864), - [anon_sym_unsafe] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_yield] = ACTIONS(1864), - [anon_sym_move] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(1862), - [aux_sym_string_literal_token1] = ACTIONS(1862), - [sym_char_literal] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1864), - [sym_super] = ACTIONS(1864), - [sym_crate] = ACTIONS(1864), - [sym_metavariable] = ACTIONS(1862), - [sym__raw_string_literal_start] = ACTIONS(1862), - [sym_float_literal] = ACTIONS(1862), - }, - [STATE(507)] = { - [sym_line_comment] = STATE(507), - [sym_block_comment] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_identifier] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_macro_rules_BANG] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_u8] = ACTIONS(1868), - [anon_sym_i8] = ACTIONS(1868), - [anon_sym_u16] = ACTIONS(1868), - [anon_sym_i16] = ACTIONS(1868), - [anon_sym_u32] = ACTIONS(1868), - [anon_sym_i32] = ACTIONS(1868), - [anon_sym_u64] = ACTIONS(1868), - [anon_sym_i64] = ACTIONS(1868), - [anon_sym_u128] = ACTIONS(1868), - [anon_sym_i128] = ACTIONS(1868), - [anon_sym_isize] = ACTIONS(1868), - [anon_sym_usize] = ACTIONS(1868), - [anon_sym_f32] = ACTIONS(1868), - [anon_sym_f64] = ACTIONS(1868), - [anon_sym_bool] = ACTIONS(1868), - [anon_sym_str] = ACTIONS(1868), - [anon_sym_char] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_COLON_COLON] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(1866), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_gen] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_impl] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_loop] = ACTIONS(1868), - [anon_sym_match] = ACTIONS(1868), - [anon_sym_mod] = ACTIONS(1868), - [anon_sym_pub] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_trait] = ACTIONS(1868), - [anon_sym_type] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_unsafe] = ACTIONS(1868), - [anon_sym_use] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_yield] = ACTIONS(1868), - [anon_sym_move] = ACTIONS(1868), - [anon_sym_try] = ACTIONS(1868), - [sym_integer_literal] = ACTIONS(1866), - [aux_sym_string_literal_token1] = ACTIONS(1866), - [sym_char_literal] = ACTIONS(1866), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1868), - [sym_super] = ACTIONS(1868), - [sym_crate] = ACTIONS(1868), - [sym_metavariable] = ACTIONS(1866), - [sym__raw_string_literal_start] = ACTIONS(1866), - [sym_float_literal] = ACTIONS(1866), - }, - [STATE(508)] = { - [sym_line_comment] = STATE(508), - [sym_block_comment] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_identifier] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_macro_rules_BANG] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_u8] = ACTIONS(1872), - [anon_sym_i8] = ACTIONS(1872), - [anon_sym_u16] = ACTIONS(1872), - [anon_sym_i16] = ACTIONS(1872), - [anon_sym_u32] = ACTIONS(1872), - [anon_sym_i32] = ACTIONS(1872), - [anon_sym_u64] = ACTIONS(1872), - [anon_sym_i64] = ACTIONS(1872), - [anon_sym_u128] = ACTIONS(1872), - [anon_sym_i128] = ACTIONS(1872), - [anon_sym_isize] = ACTIONS(1872), - [anon_sym_usize] = ACTIONS(1872), - [anon_sym_f32] = ACTIONS(1872), - [anon_sym_f64] = ACTIONS(1872), - [anon_sym_bool] = ACTIONS(1872), - [anon_sym_str] = ACTIONS(1872), - [anon_sym_char] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_LT] = ACTIONS(1870), - [anon_sym_DOT_DOT] = ACTIONS(1870), - [anon_sym_COLON_COLON] = ACTIONS(1870), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_async] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_default] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_fn] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_gen] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_impl] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_mod] = ACTIONS(1872), - [anon_sym_pub] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [anon_sym_trait] = ACTIONS(1872), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_unsafe] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_yield] = ACTIONS(1872), - [anon_sym_move] = ACTIONS(1872), - [anon_sym_try] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(1870), - [aux_sym_string_literal_token1] = ACTIONS(1870), - [sym_char_literal] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1872), - [sym_super] = ACTIONS(1872), - [sym_crate] = ACTIONS(1872), - [sym_metavariable] = ACTIONS(1870), - [sym__raw_string_literal_start] = ACTIONS(1870), - [sym_float_literal] = ACTIONS(1870), - }, - [STATE(509)] = { - [sym_line_comment] = STATE(509), - [sym_block_comment] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(1874), - [sym_identifier] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_u8] = ACTIONS(1876), - [anon_sym_i8] = ACTIONS(1876), - [anon_sym_u16] = ACTIONS(1876), - [anon_sym_i16] = ACTIONS(1876), - [anon_sym_u32] = ACTIONS(1876), - [anon_sym_i32] = ACTIONS(1876), - [anon_sym_u64] = ACTIONS(1876), - [anon_sym_i64] = ACTIONS(1876), - [anon_sym_u128] = ACTIONS(1876), - [anon_sym_i128] = ACTIONS(1876), - [anon_sym_isize] = ACTIONS(1876), - [anon_sym_usize] = ACTIONS(1876), - [anon_sym_f32] = ACTIONS(1876), - [anon_sym_f64] = ACTIONS(1876), - [anon_sym_bool] = ACTIONS(1876), - [anon_sym_str] = ACTIONS(1876), - [anon_sym_char] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_BANG] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1874), - [anon_sym_COLON_COLON] = ACTIONS(1874), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_SQUOTE] = ACTIONS(1876), - [anon_sym_async] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_default] = ACTIONS(1876), - [anon_sym_enum] = ACTIONS(1876), - [anon_sym_fn] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_gen] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_impl] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_mod] = ACTIONS(1876), - [anon_sym_pub] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1876), - [anon_sym_trait] = ACTIONS(1876), - [anon_sym_type] = ACTIONS(1876), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_unsafe] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_yield] = ACTIONS(1876), - [anon_sym_move] = ACTIONS(1876), - [anon_sym_try] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [aux_sym_string_literal_token1] = ACTIONS(1874), - [sym_char_literal] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1876), - [sym_super] = ACTIONS(1876), - [sym_crate] = ACTIONS(1876), - [sym_metavariable] = ACTIONS(1874), - [sym__raw_string_literal_start] = ACTIONS(1874), - [sym_float_literal] = ACTIONS(1874), - }, - [STATE(510)] = { - [sym_line_comment] = STATE(510), - [sym_block_comment] = STATE(510), - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), + [aux_sym_mod_item_repeat1] = STATE(2252), + [aux_sym_declaration_list_repeat1] = STATE(503), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1876), [anon_sym_macro_rules_BANG] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1878), - [anon_sym_u8] = ACTIONS(1880), - [anon_sym_i8] = ACTIONS(1880), - [anon_sym_u16] = ACTIONS(1880), - [anon_sym_i16] = ACTIONS(1880), - [anon_sym_u32] = ACTIONS(1880), - [anon_sym_i32] = ACTIONS(1880), - [anon_sym_u64] = ACTIONS(1880), - [anon_sym_i64] = ACTIONS(1880), - [anon_sym_u128] = ACTIONS(1880), - [anon_sym_i128] = ACTIONS(1880), - [anon_sym_isize] = ACTIONS(1880), - [anon_sym_usize] = ACTIONS(1880), - [anon_sym_f32] = ACTIONS(1880), - [anon_sym_f64] = ACTIONS(1880), - [anon_sym_bool] = ACTIONS(1880), - [anon_sym_str] = ACTIONS(1880), - [anon_sym_char] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_DOT_DOT] = ACTIONS(1878), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(1878), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [anon_sym_fn] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_gen] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_impl] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_loop] = ACTIONS(1880), - [anon_sym_match] = ACTIONS(1880), - [anon_sym_mod] = ACTIONS(1880), - [anon_sym_pub] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_struct] = ACTIONS(1880), - [anon_sym_trait] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_unsafe] = ACTIONS(1880), - [anon_sym_use] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_extern] = ACTIONS(1880), - [anon_sym_yield] = ACTIONS(1880), - [anon_sym_move] = ACTIONS(1880), - [anon_sym_try] = ACTIONS(1880), - [sym_integer_literal] = ACTIONS(1878), - [aux_sym_string_literal_token1] = ACTIONS(1878), - [sym_char_literal] = ACTIONS(1878), - [anon_sym_true] = ACTIONS(1880), - [anon_sym_false] = ACTIONS(1880), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_crate] = ACTIONS(1880), - [sym_metavariable] = ACTIONS(1878), - [sym__raw_string_literal_start] = ACTIONS(1878), - [sym_float_literal] = ACTIONS(1878), - }, - [STATE(511)] = { - [sym_line_comment] = STATE(511), - [sym_block_comment] = STATE(511), - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_identifier] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_macro_rules_BANG] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_u8] = ACTIONS(1884), - [anon_sym_i8] = ACTIONS(1884), - [anon_sym_u16] = ACTIONS(1884), - [anon_sym_i16] = ACTIONS(1884), - [anon_sym_u32] = ACTIONS(1884), - [anon_sym_i32] = ACTIONS(1884), - [anon_sym_u64] = ACTIONS(1884), - [anon_sym_i64] = ACTIONS(1884), - [anon_sym_u128] = ACTIONS(1884), - [anon_sym_i128] = ACTIONS(1884), - [anon_sym_isize] = ACTIONS(1884), - [anon_sym_usize] = ACTIONS(1884), - [anon_sym_f32] = ACTIONS(1884), - [anon_sym_f64] = ACTIONS(1884), - [anon_sym_bool] = ACTIONS(1884), - [anon_sym_str] = ACTIONS(1884), - [anon_sym_char] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_BANG] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_DOT_DOT] = ACTIONS(1882), - [anon_sym_COLON_COLON] = ACTIONS(1882), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_async] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_fn] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1884), - [anon_sym_gen] = ACTIONS(1884), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_impl] = ACTIONS(1884), - [anon_sym_let] = ACTIONS(1884), - [anon_sym_loop] = ACTIONS(1884), - [anon_sym_match] = ACTIONS(1884), - [anon_sym_mod] = ACTIONS(1884), - [anon_sym_pub] = ACTIONS(1884), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1884), - [anon_sym_struct] = ACTIONS(1884), - [anon_sym_trait] = ACTIONS(1884), - [anon_sym_type] = ACTIONS(1884), - [anon_sym_union] = ACTIONS(1884), - [anon_sym_unsafe] = ACTIONS(1884), - [anon_sym_use] = ACTIONS(1884), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_yield] = ACTIONS(1884), - [anon_sym_move] = ACTIONS(1884), - [anon_sym_try] = ACTIONS(1884), - [sym_integer_literal] = ACTIONS(1882), - [aux_sym_string_literal_token1] = ACTIONS(1882), - [sym_char_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(1884), - [anon_sym_false] = ACTIONS(1884), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1884), - [sym_super] = ACTIONS(1884), - [sym_crate] = ACTIONS(1884), - [sym_metavariable] = ACTIONS(1882), - [sym__raw_string_literal_start] = ACTIONS(1882), - [sym_float_literal] = ACTIONS(1882), - }, - [STATE(512)] = { - [sym_line_comment] = STATE(512), - [sym_block_comment] = STATE(512), - [ts_builtin_sym_end] = ACTIONS(1886), - [sym_identifier] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_macro_rules_BANG] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_u8] = ACTIONS(1888), - [anon_sym_i8] = ACTIONS(1888), - [anon_sym_u16] = ACTIONS(1888), - [anon_sym_i16] = ACTIONS(1888), - [anon_sym_u32] = ACTIONS(1888), - [anon_sym_i32] = ACTIONS(1888), - [anon_sym_u64] = ACTIONS(1888), - [anon_sym_i64] = ACTIONS(1888), - [anon_sym_u128] = ACTIONS(1888), - [anon_sym_i128] = ACTIONS(1888), - [anon_sym_isize] = ACTIONS(1888), - [anon_sym_usize] = ACTIONS(1888), - [anon_sym_f32] = ACTIONS(1888), - [anon_sym_f64] = ACTIONS(1888), - [anon_sym_bool] = ACTIONS(1888), - [anon_sym_str] = ACTIONS(1888), - [anon_sym_char] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1886), - [anon_sym_COLON_COLON] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1956), + [anon_sym_u8] = ACTIONS(1882), + [anon_sym_i8] = ACTIONS(1882), + [anon_sym_u16] = ACTIONS(1882), + [anon_sym_i16] = ACTIONS(1882), + [anon_sym_u32] = ACTIONS(1882), + [anon_sym_i32] = ACTIONS(1882), + [anon_sym_u64] = ACTIONS(1882), + [anon_sym_i64] = ACTIONS(1882), + [anon_sym_u128] = ACTIONS(1882), + [anon_sym_i128] = ACTIONS(1882), + [anon_sym_isize] = ACTIONS(1882), + [anon_sym_usize] = ACTIONS(1882), + [anon_sym_f32] = ACTIONS(1882), + [anon_sym_f64] = ACTIONS(1882), + [anon_sym_bool] = ACTIONS(1882), + [anon_sym_str] = ACTIONS(1882), + [anon_sym_char] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1884), [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_async] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), + [anon_sym_async] = ACTIONS(1135), [anon_sym_const] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_default] = ACTIONS(1888), - [anon_sym_enum] = ACTIONS(1888), - [anon_sym_fn] = ACTIONS(1888), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_gen] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_impl] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1888), - [anon_sym_loop] = ACTIONS(1888), - [anon_sym_match] = ACTIONS(1888), - [anon_sym_mod] = ACTIONS(1888), - [anon_sym_pub] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_static] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_trait] = ACTIONS(1888), - [anon_sym_type] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1888), - [anon_sym_unsafe] = ACTIONS(1888), - [anon_sym_use] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_yield] = ACTIONS(1888), - [anon_sym_move] = ACTIONS(1888), - [anon_sym_try] = ACTIONS(1888), - [sym_integer_literal] = ACTIONS(1886), - [aux_sym_string_literal_token1] = ACTIONS(1886), - [sym_char_literal] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1888), - [anon_sym_false] = ACTIONS(1888), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1888), - [sym_super] = ACTIONS(1888), - [sym_crate] = ACTIONS(1888), - [sym_metavariable] = ACTIONS(1886), - [sym__raw_string_literal_start] = ACTIONS(1886), - [sym_float_literal] = ACTIONS(1886), - }, - [STATE(513)] = { - [sym_line_comment] = STATE(513), - [sym_block_comment] = STATE(513), - [ts_builtin_sym_end] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_macro_rules_BANG] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1890), - [anon_sym_u8] = ACTIONS(1892), - [anon_sym_i8] = ACTIONS(1892), - [anon_sym_u16] = ACTIONS(1892), - [anon_sym_i16] = ACTIONS(1892), - [anon_sym_u32] = ACTIONS(1892), - [anon_sym_i32] = ACTIONS(1892), - [anon_sym_u64] = ACTIONS(1892), - [anon_sym_i64] = ACTIONS(1892), - [anon_sym_u128] = ACTIONS(1892), - [anon_sym_i128] = ACTIONS(1892), - [anon_sym_isize] = ACTIONS(1892), - [anon_sym_usize] = ACTIONS(1892), - [anon_sym_f32] = ACTIONS(1892), - [anon_sym_f64] = ACTIONS(1892), - [anon_sym_bool] = ACTIONS(1892), - [anon_sym_str] = ACTIONS(1892), - [anon_sym_char] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1890), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_COLON_COLON] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_async] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_const] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_default] = ACTIONS(1892), + [anon_sym_default] = ACTIONS(1890), [anon_sym_enum] = ACTIONS(1892), - [anon_sym_fn] = ACTIONS(1892), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_gen] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_impl] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1892), - [anon_sym_loop] = ACTIONS(1892), - [anon_sym_match] = ACTIONS(1892), - [anon_sym_mod] = ACTIONS(1892), - [anon_sym_pub] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1892), - [anon_sym_struct] = ACTIONS(1892), - [anon_sym_trait] = ACTIONS(1892), - [anon_sym_type] = ACTIONS(1892), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_unsafe] = ACTIONS(1892), - [anon_sym_use] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_yield] = ACTIONS(1892), - [anon_sym_move] = ACTIONS(1892), - [anon_sym_try] = ACTIONS(1892), - [sym_integer_literal] = ACTIONS(1890), - [aux_sym_string_literal_token1] = ACTIONS(1890), - [sym_char_literal] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1892), - [sym_super] = ACTIONS(1892), - [sym_crate] = ACTIONS(1892), - [sym_metavariable] = ACTIONS(1890), - [sym__raw_string_literal_start] = ACTIONS(1890), - [sym_float_literal] = ACTIONS(1890), - }, - [STATE(514)] = { - [sym_line_comment] = STATE(514), - [sym_block_comment] = STATE(514), - [ts_builtin_sym_end] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_macro_rules_BANG] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_u8] = ACTIONS(1896), - [anon_sym_i8] = ACTIONS(1896), - [anon_sym_u16] = ACTIONS(1896), - [anon_sym_i16] = ACTIONS(1896), - [anon_sym_u32] = ACTIONS(1896), - [anon_sym_i32] = ACTIONS(1896), - [anon_sym_u64] = ACTIONS(1896), - [anon_sym_i64] = ACTIONS(1896), - [anon_sym_u128] = ACTIONS(1896), - [anon_sym_i128] = ACTIONS(1896), - [anon_sym_isize] = ACTIONS(1896), - [anon_sym_usize] = ACTIONS(1896), - [anon_sym_f32] = ACTIONS(1896), - [anon_sym_f64] = ACTIONS(1896), - [anon_sym_bool] = ACTIONS(1896), - [anon_sym_str] = ACTIONS(1896), - [anon_sym_char] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1894), - [anon_sym_PIPE] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1894), - [anon_sym_DOT_DOT] = ACTIONS(1894), - [anon_sym_COLON_COLON] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(1896), - [anon_sym_enum] = ACTIONS(1896), - [anon_sym_fn] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1896), + [anon_sym_fn] = ACTIONS(1894), [anon_sym_gen] = ACTIONS(1896), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_impl] = ACTIONS(1896), - [anon_sym_let] = ACTIONS(1896), - [anon_sym_loop] = ACTIONS(1896), - [anon_sym_match] = ACTIONS(1896), - [anon_sym_mod] = ACTIONS(1896), - [anon_sym_pub] = ACTIONS(1896), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_static] = ACTIONS(1896), - [anon_sym_struct] = ACTIONS(1896), - [anon_sym_trait] = ACTIONS(1896), - [anon_sym_type] = ACTIONS(1896), - [anon_sym_union] = ACTIONS(1896), - [anon_sym_unsafe] = ACTIONS(1896), - [anon_sym_use] = ACTIONS(1896), - [anon_sym_while] = ACTIONS(1896), - [anon_sym_extern] = ACTIONS(1896), - [anon_sym_yield] = ACTIONS(1896), - [anon_sym_move] = ACTIONS(1896), - [anon_sym_try] = ACTIONS(1896), - [sym_integer_literal] = ACTIONS(1894), - [aux_sym_string_literal_token1] = ACTIONS(1894), - [sym_char_literal] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1896), - [sym_super] = ACTIONS(1896), - [sym_crate] = ACTIONS(1896), - [sym_metavariable] = ACTIONS(1894), - [sym__raw_string_literal_start] = ACTIONS(1894), - [sym_float_literal] = ACTIONS(1894), - }, - [STATE(515)] = { - [sym_line_comment] = STATE(515), - [sym_block_comment] = STATE(515), - [ts_builtin_sym_end] = ACTIONS(1898), - [sym_identifier] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_macro_rules_BANG] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_RBRACE] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_u8] = ACTIONS(1900), - [anon_sym_i8] = ACTIONS(1900), - [anon_sym_u16] = ACTIONS(1900), - [anon_sym_i16] = ACTIONS(1900), - [anon_sym_u32] = ACTIONS(1900), - [anon_sym_i32] = ACTIONS(1900), - [anon_sym_u64] = ACTIONS(1900), - [anon_sym_i64] = ACTIONS(1900), - [anon_sym_u128] = ACTIONS(1900), - [anon_sym_i128] = ACTIONS(1900), - [anon_sym_isize] = ACTIONS(1900), - [anon_sym_usize] = ACTIONS(1900), - [anon_sym_f32] = ACTIONS(1900), - [anon_sym_f64] = ACTIONS(1900), - [anon_sym_bool] = ACTIONS(1900), - [anon_sym_str] = ACTIONS(1900), - [anon_sym_char] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_DOT_DOT] = ACTIONS(1898), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1900), - [anon_sym_async] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_default] = ACTIONS(1900), - [anon_sym_enum] = ACTIONS(1900), - [anon_sym_fn] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_gen] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_impl] = ACTIONS(1900), + [anon_sym_impl] = ACTIONS(1898), [anon_sym_let] = ACTIONS(1900), - [anon_sym_loop] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [anon_sym_mod] = ACTIONS(1900), - [anon_sym_pub] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1900), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1900), - [anon_sym_type] = ACTIONS(1900), - [anon_sym_union] = ACTIONS(1900), - [anon_sym_unsafe] = ACTIONS(1900), - [anon_sym_use] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_yield] = ACTIONS(1900), - [anon_sym_move] = ACTIONS(1900), - [anon_sym_try] = ACTIONS(1900), - [sym_integer_literal] = ACTIONS(1898), - [aux_sym_string_literal_token1] = ACTIONS(1898), - [sym_char_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1900), - [sym_super] = ACTIONS(1900), - [sym_crate] = ACTIONS(1900), - [sym_metavariable] = ACTIONS(1898), - [sym__raw_string_literal_start] = ACTIONS(1898), - [sym_float_literal] = ACTIONS(1898), - }, - [STATE(516)] = { - [sym_line_comment] = STATE(516), - [sym_block_comment] = STATE(516), - [ts_builtin_sym_end] = ACTIONS(1902), - [sym_identifier] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_macro_rules_BANG] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_u8] = ACTIONS(1904), - [anon_sym_i8] = ACTIONS(1904), - [anon_sym_u16] = ACTIONS(1904), - [anon_sym_i16] = ACTIONS(1904), - [anon_sym_u32] = ACTIONS(1904), - [anon_sym_i32] = ACTIONS(1904), - [anon_sym_u64] = ACTIONS(1904), - [anon_sym_i64] = ACTIONS(1904), - [anon_sym_u128] = ACTIONS(1904), - [anon_sym_i128] = ACTIONS(1904), - [anon_sym_isize] = ACTIONS(1904), - [anon_sym_usize] = ACTIONS(1904), - [anon_sym_f32] = ACTIONS(1904), - [anon_sym_f64] = ACTIONS(1904), - [anon_sym_bool] = ACTIONS(1904), - [anon_sym_str] = ACTIONS(1904), - [anon_sym_char] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1902), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [anon_sym_COLON_COLON] = ACTIONS(1902), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_async] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_default] = ACTIONS(1904), - [anon_sym_enum] = ACTIONS(1904), - [anon_sym_fn] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_gen] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_impl] = ACTIONS(1904), - [anon_sym_let] = ACTIONS(1904), - [anon_sym_loop] = ACTIONS(1904), - [anon_sym_match] = ACTIONS(1904), - [anon_sym_mod] = ACTIONS(1904), - [anon_sym_pub] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), + [anon_sym_mod] = ACTIONS(1902), + [anon_sym_pub] = ACTIONS(69), [anon_sym_static] = ACTIONS(1904), - [anon_sym_struct] = ACTIONS(1904), - [anon_sym_trait] = ACTIONS(1904), - [anon_sym_type] = ACTIONS(1904), - [anon_sym_union] = ACTIONS(1904), - [anon_sym_unsafe] = ACTIONS(1904), - [anon_sym_use] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_yield] = ACTIONS(1904), - [anon_sym_move] = ACTIONS(1904), - [anon_sym_try] = ACTIONS(1904), - [sym_integer_literal] = ACTIONS(1902), - [aux_sym_string_literal_token1] = ACTIONS(1902), - [sym_char_literal] = ACTIONS(1902), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1904), - [sym_super] = ACTIONS(1904), - [sym_crate] = ACTIONS(1904), - [sym_metavariable] = ACTIONS(1902), - [sym__raw_string_literal_start] = ACTIONS(1902), - [sym_float_literal] = ACTIONS(1902), - }, - [STATE(517)] = { - [sym_line_comment] = STATE(517), - [sym_block_comment] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1906), - [sym_identifier] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_macro_rules_BANG] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_u8] = ACTIONS(1908), - [anon_sym_i8] = ACTIONS(1908), - [anon_sym_u16] = ACTIONS(1908), - [anon_sym_i16] = ACTIONS(1908), - [anon_sym_u32] = ACTIONS(1908), - [anon_sym_i32] = ACTIONS(1908), - [anon_sym_u64] = ACTIONS(1908), - [anon_sym_i64] = ACTIONS(1908), - [anon_sym_u128] = ACTIONS(1908), - [anon_sym_i128] = ACTIONS(1908), - [anon_sym_isize] = ACTIONS(1908), - [anon_sym_usize] = ACTIONS(1908), - [anon_sym_f32] = ACTIONS(1908), - [anon_sym_f64] = ACTIONS(1908), - [anon_sym_bool] = ACTIONS(1908), - [anon_sym_str] = ACTIONS(1908), - [anon_sym_char] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1906), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1906), - [anon_sym_DOT_DOT] = ACTIONS(1906), - [anon_sym_COLON_COLON] = ACTIONS(1906), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_async] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_const] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_default] = ACTIONS(1908), - [anon_sym_enum] = ACTIONS(1908), - [anon_sym_fn] = ACTIONS(1908), - [anon_sym_for] = ACTIONS(1908), - [anon_sym_gen] = ACTIONS(1908), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_impl] = ACTIONS(1908), - [anon_sym_let] = ACTIONS(1908), - [anon_sym_loop] = ACTIONS(1908), - [anon_sym_match] = ACTIONS(1908), - [anon_sym_mod] = ACTIONS(1908), - [anon_sym_pub] = ACTIONS(1908), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1906), [anon_sym_trait] = ACTIONS(1908), - [anon_sym_type] = ACTIONS(1908), - [anon_sym_union] = ACTIONS(1908), - [anon_sym_unsafe] = ACTIONS(1908), - [anon_sym_use] = ACTIONS(1908), - [anon_sym_while] = ACTIONS(1908), - [anon_sym_extern] = ACTIONS(1908), - [anon_sym_yield] = ACTIONS(1908), - [anon_sym_move] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(1906), - [aux_sym_string_literal_token1] = ACTIONS(1906), - [sym_char_literal] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1908), - [anon_sym_false] = ACTIONS(1908), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1908), - [sym_super] = ACTIONS(1908), - [sym_crate] = ACTIONS(1908), - [sym_metavariable] = ACTIONS(1906), - [sym__raw_string_literal_start] = ACTIONS(1906), - [sym_float_literal] = ACTIONS(1906), - }, - [STATE(518)] = { - [sym_line_comment] = STATE(518), - [sym_block_comment] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1910), - [sym_identifier] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_macro_rules_BANG] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_RBRACE] = ACTIONS(1910), - [anon_sym_STAR] = ACTIONS(1910), - [anon_sym_u8] = ACTIONS(1912), - [anon_sym_i8] = ACTIONS(1912), - [anon_sym_u16] = ACTIONS(1912), - [anon_sym_i16] = ACTIONS(1912), - [anon_sym_u32] = ACTIONS(1912), - [anon_sym_i32] = ACTIONS(1912), - [anon_sym_u64] = ACTIONS(1912), - [anon_sym_i64] = ACTIONS(1912), - [anon_sym_u128] = ACTIONS(1912), - [anon_sym_i128] = ACTIONS(1912), - [anon_sym_isize] = ACTIONS(1912), - [anon_sym_usize] = ACTIONS(1912), - [anon_sym_f32] = ACTIONS(1912), - [anon_sym_f64] = ACTIONS(1912), - [anon_sym_bool] = ACTIONS(1912), - [anon_sym_str] = ACTIONS(1912), - [anon_sym_char] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1910), - [anon_sym_BANG] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(1910), - [anon_sym_DOT_DOT] = ACTIONS(1910), - [anon_sym_COLON_COLON] = ACTIONS(1910), - [anon_sym_POUND] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1912), - [anon_sym_async] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_const] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_default] = ACTIONS(1912), - [anon_sym_enum] = ACTIONS(1912), - [anon_sym_fn] = ACTIONS(1912), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_gen] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_impl] = ACTIONS(1912), - [anon_sym_let] = ACTIONS(1912), - [anon_sym_loop] = ACTIONS(1912), - [anon_sym_match] = ACTIONS(1912), - [anon_sym_mod] = ACTIONS(1912), - [anon_sym_pub] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1912), - [anon_sym_struct] = ACTIONS(1912), - [anon_sym_trait] = ACTIONS(1912), - [anon_sym_type] = ACTIONS(1912), + [anon_sym_type] = ACTIONS(1910), [anon_sym_union] = ACTIONS(1912), - [anon_sym_unsafe] = ACTIONS(1912), - [anon_sym_use] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1912), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_yield] = ACTIONS(1912), - [anon_sym_move] = ACTIONS(1912), - [anon_sym_try] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(1910), - [aux_sym_string_literal_token1] = ACTIONS(1910), - [sym_char_literal] = ACTIONS(1910), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1912), - [sym_super] = ACTIONS(1912), - [sym_crate] = ACTIONS(1912), - [sym_metavariable] = ACTIONS(1910), - [sym__raw_string_literal_start] = ACTIONS(1910), - [sym_float_literal] = ACTIONS(1910), - }, - [STATE(519)] = { - [sym_line_comment] = STATE(519), - [sym_block_comment] = STATE(519), - [ts_builtin_sym_end] = ACTIONS(1914), - [sym_identifier] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_macro_rules_BANG] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_u8] = ACTIONS(1916), - [anon_sym_i8] = ACTIONS(1916), - [anon_sym_u16] = ACTIONS(1916), - [anon_sym_i16] = ACTIONS(1916), - [anon_sym_u32] = ACTIONS(1916), - [anon_sym_i32] = ACTIONS(1916), - [anon_sym_u64] = ACTIONS(1916), - [anon_sym_i64] = ACTIONS(1916), - [anon_sym_u128] = ACTIONS(1916), - [anon_sym_i128] = ACTIONS(1916), - [anon_sym_isize] = ACTIONS(1916), - [anon_sym_usize] = ACTIONS(1916), - [anon_sym_f32] = ACTIONS(1916), - [anon_sym_f64] = ACTIONS(1916), - [anon_sym_bool] = ACTIONS(1916), - [anon_sym_str] = ACTIONS(1916), - [anon_sym_char] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_DOT_DOT] = ACTIONS(1914), - [anon_sym_COLON_COLON] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(1914), - [anon_sym_SQUOTE] = ACTIONS(1916), - [anon_sym_async] = ACTIONS(1916), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_const] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1916), - [anon_sym_default] = ACTIONS(1916), - [anon_sym_enum] = ACTIONS(1916), - [anon_sym_fn] = ACTIONS(1916), - [anon_sym_for] = ACTIONS(1916), - [anon_sym_gen] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(1916), - [anon_sym_impl] = ACTIONS(1916), - [anon_sym_let] = ACTIONS(1916), - [anon_sym_loop] = ACTIONS(1916), - [anon_sym_match] = ACTIONS(1916), - [anon_sym_mod] = ACTIONS(1916), - [anon_sym_pub] = ACTIONS(1916), - [anon_sym_return] = ACTIONS(1916), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_struct] = ACTIONS(1916), - [anon_sym_trait] = ACTIONS(1916), - [anon_sym_type] = ACTIONS(1916), - [anon_sym_union] = ACTIONS(1916), - [anon_sym_unsafe] = ACTIONS(1916), + [anon_sym_unsafe] = ACTIONS(1914), [anon_sym_use] = ACTIONS(1916), - [anon_sym_while] = ACTIONS(1916), - [anon_sym_extern] = ACTIONS(1916), - [anon_sym_yield] = ACTIONS(1916), - [anon_sym_move] = ACTIONS(1916), - [anon_sym_try] = ACTIONS(1916), - [sym_integer_literal] = ACTIONS(1914), - [aux_sym_string_literal_token1] = ACTIONS(1914), - [sym_char_literal] = ACTIONS(1914), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1916), - [sym_super] = ACTIONS(1916), - [sym_crate] = ACTIONS(1916), - [sym_metavariable] = ACTIONS(1914), - [sym__raw_string_literal_start] = ACTIONS(1914), - [sym_float_literal] = ACTIONS(1914), - }, - [STATE(520)] = { - [sym_line_comment] = STATE(520), - [sym_block_comment] = STATE(520), - [ts_builtin_sym_end] = ACTIONS(1918), - [sym_identifier] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_macro_rules_BANG] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1918), - [anon_sym_u8] = ACTIONS(1920), - [anon_sym_i8] = ACTIONS(1920), - [anon_sym_u16] = ACTIONS(1920), - [anon_sym_i16] = ACTIONS(1920), - [anon_sym_u32] = ACTIONS(1920), - [anon_sym_i32] = ACTIONS(1920), - [anon_sym_u64] = ACTIONS(1920), - [anon_sym_i64] = ACTIONS(1920), - [anon_sym_u128] = ACTIONS(1920), - [anon_sym_i128] = ACTIONS(1920), - [anon_sym_isize] = ACTIONS(1920), - [anon_sym_usize] = ACTIONS(1920), - [anon_sym_f32] = ACTIONS(1920), - [anon_sym_f64] = ACTIONS(1920), - [anon_sym_bool] = ACTIONS(1920), - [anon_sym_str] = ACTIONS(1920), - [anon_sym_char] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_DOT_DOT] = ACTIONS(1918), - [anon_sym_COLON_COLON] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_async] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_default] = ACTIONS(1920), - [anon_sym_enum] = ACTIONS(1920), - [anon_sym_fn] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_gen] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_impl] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_mod] = ACTIONS(1920), - [anon_sym_pub] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_static] = ACTIONS(1920), - [anon_sym_struct] = ACTIONS(1920), - [anon_sym_trait] = ACTIONS(1920), - [anon_sym_type] = ACTIONS(1920), - [anon_sym_union] = ACTIONS(1920), - [anon_sym_unsafe] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_yield] = ACTIONS(1920), - [anon_sym_move] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [sym_integer_literal] = ACTIONS(1918), - [aux_sym_string_literal_token1] = ACTIONS(1918), - [sym_char_literal] = ACTIONS(1918), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1918), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1920), [sym_super] = ACTIONS(1920), - [sym_crate] = ACTIONS(1920), - [sym_metavariable] = ACTIONS(1918), - [sym__raw_string_literal_start] = ACTIONS(1918), - [sym_float_literal] = ACTIONS(1918), - }, - [STATE(521)] = { - [sym_line_comment] = STATE(521), - [sym_block_comment] = STATE(521), - [ts_builtin_sym_end] = ACTIONS(1922), - [sym_identifier] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1922), - [anon_sym_macro_rules_BANG] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1922), - [anon_sym_RBRACE] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_u8] = ACTIONS(1924), - [anon_sym_i8] = ACTIONS(1924), - [anon_sym_u16] = ACTIONS(1924), - [anon_sym_i16] = ACTIONS(1924), - [anon_sym_u32] = ACTIONS(1924), - [anon_sym_i32] = ACTIONS(1924), - [anon_sym_u64] = ACTIONS(1924), - [anon_sym_i64] = ACTIONS(1924), - [anon_sym_u128] = ACTIONS(1924), - [anon_sym_i128] = ACTIONS(1924), - [anon_sym_isize] = ACTIONS(1924), - [anon_sym_usize] = ACTIONS(1924), - [anon_sym_f32] = ACTIONS(1924), - [anon_sym_f64] = ACTIONS(1924), - [anon_sym_bool] = ACTIONS(1924), - [anon_sym_str] = ACTIONS(1924), - [anon_sym_char] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [anon_sym_COLON_COLON] = ACTIONS(1922), - [anon_sym_POUND] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_async] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1924), - [anon_sym_continue] = ACTIONS(1924), - [anon_sym_default] = ACTIONS(1924), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_fn] = ACTIONS(1924), - [anon_sym_for] = ACTIONS(1924), - [anon_sym_gen] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(1924), - [anon_sym_impl] = ACTIONS(1924), - [anon_sym_let] = ACTIONS(1924), - [anon_sym_loop] = ACTIONS(1924), - [anon_sym_match] = ACTIONS(1924), - [anon_sym_mod] = ACTIONS(1924), - [anon_sym_pub] = ACTIONS(1924), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(1924), - [anon_sym_trait] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1924), - [anon_sym_union] = ACTIONS(1924), - [anon_sym_unsafe] = ACTIONS(1924), - [anon_sym_use] = ACTIONS(1924), - [anon_sym_while] = ACTIONS(1924), - [anon_sym_extern] = ACTIONS(1924), - [anon_sym_yield] = ACTIONS(1924), - [anon_sym_move] = ACTIONS(1924), - [anon_sym_try] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(1922), - [aux_sym_string_literal_token1] = ACTIONS(1922), - [sym_char_literal] = ACTIONS(1922), - [anon_sym_true] = ACTIONS(1924), - [anon_sym_false] = ACTIONS(1924), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1924), - [sym_super] = ACTIONS(1924), - [sym_crate] = ACTIONS(1924), - [sym_metavariable] = ACTIONS(1922), - [sym__raw_string_literal_start] = ACTIONS(1922), - [sym_float_literal] = ACTIONS(1922), - }, - [STATE(522)] = { - [sym_line_comment] = STATE(522), - [sym_block_comment] = STATE(522), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_macro_rules_BANG] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1926), - [anon_sym_u8] = ACTIONS(1928), - [anon_sym_i8] = ACTIONS(1928), - [anon_sym_u16] = ACTIONS(1928), - [anon_sym_i16] = ACTIONS(1928), - [anon_sym_u32] = ACTIONS(1928), - [anon_sym_i32] = ACTIONS(1928), - [anon_sym_u64] = ACTIONS(1928), - [anon_sym_i64] = ACTIONS(1928), - [anon_sym_u128] = ACTIONS(1928), - [anon_sym_i128] = ACTIONS(1928), - [anon_sym_isize] = ACTIONS(1928), - [anon_sym_usize] = ACTIONS(1928), - [anon_sym_f32] = ACTIONS(1928), - [anon_sym_f64] = ACTIONS(1928), - [anon_sym_bool] = ACTIONS(1928), - [anon_sym_str] = ACTIONS(1928), - [anon_sym_char] = ACTIONS(1928), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_BANG] = ACTIONS(1926), - [anon_sym_AMP] = ACTIONS(1926), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1926), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_POUND] = ACTIONS(1926), - [anon_sym_SQUOTE] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_break] = ACTIONS(1928), - [anon_sym_const] = ACTIONS(1928), - [anon_sym_continue] = ACTIONS(1928), - [anon_sym_default] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1928), - [anon_sym_fn] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_gen] = ACTIONS(1928), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_impl] = ACTIONS(1928), - [anon_sym_let] = ACTIONS(1928), - [anon_sym_loop] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_mod] = ACTIONS(1928), - [anon_sym_pub] = ACTIONS(1928), - [anon_sym_return] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1928), - [anon_sym_struct] = ACTIONS(1928), - [anon_sym_trait] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_union] = ACTIONS(1928), - [anon_sym_unsafe] = ACTIONS(1928), - [anon_sym_use] = ACTIONS(1928), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_extern] = ACTIONS(1928), - [anon_sym_yield] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_try] = ACTIONS(1928), - [sym_integer_literal] = ACTIONS(1926), - [aux_sym_string_literal_token1] = ACTIONS(1926), - [sym_char_literal] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1928), - [sym_super] = ACTIONS(1928), - [sym_crate] = ACTIONS(1928), - [sym_metavariable] = ACTIONS(1926), - [sym__raw_string_literal_start] = ACTIONS(1926), - [sym_float_literal] = ACTIONS(1926), - }, - [STATE(523)] = { - [sym_line_comment] = STATE(523), - [sym_block_comment] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_macro_rules_BANG] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_u8] = ACTIONS(1932), - [anon_sym_i8] = ACTIONS(1932), - [anon_sym_u16] = ACTIONS(1932), - [anon_sym_i16] = ACTIONS(1932), - [anon_sym_u32] = ACTIONS(1932), - [anon_sym_i32] = ACTIONS(1932), - [anon_sym_u64] = ACTIONS(1932), - [anon_sym_i64] = ACTIONS(1932), - [anon_sym_u128] = ACTIONS(1932), - [anon_sym_i128] = ACTIONS(1932), - [anon_sym_isize] = ACTIONS(1932), - [anon_sym_usize] = ACTIONS(1932), - [anon_sym_f32] = ACTIONS(1932), - [anon_sym_f64] = ACTIONS(1932), - [anon_sym_bool] = ACTIONS(1932), - [anon_sym_str] = ACTIONS(1932), - [anon_sym_char] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_COLON_COLON] = ACTIONS(1930), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_const] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_default] = ACTIONS(1932), - [anon_sym_enum] = ACTIONS(1932), - [anon_sym_fn] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_gen] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_impl] = ACTIONS(1932), - [anon_sym_let] = ACTIONS(1932), - [anon_sym_loop] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_mod] = ACTIONS(1932), - [anon_sym_pub] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_static] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1932), - [anon_sym_trait] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_union] = ACTIONS(1932), - [anon_sym_unsafe] = ACTIONS(1932), - [anon_sym_use] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_extern] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_try] = ACTIONS(1932), - [sym_integer_literal] = ACTIONS(1930), - [aux_sym_string_literal_token1] = ACTIONS(1930), - [sym_char_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1932), - [sym_super] = ACTIONS(1932), - [sym_crate] = ACTIONS(1932), - [sym_metavariable] = ACTIONS(1930), - [sym__raw_string_literal_start] = ACTIONS(1930), - [sym_float_literal] = ACTIONS(1930), - }, - [STATE(524)] = { - [sym_line_comment] = STATE(524), - [sym_block_comment] = STATE(524), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_macro_rules_BANG] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_u8] = ACTIONS(1936), - [anon_sym_i8] = ACTIONS(1936), - [anon_sym_u16] = ACTIONS(1936), - [anon_sym_i16] = ACTIONS(1936), - [anon_sym_u32] = ACTIONS(1936), - [anon_sym_i32] = ACTIONS(1936), - [anon_sym_u64] = ACTIONS(1936), - [anon_sym_i64] = ACTIONS(1936), - [anon_sym_u128] = ACTIONS(1936), - [anon_sym_i128] = ACTIONS(1936), - [anon_sym_isize] = ACTIONS(1936), - [anon_sym_usize] = ACTIONS(1936), - [anon_sym_f32] = ACTIONS(1936), - [anon_sym_f64] = ACTIONS(1936), - [anon_sym_bool] = ACTIONS(1936), - [anon_sym_str] = ACTIONS(1936), - [anon_sym_char] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1934), - [anon_sym_BANG] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1934), - [anon_sym_PIPE] = ACTIONS(1934), - [anon_sym_LT] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_COLON_COLON] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_default] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [anon_sym_fn] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_gen] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_impl] = ACTIONS(1936), - [anon_sym_let] = ACTIONS(1936), - [anon_sym_loop] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_mod] = ACTIONS(1936), - [anon_sym_pub] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_struct] = ACTIONS(1936), - [anon_sym_trait] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_unsafe] = ACTIONS(1936), - [anon_sym_use] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_extern] = ACTIONS(1936), - [anon_sym_yield] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_try] = ACTIONS(1936), - [sym_integer_literal] = ACTIONS(1934), - [aux_sym_string_literal_token1] = ACTIONS(1934), - [sym_char_literal] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1936), - [sym_super] = ACTIONS(1936), - [sym_crate] = ACTIONS(1936), - [sym_metavariable] = ACTIONS(1934), - [sym__raw_string_literal_start] = ACTIONS(1934), - [sym_float_literal] = ACTIONS(1934), - }, - [STATE(525)] = { - [sym_line_comment] = STATE(525), - [sym_block_comment] = STATE(525), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_macro_rules_BANG] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_u8] = ACTIONS(1940), - [anon_sym_i8] = ACTIONS(1940), - [anon_sym_u16] = ACTIONS(1940), - [anon_sym_i16] = ACTIONS(1940), - [anon_sym_u32] = ACTIONS(1940), - [anon_sym_i32] = ACTIONS(1940), - [anon_sym_u64] = ACTIONS(1940), - [anon_sym_i64] = ACTIONS(1940), - [anon_sym_u128] = ACTIONS(1940), - [anon_sym_i128] = ACTIONS(1940), - [anon_sym_isize] = ACTIONS(1940), - [anon_sym_usize] = ACTIONS(1940), - [anon_sym_f32] = ACTIONS(1940), - [anon_sym_f64] = ACTIONS(1940), - [anon_sym_bool] = ACTIONS(1940), - [anon_sym_str] = ACTIONS(1940), - [anon_sym_char] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_PIPE] = ACTIONS(1938), - [anon_sym_LT] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_POUND] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_fn] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_gen] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_impl] = ACTIONS(1940), - [anon_sym_let] = ACTIONS(1940), - [anon_sym_loop] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_mod] = ACTIONS(1940), - [anon_sym_pub] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_trait] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_unsafe] = ACTIONS(1940), - [anon_sym_use] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym_yield] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_try] = ACTIONS(1940), - [sym_integer_literal] = ACTIONS(1938), - [aux_sym_string_literal_token1] = ACTIONS(1938), - [sym_char_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1940), - [sym_super] = ACTIONS(1940), - [sym_crate] = ACTIONS(1940), - [sym_metavariable] = ACTIONS(1938), - [sym__raw_string_literal_start] = ACTIONS(1938), - [sym_float_literal] = ACTIONS(1938), - }, - [STATE(526)] = { - [sym_line_comment] = STATE(526), - [sym_block_comment] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1942), - [sym_identifier] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_macro_rules_BANG] = ACTIONS(1942), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1942), - [anon_sym_u8] = ACTIONS(1944), - [anon_sym_i8] = ACTIONS(1944), - [anon_sym_u16] = ACTIONS(1944), - [anon_sym_i16] = ACTIONS(1944), - [anon_sym_u32] = ACTIONS(1944), - [anon_sym_i32] = ACTIONS(1944), - [anon_sym_u64] = ACTIONS(1944), - [anon_sym_i64] = ACTIONS(1944), - [anon_sym_u128] = ACTIONS(1944), - [anon_sym_i128] = ACTIONS(1944), - [anon_sym_isize] = ACTIONS(1944), - [anon_sym_usize] = ACTIONS(1944), - [anon_sym_f32] = ACTIONS(1944), - [anon_sym_f64] = ACTIONS(1944), - [anon_sym_bool] = ACTIONS(1944), - [anon_sym_str] = ACTIONS(1944), - [anon_sym_char] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_LT] = ACTIONS(1942), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1942), - [anon_sym_POUND] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1944), - [anon_sym_async] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_const] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_default] = ACTIONS(1944), - [anon_sym_enum] = ACTIONS(1944), - [anon_sym_fn] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_gen] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_impl] = ACTIONS(1944), - [anon_sym_let] = ACTIONS(1944), - [anon_sym_loop] = ACTIONS(1944), - [anon_sym_match] = ACTIONS(1944), - [anon_sym_mod] = ACTIONS(1944), - [anon_sym_pub] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(1944), - [anon_sym_struct] = ACTIONS(1944), - [anon_sym_trait] = ACTIONS(1944), - [anon_sym_type] = ACTIONS(1944), - [anon_sym_union] = ACTIONS(1944), - [anon_sym_unsafe] = ACTIONS(1944), - [anon_sym_use] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [anon_sym_extern] = ACTIONS(1944), - [anon_sym_yield] = ACTIONS(1944), - [anon_sym_move] = ACTIONS(1944), - [anon_sym_try] = ACTIONS(1944), - [sym_integer_literal] = ACTIONS(1942), - [aux_sym_string_literal_token1] = ACTIONS(1942), - [sym_char_literal] = ACTIONS(1942), - [anon_sym_true] = ACTIONS(1944), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1944), - [sym_super] = ACTIONS(1944), - [sym_crate] = ACTIONS(1944), - [sym_metavariable] = ACTIONS(1942), - [sym__raw_string_literal_start] = ACTIONS(1942), - [sym_float_literal] = ACTIONS(1942), - }, - [STATE(527)] = { - [sym_line_comment] = STATE(527), - [sym_block_comment] = STATE(527), - [ts_builtin_sym_end] = ACTIONS(1946), - [sym_identifier] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_macro_rules_BANG] = ACTIONS(1946), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_u8] = ACTIONS(1948), - [anon_sym_i8] = ACTIONS(1948), - [anon_sym_u16] = ACTIONS(1948), - [anon_sym_i16] = ACTIONS(1948), - [anon_sym_u32] = ACTIONS(1948), - [anon_sym_i32] = ACTIONS(1948), - [anon_sym_u64] = ACTIONS(1948), - [anon_sym_i64] = ACTIONS(1948), - [anon_sym_u128] = ACTIONS(1948), - [anon_sym_i128] = ACTIONS(1948), - [anon_sym_isize] = ACTIONS(1948), - [anon_sym_usize] = ACTIONS(1948), - [anon_sym_f32] = ACTIONS(1948), - [anon_sym_f64] = ACTIONS(1948), - [anon_sym_bool] = ACTIONS(1948), - [anon_sym_str] = ACTIONS(1948), - [anon_sym_char] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1946), - [anon_sym_LT] = ACTIONS(1946), - [anon_sym_DOT_DOT] = ACTIONS(1946), - [anon_sym_COLON_COLON] = ACTIONS(1946), - [anon_sym_POUND] = ACTIONS(1946), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_async] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_const] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_default] = ACTIONS(1948), - [anon_sym_enum] = ACTIONS(1948), - [anon_sym_fn] = ACTIONS(1948), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_gen] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_impl] = ACTIONS(1948), - [anon_sym_let] = ACTIONS(1948), - [anon_sym_loop] = ACTIONS(1948), - [anon_sym_match] = ACTIONS(1948), - [anon_sym_mod] = ACTIONS(1948), - [anon_sym_pub] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1948), - [anon_sym_struct] = ACTIONS(1948), - [anon_sym_trait] = ACTIONS(1948), - [anon_sym_type] = ACTIONS(1948), - [anon_sym_union] = ACTIONS(1948), - [anon_sym_unsafe] = ACTIONS(1948), - [anon_sym_use] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_extern] = ACTIONS(1948), - [anon_sym_yield] = ACTIONS(1948), - [anon_sym_move] = ACTIONS(1948), - [anon_sym_try] = ACTIONS(1948), - [sym_integer_literal] = ACTIONS(1946), - [aux_sym_string_literal_token1] = ACTIONS(1946), - [sym_char_literal] = ACTIONS(1946), - [anon_sym_true] = ACTIONS(1948), - [anon_sym_false] = ACTIONS(1948), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1948), - [sym_super] = ACTIONS(1948), - [sym_crate] = ACTIONS(1948), - [sym_metavariable] = ACTIONS(1946), - [sym__raw_string_literal_start] = ACTIONS(1946), - [sym_float_literal] = ACTIONS(1946), - }, - [STATE(528)] = { - [sym_line_comment] = STATE(528), - [sym_block_comment] = STATE(528), - [ts_builtin_sym_end] = ACTIONS(1950), - [sym_identifier] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1950), - [anon_sym_macro_rules_BANG] = ACTIONS(1950), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_STAR] = ACTIONS(1950), - [anon_sym_u8] = ACTIONS(1952), - [anon_sym_i8] = ACTIONS(1952), - [anon_sym_u16] = ACTIONS(1952), - [anon_sym_i16] = ACTIONS(1952), - [anon_sym_u32] = ACTIONS(1952), - [anon_sym_i32] = ACTIONS(1952), - [anon_sym_u64] = ACTIONS(1952), - [anon_sym_i64] = ACTIONS(1952), - [anon_sym_u128] = ACTIONS(1952), - [anon_sym_i128] = ACTIONS(1952), - [anon_sym_isize] = ACTIONS(1952), - [anon_sym_usize] = ACTIONS(1952), - [anon_sym_f32] = ACTIONS(1952), - [anon_sym_f64] = ACTIONS(1952), - [anon_sym_bool] = ACTIONS(1952), - [anon_sym_str] = ACTIONS(1952), - [anon_sym_char] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1950), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1950), - [anon_sym_PIPE] = ACTIONS(1950), - [anon_sym_LT] = ACTIONS(1950), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_COLON_COLON] = ACTIONS(1950), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_async] = ACTIONS(1952), - [anon_sym_break] = ACTIONS(1952), - [anon_sym_const] = ACTIONS(1952), - [anon_sym_continue] = ACTIONS(1952), - [anon_sym_default] = ACTIONS(1952), - [anon_sym_enum] = ACTIONS(1952), - [anon_sym_fn] = ACTIONS(1952), - [anon_sym_for] = ACTIONS(1952), - [anon_sym_gen] = ACTIONS(1952), - [anon_sym_if] = ACTIONS(1952), - [anon_sym_impl] = ACTIONS(1952), - [anon_sym_let] = ACTIONS(1952), - [anon_sym_loop] = ACTIONS(1952), - [anon_sym_match] = ACTIONS(1952), - [anon_sym_mod] = ACTIONS(1952), - [anon_sym_pub] = ACTIONS(1952), - [anon_sym_return] = ACTIONS(1952), - [anon_sym_static] = ACTIONS(1952), - [anon_sym_struct] = ACTIONS(1952), - [anon_sym_trait] = ACTIONS(1952), - [anon_sym_type] = ACTIONS(1952), - [anon_sym_union] = ACTIONS(1952), - [anon_sym_unsafe] = ACTIONS(1952), - [anon_sym_use] = ACTIONS(1952), - [anon_sym_while] = ACTIONS(1952), - [anon_sym_extern] = ACTIONS(1952), - [anon_sym_yield] = ACTIONS(1952), - [anon_sym_move] = ACTIONS(1952), - [anon_sym_try] = ACTIONS(1952), - [sym_integer_literal] = ACTIONS(1950), - [aux_sym_string_literal_token1] = ACTIONS(1950), - [sym_char_literal] = ACTIONS(1950), - [anon_sym_true] = ACTIONS(1952), - [anon_sym_false] = ACTIONS(1952), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1952), - [sym_super] = ACTIONS(1952), - [sym_crate] = ACTIONS(1952), - [sym_metavariable] = ACTIONS(1950), - [sym__raw_string_literal_start] = ACTIONS(1950), - [sym_float_literal] = ACTIONS(1950), - }, - [STATE(529)] = { - [sym_line_comment] = STATE(529), - [sym_block_comment] = STATE(529), - [ts_builtin_sym_end] = ACTIONS(1954), - [sym_identifier] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_macro_rules_BANG] = ACTIONS(1954), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(1954), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_u8] = ACTIONS(1956), - [anon_sym_i8] = ACTIONS(1956), - [anon_sym_u16] = ACTIONS(1956), - [anon_sym_i16] = ACTIONS(1956), - [anon_sym_u32] = ACTIONS(1956), - [anon_sym_i32] = ACTIONS(1956), - [anon_sym_u64] = ACTIONS(1956), - [anon_sym_i64] = ACTIONS(1956), - [anon_sym_u128] = ACTIONS(1956), - [anon_sym_i128] = ACTIONS(1956), - [anon_sym_isize] = ACTIONS(1956), - [anon_sym_usize] = ACTIONS(1956), - [anon_sym_f32] = ACTIONS(1956), - [anon_sym_f64] = ACTIONS(1956), - [anon_sym_bool] = ACTIONS(1956), - [anon_sym_str] = ACTIONS(1956), - [anon_sym_char] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_BANG] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_POUND] = ACTIONS(1954), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_async] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_const] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_default] = ACTIONS(1956), - [anon_sym_enum] = ACTIONS(1956), - [anon_sym_fn] = ACTIONS(1956), - [anon_sym_for] = ACTIONS(1956), - [anon_sym_gen] = ACTIONS(1956), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_impl] = ACTIONS(1956), - [anon_sym_let] = ACTIONS(1956), - [anon_sym_loop] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [anon_sym_mod] = ACTIONS(1956), - [anon_sym_pub] = ACTIONS(1956), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1956), - [anon_sym_trait] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_union] = ACTIONS(1956), - [anon_sym_unsafe] = ACTIONS(1956), - [anon_sym_use] = ACTIONS(1956), - [anon_sym_while] = ACTIONS(1956), - [anon_sym_extern] = ACTIONS(1956), - [anon_sym_yield] = ACTIONS(1956), - [anon_sym_move] = ACTIONS(1956), - [anon_sym_try] = ACTIONS(1956), - [sym_integer_literal] = ACTIONS(1954), - [aux_sym_string_literal_token1] = ACTIONS(1954), - [sym_char_literal] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1956), - [sym_super] = ACTIONS(1956), - [sym_crate] = ACTIONS(1956), - [sym_metavariable] = ACTIONS(1954), - [sym__raw_string_literal_start] = ACTIONS(1954), - [sym_float_literal] = ACTIONS(1954), + [sym_crate] = ACTIONS(1922), + [sym_metavariable] = ACTIONS(1924), }, - [STATE(530)] = { - [sym_line_comment] = STATE(530), - [sym_block_comment] = STATE(530), + [STATE(507)] = { + [sym_line_comment] = STATE(507), + [sym_block_comment] = STATE(507), [ts_builtin_sym_end] = ACTIONS(1958), [sym_identifier] = ACTIONS(1960), [anon_sym_SEMI] = ACTIONS(1958), @@ -74396,4788 +74340,5760 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1958), [sym_float_literal] = ACTIONS(1958), }, - [STATE(531)] = { - [sym_line_comment] = STATE(531), - [sym_block_comment] = STATE(531), - [ts_builtin_sym_end] = ACTIONS(1962), - [sym_identifier] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_macro_rules_BANG] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_RBRACE] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_u8] = ACTIONS(1964), - [anon_sym_i8] = ACTIONS(1964), - [anon_sym_u16] = ACTIONS(1964), - [anon_sym_i16] = ACTIONS(1964), - [anon_sym_u32] = ACTIONS(1964), - [anon_sym_i32] = ACTIONS(1964), - [anon_sym_u64] = ACTIONS(1964), - [anon_sym_i64] = ACTIONS(1964), - [anon_sym_u128] = ACTIONS(1964), - [anon_sym_i128] = ACTIONS(1964), - [anon_sym_isize] = ACTIONS(1964), - [anon_sym_usize] = ACTIONS(1964), - [anon_sym_f32] = ACTIONS(1964), - [anon_sym_f64] = ACTIONS(1964), - [anon_sym_bool] = ACTIONS(1964), - [anon_sym_str] = ACTIONS(1964), - [anon_sym_char] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_DOT_DOT] = ACTIONS(1962), - [anon_sym_COLON_COLON] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(1962), - [anon_sym_SQUOTE] = ACTIONS(1964), - [anon_sym_async] = ACTIONS(1964), - [anon_sym_break] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1964), - [anon_sym_continue] = ACTIONS(1964), - [anon_sym_default] = ACTIONS(1964), - [anon_sym_enum] = ACTIONS(1964), - [anon_sym_fn] = ACTIONS(1964), - [anon_sym_for] = ACTIONS(1964), - [anon_sym_gen] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_impl] = ACTIONS(1964), - [anon_sym_let] = ACTIONS(1964), - [anon_sym_loop] = ACTIONS(1964), - [anon_sym_match] = ACTIONS(1964), - [anon_sym_mod] = ACTIONS(1964), - [anon_sym_pub] = ACTIONS(1964), - [anon_sym_return] = ACTIONS(1964), - [anon_sym_static] = ACTIONS(1964), - [anon_sym_struct] = ACTIONS(1964), - [anon_sym_trait] = ACTIONS(1964), - [anon_sym_type] = ACTIONS(1964), - [anon_sym_union] = ACTIONS(1964), - [anon_sym_unsafe] = ACTIONS(1964), - [anon_sym_use] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_extern] = ACTIONS(1964), - [anon_sym_yield] = ACTIONS(1964), - [anon_sym_move] = ACTIONS(1964), - [anon_sym_try] = ACTIONS(1964), - [sym_integer_literal] = ACTIONS(1962), - [aux_sym_string_literal_token1] = ACTIONS(1962), - [sym_char_literal] = ACTIONS(1962), - [anon_sym_true] = ACTIONS(1964), - [anon_sym_false] = ACTIONS(1964), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1964), - [sym_super] = ACTIONS(1964), - [sym_crate] = ACTIONS(1964), - [sym_metavariable] = ACTIONS(1962), - [sym__raw_string_literal_start] = ACTIONS(1962), - [sym_float_literal] = ACTIONS(1962), + [STATE(508)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym_closure_expression] = STATE(3632), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(3414), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(508), + [sym_block_comment] = STATE(508), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [anon_sym_move] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(532)] = { - [sym_line_comment] = STATE(532), - [sym_block_comment] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_macro_rules_BANG] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_u8] = ACTIONS(1968), - [anon_sym_i8] = ACTIONS(1968), - [anon_sym_u16] = ACTIONS(1968), - [anon_sym_i16] = ACTIONS(1968), - [anon_sym_u32] = ACTIONS(1968), - [anon_sym_i32] = ACTIONS(1968), - [anon_sym_u64] = ACTIONS(1968), - [anon_sym_i64] = ACTIONS(1968), - [anon_sym_u128] = ACTIONS(1968), - [anon_sym_i128] = ACTIONS(1968), - [anon_sym_isize] = ACTIONS(1968), - [anon_sym_usize] = ACTIONS(1968), - [anon_sym_f32] = ACTIONS(1968), - [anon_sym_f64] = ACTIONS(1968), - [anon_sym_bool] = ACTIONS(1968), - [anon_sym_str] = ACTIONS(1968), - [anon_sym_char] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_BANG] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_DOT_DOT] = ACTIONS(1966), - [anon_sym_COLON_COLON] = ACTIONS(1966), - [anon_sym_POUND] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1968), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_default] = ACTIONS(1968), - [anon_sym_enum] = ACTIONS(1968), - [anon_sym_fn] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_gen] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_impl] = ACTIONS(1968), - [anon_sym_let] = ACTIONS(1968), - [anon_sym_loop] = ACTIONS(1968), - [anon_sym_match] = ACTIONS(1968), - [anon_sym_mod] = ACTIONS(1968), - [anon_sym_pub] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1968), - [anon_sym_struct] = ACTIONS(1968), - [anon_sym_trait] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_union] = ACTIONS(1968), - [anon_sym_unsafe] = ACTIONS(1968), - [anon_sym_use] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_extern] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1968), - [anon_sym_move] = ACTIONS(1968), - [anon_sym_try] = ACTIONS(1968), - [sym_integer_literal] = ACTIONS(1966), - [aux_sym_string_literal_token1] = ACTIONS(1966), - [sym_char_literal] = ACTIONS(1966), - [anon_sym_true] = ACTIONS(1968), - [anon_sym_false] = ACTIONS(1968), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1968), - [sym_super] = ACTIONS(1968), - [sym_crate] = ACTIONS(1968), - [sym_metavariable] = ACTIONS(1966), - [sym__raw_string_literal_start] = ACTIONS(1966), - [sym_float_literal] = ACTIONS(1966), + [STATE(509)] = { + [sym_line_comment] = STATE(509), + [sym_block_comment] = STATE(509), + [ts_builtin_sym_end] = ACTIONS(1964), + [sym_identifier] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_macro_rules_BANG] = ACTIONS(1964), + [anon_sym_LPAREN] = ACTIONS(1964), + [anon_sym_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACE] = ACTIONS(1964), + [anon_sym_RBRACE] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1964), + [anon_sym_u8] = ACTIONS(1966), + [anon_sym_i8] = ACTIONS(1966), + [anon_sym_u16] = ACTIONS(1966), + [anon_sym_i16] = ACTIONS(1966), + [anon_sym_u32] = ACTIONS(1966), + [anon_sym_i32] = ACTIONS(1966), + [anon_sym_u64] = ACTIONS(1966), + [anon_sym_i64] = ACTIONS(1966), + [anon_sym_u128] = ACTIONS(1966), + [anon_sym_i128] = ACTIONS(1966), + [anon_sym_isize] = ACTIONS(1966), + [anon_sym_usize] = ACTIONS(1966), + [anon_sym_f32] = ACTIONS(1966), + [anon_sym_f64] = ACTIONS(1966), + [anon_sym_bool] = ACTIONS(1966), + [anon_sym_str] = ACTIONS(1966), + [anon_sym_char] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1964), + [anon_sym_BANG] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1964), + [anon_sym_PIPE] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1964), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [anon_sym_COLON_COLON] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(1964), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_async] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_fn] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_gen] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_impl] = ACTIONS(1966), + [anon_sym_let] = ACTIONS(1966), + [anon_sym_loop] = ACTIONS(1966), + [anon_sym_match] = ACTIONS(1966), + [anon_sym_mod] = ACTIONS(1966), + [anon_sym_pub] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_trait] = ACTIONS(1966), + [anon_sym_type] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_unsafe] = ACTIONS(1966), + [anon_sym_use] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym_yield] = ACTIONS(1966), + [anon_sym_move] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1966), + [sym_integer_literal] = ACTIONS(1964), + [aux_sym_string_literal_token1] = ACTIONS(1964), + [sym_char_literal] = ACTIONS(1964), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1966), + [sym_super] = ACTIONS(1966), + [sym_crate] = ACTIONS(1966), + [sym_metavariable] = ACTIONS(1964), + [sym__raw_string_literal_start] = ACTIONS(1964), + [sym_float_literal] = ACTIONS(1964), }, - [STATE(533)] = { - [sym_line_comment] = STATE(533), - [sym_block_comment] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_macro_rules_BANG] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_u8] = ACTIONS(1972), - [anon_sym_i8] = ACTIONS(1972), - [anon_sym_u16] = ACTIONS(1972), - [anon_sym_i16] = ACTIONS(1972), - [anon_sym_u32] = ACTIONS(1972), - [anon_sym_i32] = ACTIONS(1972), - [anon_sym_u64] = ACTIONS(1972), - [anon_sym_i64] = ACTIONS(1972), - [anon_sym_u128] = ACTIONS(1972), - [anon_sym_i128] = ACTIONS(1972), - [anon_sym_isize] = ACTIONS(1972), - [anon_sym_usize] = ACTIONS(1972), - [anon_sym_f32] = ACTIONS(1972), - [anon_sym_f64] = ACTIONS(1972), - [anon_sym_bool] = ACTIONS(1972), - [anon_sym_str] = ACTIONS(1972), - [anon_sym_char] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_DOT_DOT] = ACTIONS(1970), - [anon_sym_COLON_COLON] = ACTIONS(1970), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_async] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_fn] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_gen] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_impl] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_mod] = ACTIONS(1972), - [anon_sym_pub] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_trait] = ACTIONS(1972), - [anon_sym_type] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_unsafe] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_yield] = ACTIONS(1972), - [anon_sym_move] = ACTIONS(1972), - [anon_sym_try] = ACTIONS(1972), - [sym_integer_literal] = ACTIONS(1970), - [aux_sym_string_literal_token1] = ACTIONS(1970), - [sym_char_literal] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1972), - [anon_sym_false] = ACTIONS(1972), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1972), - [sym_super] = ACTIONS(1972), - [sym_crate] = ACTIONS(1972), - [sym_metavariable] = ACTIONS(1970), - [sym__raw_string_literal_start] = ACTIONS(1970), - [sym_float_literal] = ACTIONS(1970), + [STATE(510)] = { + [sym_line_comment] = STATE(510), + [sym_block_comment] = STATE(510), + [ts_builtin_sym_end] = ACTIONS(1968), + [sym_identifier] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym_macro_rules_BANG] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_u8] = ACTIONS(1970), + [anon_sym_i8] = ACTIONS(1970), + [anon_sym_u16] = ACTIONS(1970), + [anon_sym_i16] = ACTIONS(1970), + [anon_sym_u32] = ACTIONS(1970), + [anon_sym_i32] = ACTIONS(1970), + [anon_sym_u64] = ACTIONS(1970), + [anon_sym_i64] = ACTIONS(1970), + [anon_sym_u128] = ACTIONS(1970), + [anon_sym_i128] = ACTIONS(1970), + [anon_sym_isize] = ACTIONS(1970), + [anon_sym_usize] = ACTIONS(1970), + [anon_sym_f32] = ACTIONS(1970), + [anon_sym_f64] = ACTIONS(1970), + [anon_sym_bool] = ACTIONS(1970), + [anon_sym_str] = ACTIONS(1970), + [anon_sym_char] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_async] = ACTIONS(1970), + [anon_sym_break] = ACTIONS(1970), + [anon_sym_const] = ACTIONS(1970), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_default] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1970), + [anon_sym_fn] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1970), + [anon_sym_gen] = ACTIONS(1970), + [anon_sym_if] = ACTIONS(1970), + [anon_sym_impl] = ACTIONS(1970), + [anon_sym_let] = ACTIONS(1970), + [anon_sym_loop] = ACTIONS(1970), + [anon_sym_match] = ACTIONS(1970), + [anon_sym_mod] = ACTIONS(1970), + [anon_sym_pub] = ACTIONS(1970), + [anon_sym_return] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_struct] = ACTIONS(1970), + [anon_sym_trait] = ACTIONS(1970), + [anon_sym_type] = ACTIONS(1970), + [anon_sym_union] = ACTIONS(1970), + [anon_sym_unsafe] = ACTIONS(1970), + [anon_sym_use] = ACTIONS(1970), + [anon_sym_while] = ACTIONS(1970), + [anon_sym_extern] = ACTIONS(1970), + [anon_sym_yield] = ACTIONS(1970), + [anon_sym_move] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1970), + [sym_integer_literal] = ACTIONS(1968), + [aux_sym_string_literal_token1] = ACTIONS(1968), + [sym_char_literal] = ACTIONS(1968), + [anon_sym_true] = ACTIONS(1970), + [anon_sym_false] = ACTIONS(1970), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1970), + [sym_super] = ACTIONS(1970), + [sym_crate] = ACTIONS(1970), + [sym_metavariable] = ACTIONS(1968), + [sym__raw_string_literal_start] = ACTIONS(1968), + [sym_float_literal] = ACTIONS(1968), }, - [STATE(534)] = { - [sym_line_comment] = STATE(534), - [sym_block_comment] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1974), - [sym_identifier] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_macro_rules_BANG] = ACTIONS(1974), - [anon_sym_LPAREN] = ACTIONS(1974), - [anon_sym_LBRACK] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1974), - [anon_sym_u8] = ACTIONS(1976), - [anon_sym_i8] = ACTIONS(1976), - [anon_sym_u16] = ACTIONS(1976), - [anon_sym_i16] = ACTIONS(1976), - [anon_sym_u32] = ACTIONS(1976), - [anon_sym_i32] = ACTIONS(1976), - [anon_sym_u64] = ACTIONS(1976), - [anon_sym_i64] = ACTIONS(1976), - [anon_sym_u128] = ACTIONS(1976), - [anon_sym_i128] = ACTIONS(1976), - [anon_sym_isize] = ACTIONS(1976), - [anon_sym_usize] = ACTIONS(1976), - [anon_sym_f32] = ACTIONS(1976), - [anon_sym_f64] = ACTIONS(1976), - [anon_sym_bool] = ACTIONS(1976), - [anon_sym_str] = ACTIONS(1976), - [anon_sym_char] = ACTIONS(1976), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_BANG] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_DOT_DOT] = ACTIONS(1974), - [anon_sym_COLON_COLON] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1974), - [anon_sym_SQUOTE] = ACTIONS(1976), - [anon_sym_async] = ACTIONS(1976), - [anon_sym_break] = ACTIONS(1976), - [anon_sym_const] = ACTIONS(1976), - [anon_sym_continue] = ACTIONS(1976), - [anon_sym_default] = ACTIONS(1976), - [anon_sym_enum] = ACTIONS(1976), - [anon_sym_fn] = ACTIONS(1976), - [anon_sym_for] = ACTIONS(1976), - [anon_sym_gen] = ACTIONS(1976), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_impl] = ACTIONS(1976), - [anon_sym_let] = ACTIONS(1976), - [anon_sym_loop] = ACTIONS(1976), - [anon_sym_match] = ACTIONS(1976), - [anon_sym_mod] = ACTIONS(1976), - [anon_sym_pub] = ACTIONS(1976), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_static] = ACTIONS(1976), - [anon_sym_struct] = ACTIONS(1976), - [anon_sym_trait] = ACTIONS(1976), - [anon_sym_type] = ACTIONS(1976), - [anon_sym_union] = ACTIONS(1976), - [anon_sym_unsafe] = ACTIONS(1976), - [anon_sym_use] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_extern] = ACTIONS(1976), - [anon_sym_yield] = ACTIONS(1976), - [anon_sym_move] = ACTIONS(1976), - [anon_sym_try] = ACTIONS(1976), - [sym_integer_literal] = ACTIONS(1974), - [aux_sym_string_literal_token1] = ACTIONS(1974), - [sym_char_literal] = ACTIONS(1974), - [anon_sym_true] = ACTIONS(1976), - [anon_sym_false] = ACTIONS(1976), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1976), - [sym_super] = ACTIONS(1976), - [sym_crate] = ACTIONS(1976), - [sym_metavariable] = ACTIONS(1974), - [sym__raw_string_literal_start] = ACTIONS(1974), - [sym_float_literal] = ACTIONS(1974), + [STATE(511)] = { + [sym_line_comment] = STATE(511), + [sym_block_comment] = STATE(511), + [ts_builtin_sym_end] = ACTIONS(1972), + [sym_identifier] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_macro_rules_BANG] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1972), + [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_u8] = ACTIONS(1974), + [anon_sym_i8] = ACTIONS(1974), + [anon_sym_u16] = ACTIONS(1974), + [anon_sym_i16] = ACTIONS(1974), + [anon_sym_u32] = ACTIONS(1974), + [anon_sym_i32] = ACTIONS(1974), + [anon_sym_u64] = ACTIONS(1974), + [anon_sym_i64] = ACTIONS(1974), + [anon_sym_u128] = ACTIONS(1974), + [anon_sym_i128] = ACTIONS(1974), + [anon_sym_isize] = ACTIONS(1974), + [anon_sym_usize] = ACTIONS(1974), + [anon_sym_f32] = ACTIONS(1974), + [anon_sym_f64] = ACTIONS(1974), + [anon_sym_bool] = ACTIONS(1974), + [anon_sym_str] = ACTIONS(1974), + [anon_sym_char] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(1974), + [anon_sym_break] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_continue] = ACTIONS(1974), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_fn] = ACTIONS(1974), + [anon_sym_for] = ACTIONS(1974), + [anon_sym_gen] = ACTIONS(1974), + [anon_sym_if] = ACTIONS(1974), + [anon_sym_impl] = ACTIONS(1974), + [anon_sym_let] = ACTIONS(1974), + [anon_sym_loop] = ACTIONS(1974), + [anon_sym_match] = ACTIONS(1974), + [anon_sym_mod] = ACTIONS(1974), + [anon_sym_pub] = ACTIONS(1974), + [anon_sym_return] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_trait] = ACTIONS(1974), + [anon_sym_type] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_unsafe] = ACTIONS(1974), + [anon_sym_use] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym_yield] = ACTIONS(1974), + [anon_sym_move] = ACTIONS(1974), + [anon_sym_try] = ACTIONS(1974), + [sym_integer_literal] = ACTIONS(1972), + [aux_sym_string_literal_token1] = ACTIONS(1972), + [sym_char_literal] = ACTIONS(1972), + [anon_sym_true] = ACTIONS(1974), + [anon_sym_false] = ACTIONS(1974), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1974), + [sym_super] = ACTIONS(1974), + [sym_crate] = ACTIONS(1974), + [sym_metavariable] = ACTIONS(1972), + [sym__raw_string_literal_start] = ACTIONS(1972), + [sym_float_literal] = ACTIONS(1972), }, - [STATE(535)] = { - [sym_line_comment] = STATE(535), - [sym_block_comment] = STATE(535), - [ts_builtin_sym_end] = ACTIONS(1978), - [sym_identifier] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_macro_rules_BANG] = ACTIONS(1978), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_STAR] = ACTIONS(1978), - [anon_sym_u8] = ACTIONS(1980), - [anon_sym_i8] = ACTIONS(1980), - [anon_sym_u16] = ACTIONS(1980), - [anon_sym_i16] = ACTIONS(1980), - [anon_sym_u32] = ACTIONS(1980), - [anon_sym_i32] = ACTIONS(1980), - [anon_sym_u64] = ACTIONS(1980), - [anon_sym_i64] = ACTIONS(1980), - [anon_sym_u128] = ACTIONS(1980), - [anon_sym_i128] = ACTIONS(1980), - [anon_sym_isize] = ACTIONS(1980), - [anon_sym_usize] = ACTIONS(1980), - [anon_sym_f32] = ACTIONS(1980), - [anon_sym_f64] = ACTIONS(1980), - [anon_sym_bool] = ACTIONS(1980), - [anon_sym_str] = ACTIONS(1980), - [anon_sym_char] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1978), - [anon_sym_BANG] = ACTIONS(1978), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_DOT_DOT] = ACTIONS(1978), - [anon_sym_COLON_COLON] = ACTIONS(1978), - [anon_sym_POUND] = ACTIONS(1978), - [anon_sym_SQUOTE] = ACTIONS(1980), - [anon_sym_async] = ACTIONS(1980), - [anon_sym_break] = ACTIONS(1980), - [anon_sym_const] = ACTIONS(1980), - [anon_sym_continue] = ACTIONS(1980), - [anon_sym_default] = ACTIONS(1980), - [anon_sym_enum] = ACTIONS(1980), - [anon_sym_fn] = ACTIONS(1980), - [anon_sym_for] = ACTIONS(1980), - [anon_sym_gen] = ACTIONS(1980), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_impl] = ACTIONS(1980), - [anon_sym_let] = ACTIONS(1980), - [anon_sym_loop] = ACTIONS(1980), - [anon_sym_match] = ACTIONS(1980), - [anon_sym_mod] = ACTIONS(1980), - [anon_sym_pub] = ACTIONS(1980), - [anon_sym_return] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_struct] = ACTIONS(1980), - [anon_sym_trait] = ACTIONS(1980), - [anon_sym_type] = ACTIONS(1980), - [anon_sym_union] = ACTIONS(1980), - [anon_sym_unsafe] = ACTIONS(1980), - [anon_sym_use] = ACTIONS(1980), - [anon_sym_while] = ACTIONS(1980), - [anon_sym_extern] = ACTIONS(1980), - [anon_sym_yield] = ACTIONS(1980), - [anon_sym_move] = ACTIONS(1980), - [anon_sym_try] = ACTIONS(1980), - [sym_integer_literal] = ACTIONS(1978), - [aux_sym_string_literal_token1] = ACTIONS(1978), - [sym_char_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1980), - [anon_sym_false] = ACTIONS(1980), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1980), - [sym_super] = ACTIONS(1980), - [sym_crate] = ACTIONS(1980), - [sym_metavariable] = ACTIONS(1978), - [sym__raw_string_literal_start] = ACTIONS(1978), - [sym_float_literal] = ACTIONS(1978), + [STATE(512)] = { + [sym_line_comment] = STATE(512), + [sym_block_comment] = STATE(512), + [ts_builtin_sym_end] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_macro_rules_BANG] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_LBRACK] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_u8] = ACTIONS(1978), + [anon_sym_i8] = ACTIONS(1978), + [anon_sym_u16] = ACTIONS(1978), + [anon_sym_i16] = ACTIONS(1978), + [anon_sym_u32] = ACTIONS(1978), + [anon_sym_i32] = ACTIONS(1978), + [anon_sym_u64] = ACTIONS(1978), + [anon_sym_i64] = ACTIONS(1978), + [anon_sym_u128] = ACTIONS(1978), + [anon_sym_i128] = ACTIONS(1978), + [anon_sym_isize] = ACTIONS(1978), + [anon_sym_usize] = ACTIONS(1978), + [anon_sym_f32] = ACTIONS(1978), + [anon_sym_f64] = ACTIONS(1978), + [anon_sym_bool] = ACTIONS(1978), + [anon_sym_str] = ACTIONS(1978), + [anon_sym_char] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_BANG] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_PIPE] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(1976), + [anon_sym_DOT_DOT] = ACTIONS(1976), + [anon_sym_COLON_COLON] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_async] = ACTIONS(1978), + [anon_sym_break] = ACTIONS(1978), + [anon_sym_const] = ACTIONS(1978), + [anon_sym_continue] = ACTIONS(1978), + [anon_sym_default] = ACTIONS(1978), + [anon_sym_enum] = ACTIONS(1978), + [anon_sym_fn] = ACTIONS(1978), + [anon_sym_for] = ACTIONS(1978), + [anon_sym_gen] = ACTIONS(1978), + [anon_sym_if] = ACTIONS(1978), + [anon_sym_impl] = ACTIONS(1978), + [anon_sym_let] = ACTIONS(1978), + [anon_sym_loop] = ACTIONS(1978), + [anon_sym_match] = ACTIONS(1978), + [anon_sym_mod] = ACTIONS(1978), + [anon_sym_pub] = ACTIONS(1978), + [anon_sym_return] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1978), + [anon_sym_struct] = ACTIONS(1978), + [anon_sym_trait] = ACTIONS(1978), + [anon_sym_type] = ACTIONS(1978), + [anon_sym_union] = ACTIONS(1978), + [anon_sym_unsafe] = ACTIONS(1978), + [anon_sym_use] = ACTIONS(1978), + [anon_sym_while] = ACTIONS(1978), + [anon_sym_extern] = ACTIONS(1978), + [anon_sym_yield] = ACTIONS(1978), + [anon_sym_move] = ACTIONS(1978), + [anon_sym_try] = ACTIONS(1978), + [sym_integer_literal] = ACTIONS(1976), + [aux_sym_string_literal_token1] = ACTIONS(1976), + [sym_char_literal] = ACTIONS(1976), + [anon_sym_true] = ACTIONS(1978), + [anon_sym_false] = ACTIONS(1978), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1978), + [sym_super] = ACTIONS(1978), + [sym_crate] = ACTIONS(1978), + [sym_metavariable] = ACTIONS(1976), + [sym__raw_string_literal_start] = ACTIONS(1976), + [sym_float_literal] = ACTIONS(1976), }, - [STATE(536)] = { - [sym_line_comment] = STATE(536), - [sym_block_comment] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_macro_rules_BANG] = ACTIONS(1982), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_STAR] = ACTIONS(1982), - [anon_sym_u8] = ACTIONS(1984), - [anon_sym_i8] = ACTIONS(1984), - [anon_sym_u16] = ACTIONS(1984), - [anon_sym_i16] = ACTIONS(1984), - [anon_sym_u32] = ACTIONS(1984), - [anon_sym_i32] = ACTIONS(1984), - [anon_sym_u64] = ACTIONS(1984), - [anon_sym_i64] = ACTIONS(1984), - [anon_sym_u128] = ACTIONS(1984), - [anon_sym_i128] = ACTIONS(1984), - [anon_sym_isize] = ACTIONS(1984), - [anon_sym_usize] = ACTIONS(1984), - [anon_sym_f32] = ACTIONS(1984), - [anon_sym_f64] = ACTIONS(1984), - [anon_sym_bool] = ACTIONS(1984), - [anon_sym_str] = ACTIONS(1984), - [anon_sym_char] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_BANG] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_DOT_DOT] = ACTIONS(1982), - [anon_sym_COLON_COLON] = ACTIONS(1982), - [anon_sym_POUND] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [anon_sym_fn] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_gen] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_impl] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_loop] = ACTIONS(1984), - [anon_sym_match] = ACTIONS(1984), - [anon_sym_mod] = ACTIONS(1984), - [anon_sym_pub] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_struct] = ACTIONS(1984), - [anon_sym_trait] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_union] = ACTIONS(1984), - [anon_sym_unsafe] = ACTIONS(1984), - [anon_sym_use] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_extern] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_move] = ACTIONS(1984), - [anon_sym_try] = ACTIONS(1984), - [sym_integer_literal] = ACTIONS(1982), - [aux_sym_string_literal_token1] = ACTIONS(1982), - [sym_char_literal] = ACTIONS(1982), - [anon_sym_true] = ACTIONS(1984), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_crate] = ACTIONS(1984), - [sym_metavariable] = ACTIONS(1982), - [sym__raw_string_literal_start] = ACTIONS(1982), - [sym_float_literal] = ACTIONS(1982), + [STATE(513)] = { + [sym_line_comment] = STATE(513), + [sym_block_comment] = STATE(513), + [ts_builtin_sym_end] = ACTIONS(1980), + [sym_identifier] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym_macro_rules_BANG] = ACTIONS(1980), + [anon_sym_LPAREN] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1980), + [anon_sym_RBRACE] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1980), + [anon_sym_u8] = ACTIONS(1982), + [anon_sym_i8] = ACTIONS(1982), + [anon_sym_u16] = ACTIONS(1982), + [anon_sym_i16] = ACTIONS(1982), + [anon_sym_u32] = ACTIONS(1982), + [anon_sym_i32] = ACTIONS(1982), + [anon_sym_u64] = ACTIONS(1982), + [anon_sym_i64] = ACTIONS(1982), + [anon_sym_u128] = ACTIONS(1982), + [anon_sym_i128] = ACTIONS(1982), + [anon_sym_isize] = ACTIONS(1982), + [anon_sym_usize] = ACTIONS(1982), + [anon_sym_f32] = ACTIONS(1982), + [anon_sym_f64] = ACTIONS(1982), + [anon_sym_bool] = ACTIONS(1982), + [anon_sym_str] = ACTIONS(1982), + [anon_sym_char] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1980), + [anon_sym_BANG] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_DOT_DOT] = ACTIONS(1980), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_POUND] = ACTIONS(1980), + [anon_sym_SQUOTE] = ACTIONS(1982), + [anon_sym_async] = ACTIONS(1982), + [anon_sym_break] = ACTIONS(1982), + [anon_sym_const] = ACTIONS(1982), + [anon_sym_continue] = ACTIONS(1982), + [anon_sym_default] = ACTIONS(1982), + [anon_sym_enum] = ACTIONS(1982), + [anon_sym_fn] = ACTIONS(1982), + [anon_sym_for] = ACTIONS(1982), + [anon_sym_gen] = ACTIONS(1982), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_impl] = ACTIONS(1982), + [anon_sym_let] = ACTIONS(1982), + [anon_sym_loop] = ACTIONS(1982), + [anon_sym_match] = ACTIONS(1982), + [anon_sym_mod] = ACTIONS(1982), + [anon_sym_pub] = ACTIONS(1982), + [anon_sym_return] = ACTIONS(1982), + [anon_sym_static] = ACTIONS(1982), + [anon_sym_struct] = ACTIONS(1982), + [anon_sym_trait] = ACTIONS(1982), + [anon_sym_type] = ACTIONS(1982), + [anon_sym_union] = ACTIONS(1982), + [anon_sym_unsafe] = ACTIONS(1982), + [anon_sym_use] = ACTIONS(1982), + [anon_sym_while] = ACTIONS(1982), + [anon_sym_extern] = ACTIONS(1982), + [anon_sym_yield] = ACTIONS(1982), + [anon_sym_move] = ACTIONS(1982), + [anon_sym_try] = ACTIONS(1982), + [sym_integer_literal] = ACTIONS(1980), + [aux_sym_string_literal_token1] = ACTIONS(1980), + [sym_char_literal] = ACTIONS(1980), + [anon_sym_true] = ACTIONS(1982), + [anon_sym_false] = ACTIONS(1982), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1982), + [sym_super] = ACTIONS(1982), + [sym_crate] = ACTIONS(1982), + [sym_metavariable] = ACTIONS(1980), + [sym__raw_string_literal_start] = ACTIONS(1980), + [sym_float_literal] = ACTIONS(1980), }, - [STATE(537)] = { - [sym_line_comment] = STATE(537), - [sym_block_comment] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_macro_rules_BANG] = ACTIONS(1986), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_u8] = ACTIONS(1988), - [anon_sym_i8] = ACTIONS(1988), - [anon_sym_u16] = ACTIONS(1988), - [anon_sym_i16] = ACTIONS(1988), - [anon_sym_u32] = ACTIONS(1988), - [anon_sym_i32] = ACTIONS(1988), - [anon_sym_u64] = ACTIONS(1988), - [anon_sym_i64] = ACTIONS(1988), - [anon_sym_u128] = ACTIONS(1988), - [anon_sym_i128] = ACTIONS(1988), - [anon_sym_isize] = ACTIONS(1988), - [anon_sym_usize] = ACTIONS(1988), - [anon_sym_f32] = ACTIONS(1988), - [anon_sym_f64] = ACTIONS(1988), - [anon_sym_bool] = ACTIONS(1988), - [anon_sym_str] = ACTIONS(1988), - [anon_sym_char] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_DOT_DOT] = ACTIONS(1986), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym_POUND] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_fn] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_gen] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_impl] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_loop] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1988), - [anon_sym_mod] = ACTIONS(1988), - [anon_sym_pub] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_trait] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_unsafe] = ACTIONS(1988), - [anon_sym_use] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_yield] = ACTIONS(1988), - [anon_sym_move] = ACTIONS(1988), - [anon_sym_try] = ACTIONS(1988), - [sym_integer_literal] = ACTIONS(1986), - [aux_sym_string_literal_token1] = ACTIONS(1986), - [sym_char_literal] = ACTIONS(1986), - [anon_sym_true] = ACTIONS(1988), - [anon_sym_false] = ACTIONS(1988), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1988), - [sym_super] = ACTIONS(1988), - [sym_crate] = ACTIONS(1988), - [sym_metavariable] = ACTIONS(1986), - [sym__raw_string_literal_start] = ACTIONS(1986), - [sym_float_literal] = ACTIONS(1986), + [STATE(514)] = { + [sym_line_comment] = STATE(514), + [sym_block_comment] = STATE(514), + [ts_builtin_sym_end] = ACTIONS(1984), + [sym_identifier] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_macro_rules_BANG] = ACTIONS(1984), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(1984), + [anon_sym_u8] = ACTIONS(1986), + [anon_sym_i8] = ACTIONS(1986), + [anon_sym_u16] = ACTIONS(1986), + [anon_sym_i16] = ACTIONS(1986), + [anon_sym_u32] = ACTIONS(1986), + [anon_sym_i32] = ACTIONS(1986), + [anon_sym_u64] = ACTIONS(1986), + [anon_sym_i64] = ACTIONS(1986), + [anon_sym_u128] = ACTIONS(1986), + [anon_sym_i128] = ACTIONS(1986), + [anon_sym_isize] = ACTIONS(1986), + [anon_sym_usize] = ACTIONS(1986), + [anon_sym_f32] = ACTIONS(1986), + [anon_sym_f64] = ACTIONS(1986), + [anon_sym_bool] = ACTIONS(1986), + [anon_sym_str] = ACTIONS(1986), + [anon_sym_char] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_AMP] = ACTIONS(1984), + [anon_sym_PIPE] = ACTIONS(1984), + [anon_sym_LT] = ACTIONS(1984), + [anon_sym_DOT_DOT] = ACTIONS(1984), + [anon_sym_COLON_COLON] = ACTIONS(1984), + [anon_sym_POUND] = ACTIONS(1984), + [anon_sym_SQUOTE] = ACTIONS(1986), + [anon_sym_async] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_const] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1986), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_fn] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_gen] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_impl] = ACTIONS(1986), + [anon_sym_let] = ACTIONS(1986), + [anon_sym_loop] = ACTIONS(1986), + [anon_sym_match] = ACTIONS(1986), + [anon_sym_mod] = ACTIONS(1986), + [anon_sym_pub] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1986), + [anon_sym_struct] = ACTIONS(1986), + [anon_sym_trait] = ACTIONS(1986), + [anon_sym_type] = ACTIONS(1986), + [anon_sym_union] = ACTIONS(1986), + [anon_sym_unsafe] = ACTIONS(1986), + [anon_sym_use] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_yield] = ACTIONS(1986), + [anon_sym_move] = ACTIONS(1986), + [anon_sym_try] = ACTIONS(1986), + [sym_integer_literal] = ACTIONS(1984), + [aux_sym_string_literal_token1] = ACTIONS(1984), + [sym_char_literal] = ACTIONS(1984), + [anon_sym_true] = ACTIONS(1986), + [anon_sym_false] = ACTIONS(1986), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1986), + [sym_super] = ACTIONS(1986), + [sym_crate] = ACTIONS(1986), + [sym_metavariable] = ACTIONS(1984), + [sym__raw_string_literal_start] = ACTIONS(1984), + [sym_float_literal] = ACTIONS(1984), }, - [STATE(538)] = { - [sym_line_comment] = STATE(538), - [sym_block_comment] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1992), - [anon_sym_SEMI] = ACTIONS(1990), - [anon_sym_macro_rules_BANG] = ACTIONS(1990), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_RBRACE] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1990), - [anon_sym_u8] = ACTIONS(1992), - [anon_sym_i8] = ACTIONS(1992), - [anon_sym_u16] = ACTIONS(1992), - [anon_sym_i16] = ACTIONS(1992), - [anon_sym_u32] = ACTIONS(1992), - [anon_sym_i32] = ACTIONS(1992), - [anon_sym_u64] = ACTIONS(1992), - [anon_sym_i64] = ACTIONS(1992), - [anon_sym_u128] = ACTIONS(1992), - [anon_sym_i128] = ACTIONS(1992), - [anon_sym_isize] = ACTIONS(1992), - [anon_sym_usize] = ACTIONS(1992), - [anon_sym_f32] = ACTIONS(1992), - [anon_sym_f64] = ACTIONS(1992), - [anon_sym_bool] = ACTIONS(1992), - [anon_sym_str] = ACTIONS(1992), - [anon_sym_char] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_BANG] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1990), - [anon_sym_PIPE] = ACTIONS(1990), - [anon_sym_LT] = ACTIONS(1990), - [anon_sym_DOT_DOT] = ACTIONS(1990), - [anon_sym_COLON_COLON] = ACTIONS(1990), - [anon_sym_POUND] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_async] = ACTIONS(1992), - [anon_sym_break] = ACTIONS(1992), - [anon_sym_const] = ACTIONS(1992), - [anon_sym_continue] = ACTIONS(1992), - [anon_sym_default] = ACTIONS(1992), - [anon_sym_enum] = ACTIONS(1992), - [anon_sym_fn] = ACTIONS(1992), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_gen] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_impl] = ACTIONS(1992), - [anon_sym_let] = ACTIONS(1992), - [anon_sym_loop] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1992), - [anon_sym_mod] = ACTIONS(1992), - [anon_sym_pub] = ACTIONS(1992), - [anon_sym_return] = ACTIONS(1992), - [anon_sym_static] = ACTIONS(1992), - [anon_sym_struct] = ACTIONS(1992), - [anon_sym_trait] = ACTIONS(1992), - [anon_sym_type] = ACTIONS(1992), - [anon_sym_union] = ACTIONS(1992), - [anon_sym_unsafe] = ACTIONS(1992), - [anon_sym_use] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1992), - [anon_sym_yield] = ACTIONS(1992), - [anon_sym_move] = ACTIONS(1992), - [anon_sym_try] = ACTIONS(1992), - [sym_integer_literal] = ACTIONS(1990), - [aux_sym_string_literal_token1] = ACTIONS(1990), - [sym_char_literal] = ACTIONS(1990), - [anon_sym_true] = ACTIONS(1992), - [anon_sym_false] = ACTIONS(1992), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1992), - [sym_super] = ACTIONS(1992), - [sym_crate] = ACTIONS(1992), - [sym_metavariable] = ACTIONS(1990), - [sym__raw_string_literal_start] = ACTIONS(1990), - [sym_float_literal] = ACTIONS(1990), + [STATE(515)] = { + [sym_line_comment] = STATE(515), + [sym_block_comment] = STATE(515), + [ts_builtin_sym_end] = ACTIONS(1988), + [sym_identifier] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_macro_rules_BANG] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_u8] = ACTIONS(1990), + [anon_sym_i8] = ACTIONS(1990), + [anon_sym_u16] = ACTIONS(1990), + [anon_sym_i16] = ACTIONS(1990), + [anon_sym_u32] = ACTIONS(1990), + [anon_sym_i32] = ACTIONS(1990), + [anon_sym_u64] = ACTIONS(1990), + [anon_sym_i64] = ACTIONS(1990), + [anon_sym_u128] = ACTIONS(1990), + [anon_sym_i128] = ACTIONS(1990), + [anon_sym_isize] = ACTIONS(1990), + [anon_sym_usize] = ACTIONS(1990), + [anon_sym_f32] = ACTIONS(1990), + [anon_sym_f64] = ACTIONS(1990), + [anon_sym_bool] = ACTIONS(1990), + [anon_sym_str] = ACTIONS(1990), + [anon_sym_char] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_PIPE] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_DOT_DOT] = ACTIONS(1988), + [anon_sym_COLON_COLON] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(1988), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_async] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_default] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_fn] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_gen] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_impl] = ACTIONS(1990), + [anon_sym_let] = ACTIONS(1990), + [anon_sym_loop] = ACTIONS(1990), + [anon_sym_match] = ACTIONS(1990), + [anon_sym_mod] = ACTIONS(1990), + [anon_sym_pub] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_trait] = ACTIONS(1990), + [anon_sym_type] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_unsafe] = ACTIONS(1990), + [anon_sym_use] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_yield] = ACTIONS(1990), + [anon_sym_move] = ACTIONS(1990), + [anon_sym_try] = ACTIONS(1990), + [sym_integer_literal] = ACTIONS(1988), + [aux_sym_string_literal_token1] = ACTIONS(1988), + [sym_char_literal] = ACTIONS(1988), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1990), + [sym_super] = ACTIONS(1990), + [sym_crate] = ACTIONS(1990), + [sym_metavariable] = ACTIONS(1988), + [sym__raw_string_literal_start] = ACTIONS(1988), + [sym_float_literal] = ACTIONS(1988), }, - [STATE(539)] = { - [sym_line_comment] = STATE(539), - [sym_block_comment] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_macro_rules_BANG] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1994), - [anon_sym_u8] = ACTIONS(1996), - [anon_sym_i8] = ACTIONS(1996), - [anon_sym_u16] = ACTIONS(1996), - [anon_sym_i16] = ACTIONS(1996), - [anon_sym_u32] = ACTIONS(1996), - [anon_sym_i32] = ACTIONS(1996), - [anon_sym_u64] = ACTIONS(1996), - [anon_sym_i64] = ACTIONS(1996), - [anon_sym_u128] = ACTIONS(1996), - [anon_sym_i128] = ACTIONS(1996), - [anon_sym_isize] = ACTIONS(1996), - [anon_sym_usize] = ACTIONS(1996), - [anon_sym_f32] = ACTIONS(1996), - [anon_sym_f64] = ACTIONS(1996), - [anon_sym_bool] = ACTIONS(1996), - [anon_sym_str] = ACTIONS(1996), - [anon_sym_char] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_PIPE] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(1994), - [anon_sym_DOT_DOT] = ACTIONS(1994), - [anon_sym_COLON_COLON] = ACTIONS(1994), - [anon_sym_POUND] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_async] = ACTIONS(1996), - [anon_sym_break] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(1996), - [anon_sym_default] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1996), - [anon_sym_fn] = ACTIONS(1996), - [anon_sym_for] = ACTIONS(1996), - [anon_sym_gen] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_impl] = ACTIONS(1996), - [anon_sym_let] = ACTIONS(1996), - [anon_sym_loop] = ACTIONS(1996), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_mod] = ACTIONS(1996), - [anon_sym_pub] = ACTIONS(1996), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1996), - [anon_sym_struct] = ACTIONS(1996), - [anon_sym_trait] = ACTIONS(1996), - [anon_sym_type] = ACTIONS(1996), - [anon_sym_union] = ACTIONS(1996), - [anon_sym_unsafe] = ACTIONS(1996), - [anon_sym_use] = ACTIONS(1996), - [anon_sym_while] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1996), - [anon_sym_yield] = ACTIONS(1996), - [anon_sym_move] = ACTIONS(1996), - [anon_sym_try] = ACTIONS(1996), - [sym_integer_literal] = ACTIONS(1994), - [aux_sym_string_literal_token1] = ACTIONS(1994), - [sym_char_literal] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1996), - [sym_super] = ACTIONS(1996), - [sym_crate] = ACTIONS(1996), - [sym_metavariable] = ACTIONS(1994), - [sym__raw_string_literal_start] = ACTIONS(1994), - [sym_float_literal] = ACTIONS(1994), + [STATE(516)] = { + [sym_line_comment] = STATE(516), + [sym_block_comment] = STATE(516), + [ts_builtin_sym_end] = ACTIONS(1992), + [sym_identifier] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_macro_rules_BANG] = ACTIONS(1992), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1992), + [anon_sym_u8] = ACTIONS(1994), + [anon_sym_i8] = ACTIONS(1994), + [anon_sym_u16] = ACTIONS(1994), + [anon_sym_i16] = ACTIONS(1994), + [anon_sym_u32] = ACTIONS(1994), + [anon_sym_i32] = ACTIONS(1994), + [anon_sym_u64] = ACTIONS(1994), + [anon_sym_i64] = ACTIONS(1994), + [anon_sym_u128] = ACTIONS(1994), + [anon_sym_i128] = ACTIONS(1994), + [anon_sym_isize] = ACTIONS(1994), + [anon_sym_usize] = ACTIONS(1994), + [anon_sym_f32] = ACTIONS(1994), + [anon_sym_f64] = ACTIONS(1994), + [anon_sym_bool] = ACTIONS(1994), + [anon_sym_str] = ACTIONS(1994), + [anon_sym_char] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_BANG] = ACTIONS(1992), + [anon_sym_AMP] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1992), + [anon_sym_LT] = ACTIONS(1992), + [anon_sym_DOT_DOT] = ACTIONS(1992), + [anon_sym_COLON_COLON] = ACTIONS(1992), + [anon_sym_POUND] = ACTIONS(1992), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_async] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_enum] = ACTIONS(1994), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_gen] = ACTIONS(1994), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_impl] = ACTIONS(1994), + [anon_sym_let] = ACTIONS(1994), + [anon_sym_loop] = ACTIONS(1994), + [anon_sym_match] = ACTIONS(1994), + [anon_sym_mod] = ACTIONS(1994), + [anon_sym_pub] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1994), + [anon_sym_struct] = ACTIONS(1994), + [anon_sym_trait] = ACTIONS(1994), + [anon_sym_type] = ACTIONS(1994), + [anon_sym_union] = ACTIONS(1994), + [anon_sym_unsafe] = ACTIONS(1994), + [anon_sym_use] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [anon_sym_extern] = ACTIONS(1994), + [anon_sym_yield] = ACTIONS(1994), + [anon_sym_move] = ACTIONS(1994), + [anon_sym_try] = ACTIONS(1994), + [sym_integer_literal] = ACTIONS(1992), + [aux_sym_string_literal_token1] = ACTIONS(1992), + [sym_char_literal] = ACTIONS(1992), + [anon_sym_true] = ACTIONS(1994), + [anon_sym_false] = ACTIONS(1994), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1994), + [sym_super] = ACTIONS(1994), + [sym_crate] = ACTIONS(1994), + [sym_metavariable] = ACTIONS(1992), + [sym__raw_string_literal_start] = ACTIONS(1992), + [sym_float_literal] = ACTIONS(1992), }, - [STATE(540)] = { - [sym_line_comment] = STATE(540), - [sym_block_comment] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(1998), - [sym_identifier] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(1998), - [anon_sym_macro_rules_BANG] = ACTIONS(1998), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(1998), - [anon_sym_RBRACE] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(1998), - [anon_sym_u8] = ACTIONS(2000), - [anon_sym_i8] = ACTIONS(2000), - [anon_sym_u16] = ACTIONS(2000), - [anon_sym_i16] = ACTIONS(2000), - [anon_sym_u32] = ACTIONS(2000), - [anon_sym_i32] = ACTIONS(2000), - [anon_sym_u64] = ACTIONS(2000), - [anon_sym_i64] = ACTIONS(2000), - [anon_sym_u128] = ACTIONS(2000), - [anon_sym_i128] = ACTIONS(2000), - [anon_sym_isize] = ACTIONS(2000), - [anon_sym_usize] = ACTIONS(2000), - [anon_sym_f32] = ACTIONS(2000), - [anon_sym_f64] = ACTIONS(2000), - [anon_sym_bool] = ACTIONS(2000), - [anon_sym_str] = ACTIONS(2000), - [anon_sym_char] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1998), - [anon_sym_AMP] = ACTIONS(1998), - [anon_sym_PIPE] = ACTIONS(1998), - [anon_sym_LT] = ACTIONS(1998), - [anon_sym_DOT_DOT] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_POUND] = ACTIONS(1998), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_async] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_default] = ACTIONS(2000), - [anon_sym_enum] = ACTIONS(2000), - [anon_sym_fn] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_gen] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_impl] = ACTIONS(2000), - [anon_sym_let] = ACTIONS(2000), - [anon_sym_loop] = ACTIONS(2000), - [anon_sym_match] = ACTIONS(2000), - [anon_sym_mod] = ACTIONS(2000), - [anon_sym_pub] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2000), - [anon_sym_trait] = ACTIONS(2000), - [anon_sym_type] = ACTIONS(2000), - [anon_sym_union] = ACTIONS(2000), - [anon_sym_unsafe] = ACTIONS(2000), - [anon_sym_use] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [anon_sym_extern] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(2000), - [anon_sym_move] = ACTIONS(2000), - [anon_sym_try] = ACTIONS(2000), - [sym_integer_literal] = ACTIONS(1998), - [aux_sym_string_literal_token1] = ACTIONS(1998), - [sym_char_literal] = ACTIONS(1998), - [anon_sym_true] = ACTIONS(2000), - [anon_sym_false] = ACTIONS(2000), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2000), - [sym_super] = ACTIONS(2000), - [sym_crate] = ACTIONS(2000), - [sym_metavariable] = ACTIONS(1998), - [sym__raw_string_literal_start] = ACTIONS(1998), - [sym_float_literal] = ACTIONS(1998), + [STATE(517)] = { + [sym_line_comment] = STATE(517), + [sym_block_comment] = STATE(517), + [ts_builtin_sym_end] = ACTIONS(1996), + [sym_identifier] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_macro_rules_BANG] = ACTIONS(1996), + [anon_sym_LPAREN] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1996), + [anon_sym_RBRACE] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1996), + [anon_sym_u8] = ACTIONS(1998), + [anon_sym_i8] = ACTIONS(1998), + [anon_sym_u16] = ACTIONS(1998), + [anon_sym_i16] = ACTIONS(1998), + [anon_sym_u32] = ACTIONS(1998), + [anon_sym_i32] = ACTIONS(1998), + [anon_sym_u64] = ACTIONS(1998), + [anon_sym_i64] = ACTIONS(1998), + [anon_sym_u128] = ACTIONS(1998), + [anon_sym_i128] = ACTIONS(1998), + [anon_sym_isize] = ACTIONS(1998), + [anon_sym_usize] = ACTIONS(1998), + [anon_sym_f32] = ACTIONS(1998), + [anon_sym_f64] = ACTIONS(1998), + [anon_sym_bool] = ACTIONS(1998), + [anon_sym_str] = ACTIONS(1998), + [anon_sym_char] = ACTIONS(1998), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_BANG] = ACTIONS(1996), + [anon_sym_AMP] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(1996), + [anon_sym_LT] = ACTIONS(1996), + [anon_sym_DOT_DOT] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1996), + [anon_sym_POUND] = ACTIONS(1996), + [anon_sym_SQUOTE] = ACTIONS(1998), + [anon_sym_async] = ACTIONS(1998), + [anon_sym_break] = ACTIONS(1998), + [anon_sym_const] = ACTIONS(1998), + [anon_sym_continue] = ACTIONS(1998), + [anon_sym_default] = ACTIONS(1998), + [anon_sym_enum] = ACTIONS(1998), + [anon_sym_fn] = ACTIONS(1998), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_gen] = ACTIONS(1998), + [anon_sym_if] = ACTIONS(1998), + [anon_sym_impl] = ACTIONS(1998), + [anon_sym_let] = ACTIONS(1998), + [anon_sym_loop] = ACTIONS(1998), + [anon_sym_match] = ACTIONS(1998), + [anon_sym_mod] = ACTIONS(1998), + [anon_sym_pub] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(1998), + [anon_sym_static] = ACTIONS(1998), + [anon_sym_struct] = ACTIONS(1998), + [anon_sym_trait] = ACTIONS(1998), + [anon_sym_type] = ACTIONS(1998), + [anon_sym_union] = ACTIONS(1998), + [anon_sym_unsafe] = ACTIONS(1998), + [anon_sym_use] = ACTIONS(1998), + [anon_sym_while] = ACTIONS(1998), + [anon_sym_extern] = ACTIONS(1998), + [anon_sym_yield] = ACTIONS(1998), + [anon_sym_move] = ACTIONS(1998), + [anon_sym_try] = ACTIONS(1998), + [sym_integer_literal] = ACTIONS(1996), + [aux_sym_string_literal_token1] = ACTIONS(1996), + [sym_char_literal] = ACTIONS(1996), + [anon_sym_true] = ACTIONS(1998), + [anon_sym_false] = ACTIONS(1998), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1998), + [sym_super] = ACTIONS(1998), + [sym_crate] = ACTIONS(1998), + [sym_metavariable] = ACTIONS(1996), + [sym__raw_string_literal_start] = ACTIONS(1996), + [sym_float_literal] = ACTIONS(1996), }, - [STATE(541)] = { - [sym_line_comment] = STATE(541), - [sym_block_comment] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(2002), - [sym_identifier] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_macro_rules_BANG] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_u8] = ACTIONS(2004), - [anon_sym_i8] = ACTIONS(2004), - [anon_sym_u16] = ACTIONS(2004), - [anon_sym_i16] = ACTIONS(2004), - [anon_sym_u32] = ACTIONS(2004), - [anon_sym_i32] = ACTIONS(2004), - [anon_sym_u64] = ACTIONS(2004), - [anon_sym_i64] = ACTIONS(2004), - [anon_sym_u128] = ACTIONS(2004), - [anon_sym_i128] = ACTIONS(2004), - [anon_sym_isize] = ACTIONS(2004), - [anon_sym_usize] = ACTIONS(2004), - [anon_sym_f32] = ACTIONS(2004), - [anon_sym_f64] = ACTIONS(2004), - [anon_sym_bool] = ACTIONS(2004), - [anon_sym_str] = ACTIONS(2004), - [anon_sym_char] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [anon_sym_COLON_COLON] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(2002), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_default] = ACTIONS(2004), - [anon_sym_enum] = ACTIONS(2004), - [anon_sym_fn] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_gen] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_impl] = ACTIONS(2004), - [anon_sym_let] = ACTIONS(2004), - [anon_sym_loop] = ACTIONS(2004), - [anon_sym_match] = ACTIONS(2004), - [anon_sym_mod] = ACTIONS(2004), - [anon_sym_pub] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_struct] = ACTIONS(2004), - [anon_sym_trait] = ACTIONS(2004), - [anon_sym_type] = ACTIONS(2004), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_unsafe] = ACTIONS(2004), - [anon_sym_use] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_yield] = ACTIONS(2004), - [anon_sym_move] = ACTIONS(2004), - [anon_sym_try] = ACTIONS(2004), - [sym_integer_literal] = ACTIONS(2002), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2004), - [sym_super] = ACTIONS(2004), - [sym_crate] = ACTIONS(2004), - [sym_metavariable] = ACTIONS(2002), - [sym__raw_string_literal_start] = ACTIONS(2002), - [sym_float_literal] = ACTIONS(2002), + [STATE(518)] = { + [sym_line_comment] = STATE(518), + [sym_block_comment] = STATE(518), + [ts_builtin_sym_end] = ACTIONS(2000), + [sym_identifier] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_macro_rules_BANG] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2000), + [anon_sym_u8] = ACTIONS(2002), + [anon_sym_i8] = ACTIONS(2002), + [anon_sym_u16] = ACTIONS(2002), + [anon_sym_i16] = ACTIONS(2002), + [anon_sym_u32] = ACTIONS(2002), + [anon_sym_i32] = ACTIONS(2002), + [anon_sym_u64] = ACTIONS(2002), + [anon_sym_i64] = ACTIONS(2002), + [anon_sym_u128] = ACTIONS(2002), + [anon_sym_i128] = ACTIONS(2002), + [anon_sym_isize] = ACTIONS(2002), + [anon_sym_usize] = ACTIONS(2002), + [anon_sym_f32] = ACTIONS(2002), + [anon_sym_f64] = ACTIONS(2002), + [anon_sym_bool] = ACTIONS(2002), + [anon_sym_str] = ACTIONS(2002), + [anon_sym_char] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_LT] = ACTIONS(2000), + [anon_sym_DOT_DOT] = ACTIONS(2000), + [anon_sym_COLON_COLON] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_async] = ACTIONS(2002), + [anon_sym_break] = ACTIONS(2002), + [anon_sym_const] = ACTIONS(2002), + [anon_sym_continue] = ACTIONS(2002), + [anon_sym_default] = ACTIONS(2002), + [anon_sym_enum] = ACTIONS(2002), + [anon_sym_fn] = ACTIONS(2002), + [anon_sym_for] = ACTIONS(2002), + [anon_sym_gen] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2002), + [anon_sym_impl] = ACTIONS(2002), + [anon_sym_let] = ACTIONS(2002), + [anon_sym_loop] = ACTIONS(2002), + [anon_sym_match] = ACTIONS(2002), + [anon_sym_mod] = ACTIONS(2002), + [anon_sym_pub] = ACTIONS(2002), + [anon_sym_return] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2002), + [anon_sym_struct] = ACTIONS(2002), + [anon_sym_trait] = ACTIONS(2002), + [anon_sym_type] = ACTIONS(2002), + [anon_sym_union] = ACTIONS(2002), + [anon_sym_unsafe] = ACTIONS(2002), + [anon_sym_use] = ACTIONS(2002), + [anon_sym_while] = ACTIONS(2002), + [anon_sym_extern] = ACTIONS(2002), + [anon_sym_yield] = ACTIONS(2002), + [anon_sym_move] = ACTIONS(2002), + [anon_sym_try] = ACTIONS(2002), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2000), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2002), + [anon_sym_false] = ACTIONS(2002), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2002), + [sym_super] = ACTIONS(2002), + [sym_crate] = ACTIONS(2002), + [sym_metavariable] = ACTIONS(2000), + [sym__raw_string_literal_start] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), }, - [STATE(542)] = { - [sym_line_comment] = STATE(542), - [sym_block_comment] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(2006), - [sym_identifier] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_macro_rules_BANG] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_u8] = ACTIONS(2008), - [anon_sym_i8] = ACTIONS(2008), - [anon_sym_u16] = ACTIONS(2008), - [anon_sym_i16] = ACTIONS(2008), - [anon_sym_u32] = ACTIONS(2008), - [anon_sym_i32] = ACTIONS(2008), - [anon_sym_u64] = ACTIONS(2008), - [anon_sym_i64] = ACTIONS(2008), - [anon_sym_u128] = ACTIONS(2008), - [anon_sym_i128] = ACTIONS(2008), - [anon_sym_isize] = ACTIONS(2008), - [anon_sym_usize] = ACTIONS(2008), - [anon_sym_f32] = ACTIONS(2008), - [anon_sym_f64] = ACTIONS(2008), - [anon_sym_bool] = ACTIONS(2008), - [anon_sym_str] = ACTIONS(2008), - [anon_sym_char] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2006), - [anon_sym_DOT_DOT] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_async] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [anon_sym_const] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_default] = ACTIONS(2008), - [anon_sym_enum] = ACTIONS(2008), - [anon_sym_fn] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2008), - [anon_sym_gen] = ACTIONS(2008), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_impl] = ACTIONS(2008), - [anon_sym_let] = ACTIONS(2008), - [anon_sym_loop] = ACTIONS(2008), - [anon_sym_match] = ACTIONS(2008), - [anon_sym_mod] = ACTIONS(2008), - [anon_sym_pub] = ACTIONS(2008), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_struct] = ACTIONS(2008), - [anon_sym_trait] = ACTIONS(2008), - [anon_sym_type] = ACTIONS(2008), - [anon_sym_union] = ACTIONS(2008), - [anon_sym_unsafe] = ACTIONS(2008), - [anon_sym_use] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2008), - [anon_sym_extern] = ACTIONS(2008), - [anon_sym_yield] = ACTIONS(2008), - [anon_sym_move] = ACTIONS(2008), - [anon_sym_try] = ACTIONS(2008), - [sym_integer_literal] = ACTIONS(2006), - [aux_sym_string_literal_token1] = ACTIONS(2006), - [sym_char_literal] = ACTIONS(2006), - [anon_sym_true] = ACTIONS(2008), - [anon_sym_false] = ACTIONS(2008), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2008), - [sym_super] = ACTIONS(2008), - [sym_crate] = ACTIONS(2008), - [sym_metavariable] = ACTIONS(2006), - [sym__raw_string_literal_start] = ACTIONS(2006), - [sym_float_literal] = ACTIONS(2006), + [STATE(519)] = { + [sym_line_comment] = STATE(519), + [sym_block_comment] = STATE(519), + [ts_builtin_sym_end] = ACTIONS(2004), + [sym_identifier] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_macro_rules_BANG] = ACTIONS(2004), + [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_LBRACK] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2004), + [anon_sym_RBRACE] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2004), + [anon_sym_u8] = ACTIONS(2006), + [anon_sym_i8] = ACTIONS(2006), + [anon_sym_u16] = ACTIONS(2006), + [anon_sym_i16] = ACTIONS(2006), + [anon_sym_u32] = ACTIONS(2006), + [anon_sym_i32] = ACTIONS(2006), + [anon_sym_u64] = ACTIONS(2006), + [anon_sym_i64] = ACTIONS(2006), + [anon_sym_u128] = ACTIONS(2006), + [anon_sym_i128] = ACTIONS(2006), + [anon_sym_isize] = ACTIONS(2006), + [anon_sym_usize] = ACTIONS(2006), + [anon_sym_f32] = ACTIONS(2006), + [anon_sym_f64] = ACTIONS(2006), + [anon_sym_bool] = ACTIONS(2006), + [anon_sym_str] = ACTIONS(2006), + [anon_sym_char] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_BANG] = ACTIONS(2004), + [anon_sym_AMP] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2004), + [anon_sym_LT] = ACTIONS(2004), + [anon_sym_DOT_DOT] = ACTIONS(2004), + [anon_sym_COLON_COLON] = ACTIONS(2004), + [anon_sym_POUND] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_async] = ACTIONS(2006), + [anon_sym_break] = ACTIONS(2006), + [anon_sym_const] = ACTIONS(2006), + [anon_sym_continue] = ACTIONS(2006), + [anon_sym_default] = ACTIONS(2006), + [anon_sym_enum] = ACTIONS(2006), + [anon_sym_fn] = ACTIONS(2006), + [anon_sym_for] = ACTIONS(2006), + [anon_sym_gen] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2006), + [anon_sym_impl] = ACTIONS(2006), + [anon_sym_let] = ACTIONS(2006), + [anon_sym_loop] = ACTIONS(2006), + [anon_sym_match] = ACTIONS(2006), + [anon_sym_mod] = ACTIONS(2006), + [anon_sym_pub] = ACTIONS(2006), + [anon_sym_return] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2006), + [anon_sym_struct] = ACTIONS(2006), + [anon_sym_trait] = ACTIONS(2006), + [anon_sym_type] = ACTIONS(2006), + [anon_sym_union] = ACTIONS(2006), + [anon_sym_unsafe] = ACTIONS(2006), + [anon_sym_use] = ACTIONS(2006), + [anon_sym_while] = ACTIONS(2006), + [anon_sym_extern] = ACTIONS(2006), + [anon_sym_yield] = ACTIONS(2006), + [anon_sym_move] = ACTIONS(2006), + [anon_sym_try] = ACTIONS(2006), + [sym_integer_literal] = ACTIONS(2004), + [aux_sym_string_literal_token1] = ACTIONS(2004), + [sym_char_literal] = ACTIONS(2004), + [anon_sym_true] = ACTIONS(2006), + [anon_sym_false] = ACTIONS(2006), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2006), + [sym_super] = ACTIONS(2006), + [sym_crate] = ACTIONS(2006), + [sym_metavariable] = ACTIONS(2004), + [sym__raw_string_literal_start] = ACTIONS(2004), + [sym_float_literal] = ACTIONS(2004), }, - [STATE(543)] = { - [sym_line_comment] = STATE(543), + [STATE(520)] = { + [sym_line_comment] = STATE(520), + [sym_block_comment] = STATE(520), + [ts_builtin_sym_end] = ACTIONS(2008), + [sym_identifier] = ACTIONS(2010), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_macro_rules_BANG] = ACTIONS(2008), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2008), + [anon_sym_u8] = ACTIONS(2010), + [anon_sym_i8] = ACTIONS(2010), + [anon_sym_u16] = ACTIONS(2010), + [anon_sym_i16] = ACTIONS(2010), + [anon_sym_u32] = ACTIONS(2010), + [anon_sym_i32] = ACTIONS(2010), + [anon_sym_u64] = ACTIONS(2010), + [anon_sym_i64] = ACTIONS(2010), + [anon_sym_u128] = ACTIONS(2010), + [anon_sym_i128] = ACTIONS(2010), + [anon_sym_isize] = ACTIONS(2010), + [anon_sym_usize] = ACTIONS(2010), + [anon_sym_f32] = ACTIONS(2010), + [anon_sym_f64] = ACTIONS(2010), + [anon_sym_bool] = ACTIONS(2010), + [anon_sym_str] = ACTIONS(2010), + [anon_sym_char] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_BANG] = ACTIONS(2008), + [anon_sym_AMP] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(2008), + [anon_sym_SQUOTE] = ACTIONS(2010), + [anon_sym_async] = ACTIONS(2010), + [anon_sym_break] = ACTIONS(2010), + [anon_sym_const] = ACTIONS(2010), + [anon_sym_continue] = ACTIONS(2010), + [anon_sym_default] = ACTIONS(2010), + [anon_sym_enum] = ACTIONS(2010), + [anon_sym_fn] = ACTIONS(2010), + [anon_sym_for] = ACTIONS(2010), + [anon_sym_gen] = ACTIONS(2010), + [anon_sym_if] = ACTIONS(2010), + [anon_sym_impl] = ACTIONS(2010), + [anon_sym_let] = ACTIONS(2010), + [anon_sym_loop] = ACTIONS(2010), + [anon_sym_match] = ACTIONS(2010), + [anon_sym_mod] = ACTIONS(2010), + [anon_sym_pub] = ACTIONS(2010), + [anon_sym_return] = ACTIONS(2010), + [anon_sym_static] = ACTIONS(2010), + [anon_sym_struct] = ACTIONS(2010), + [anon_sym_trait] = ACTIONS(2010), + [anon_sym_type] = ACTIONS(2010), + [anon_sym_union] = ACTIONS(2010), + [anon_sym_unsafe] = ACTIONS(2010), + [anon_sym_use] = ACTIONS(2010), + [anon_sym_while] = ACTIONS(2010), + [anon_sym_extern] = ACTIONS(2010), + [anon_sym_yield] = ACTIONS(2010), + [anon_sym_move] = ACTIONS(2010), + [anon_sym_try] = ACTIONS(2010), + [sym_integer_literal] = ACTIONS(2008), + [aux_sym_string_literal_token1] = ACTIONS(2008), + [sym_char_literal] = ACTIONS(2008), + [anon_sym_true] = ACTIONS(2010), + [anon_sym_false] = ACTIONS(2010), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2010), + [sym_super] = ACTIONS(2010), + [sym_crate] = ACTIONS(2010), + [sym_metavariable] = ACTIONS(2008), + [sym__raw_string_literal_start] = ACTIONS(2008), + [sym_float_literal] = ACTIONS(2008), + }, + [STATE(521)] = { + [sym_line_comment] = STATE(521), + [sym_block_comment] = STATE(521), + [ts_builtin_sym_end] = ACTIONS(2012), + [sym_identifier] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_macro_rules_BANG] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2012), + [anon_sym_u8] = ACTIONS(2014), + [anon_sym_i8] = ACTIONS(2014), + [anon_sym_u16] = ACTIONS(2014), + [anon_sym_i16] = ACTIONS(2014), + [anon_sym_u32] = ACTIONS(2014), + [anon_sym_i32] = ACTIONS(2014), + [anon_sym_u64] = ACTIONS(2014), + [anon_sym_i64] = ACTIONS(2014), + [anon_sym_u128] = ACTIONS(2014), + [anon_sym_i128] = ACTIONS(2014), + [anon_sym_isize] = ACTIONS(2014), + [anon_sym_usize] = ACTIONS(2014), + [anon_sym_f32] = ACTIONS(2014), + [anon_sym_f64] = ACTIONS(2014), + [anon_sym_bool] = ACTIONS(2014), + [anon_sym_str] = ACTIONS(2014), + [anon_sym_char] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_BANG] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2012), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_DOT_DOT] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(2012), + [anon_sym_POUND] = ACTIONS(2012), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_async] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_const] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_default] = ACTIONS(2014), + [anon_sym_enum] = ACTIONS(2014), + [anon_sym_fn] = ACTIONS(2014), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_gen] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_impl] = ACTIONS(2014), + [anon_sym_let] = ACTIONS(2014), + [anon_sym_loop] = ACTIONS(2014), + [anon_sym_match] = ACTIONS(2014), + [anon_sym_mod] = ACTIONS(2014), + [anon_sym_pub] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2014), + [anon_sym_trait] = ACTIONS(2014), + [anon_sym_type] = ACTIONS(2014), + [anon_sym_union] = ACTIONS(2014), + [anon_sym_unsafe] = ACTIONS(2014), + [anon_sym_use] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_extern] = ACTIONS(2014), + [anon_sym_yield] = ACTIONS(2014), + [anon_sym_move] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2014), + [sym_integer_literal] = ACTIONS(2012), + [aux_sym_string_literal_token1] = ACTIONS(2012), + [sym_char_literal] = ACTIONS(2012), + [anon_sym_true] = ACTIONS(2014), + [anon_sym_false] = ACTIONS(2014), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2014), + [sym_super] = ACTIONS(2014), + [sym_crate] = ACTIONS(2014), + [sym_metavariable] = ACTIONS(2012), + [sym__raw_string_literal_start] = ACTIONS(2012), + [sym_float_literal] = ACTIONS(2012), + }, + [STATE(522)] = { + [sym_line_comment] = STATE(522), + [sym_block_comment] = STATE(522), + [ts_builtin_sym_end] = ACTIONS(2016), + [sym_identifier] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_macro_rules_BANG] = ACTIONS(2016), + [anon_sym_LPAREN] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2018), + [anon_sym_i8] = ACTIONS(2018), + [anon_sym_u16] = ACTIONS(2018), + [anon_sym_i16] = ACTIONS(2018), + [anon_sym_u32] = ACTIONS(2018), + [anon_sym_i32] = ACTIONS(2018), + [anon_sym_u64] = ACTIONS(2018), + [anon_sym_i64] = ACTIONS(2018), + [anon_sym_u128] = ACTIONS(2018), + [anon_sym_i128] = ACTIONS(2018), + [anon_sym_isize] = ACTIONS(2018), + [anon_sym_usize] = ACTIONS(2018), + [anon_sym_f32] = ACTIONS(2018), + [anon_sym_f64] = ACTIONS(2018), + [anon_sym_bool] = ACTIONS(2018), + [anon_sym_str] = ACTIONS(2018), + [anon_sym_char] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_BANG] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_LT] = ACTIONS(2016), + [anon_sym_DOT_DOT] = ACTIONS(2016), + [anon_sym_COLON_COLON] = ACTIONS(2016), + [anon_sym_POUND] = ACTIONS(2016), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_async] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_default] = ACTIONS(2018), + [anon_sym_enum] = ACTIONS(2018), + [anon_sym_fn] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_gen] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_impl] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_mod] = ACTIONS(2018), + [anon_sym_pub] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2018), + [anon_sym_struct] = ACTIONS(2018), + [anon_sym_trait] = ACTIONS(2018), + [anon_sym_type] = ACTIONS(2018), + [anon_sym_union] = ACTIONS(2018), + [anon_sym_unsafe] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_yield] = ACTIONS(2018), + [anon_sym_move] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(2018), + [sym_integer_literal] = ACTIONS(2016), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2016), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2018), + [sym_super] = ACTIONS(2018), + [sym_crate] = ACTIONS(2018), + [sym_metavariable] = ACTIONS(2016), + [sym__raw_string_literal_start] = ACTIONS(2016), + [sym_float_literal] = ACTIONS(2016), + }, + [STATE(523)] = { + [sym_line_comment] = STATE(523), + [sym_block_comment] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_macro_rules_BANG] = ACTIONS(2020), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2020), + [anon_sym_u8] = ACTIONS(2022), + [anon_sym_i8] = ACTIONS(2022), + [anon_sym_u16] = ACTIONS(2022), + [anon_sym_i16] = ACTIONS(2022), + [anon_sym_u32] = ACTIONS(2022), + [anon_sym_i32] = ACTIONS(2022), + [anon_sym_u64] = ACTIONS(2022), + [anon_sym_i64] = ACTIONS(2022), + [anon_sym_u128] = ACTIONS(2022), + [anon_sym_i128] = ACTIONS(2022), + [anon_sym_isize] = ACTIONS(2022), + [anon_sym_usize] = ACTIONS(2022), + [anon_sym_f32] = ACTIONS(2022), + [anon_sym_f64] = ACTIONS(2022), + [anon_sym_bool] = ACTIONS(2022), + [anon_sym_str] = ACTIONS(2022), + [anon_sym_char] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2020), + [anon_sym_BANG] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2020), + [anon_sym_DOT_DOT] = ACTIONS(2020), + [anon_sym_COLON_COLON] = ACTIONS(2020), + [anon_sym_POUND] = ACTIONS(2020), + [anon_sym_SQUOTE] = ACTIONS(2022), + [anon_sym_async] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_default] = ACTIONS(2022), + [anon_sym_enum] = ACTIONS(2022), + [anon_sym_fn] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_gen] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_impl] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_loop] = ACTIONS(2022), + [anon_sym_match] = ACTIONS(2022), + [anon_sym_mod] = ACTIONS(2022), + [anon_sym_pub] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_struct] = ACTIONS(2022), + [anon_sym_trait] = ACTIONS(2022), + [anon_sym_type] = ACTIONS(2022), + [anon_sym_union] = ACTIONS(2022), + [anon_sym_unsafe] = ACTIONS(2022), + [anon_sym_use] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_extern] = ACTIONS(2022), + [anon_sym_yield] = ACTIONS(2022), + [anon_sym_move] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2022), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2022), + [sym_super] = ACTIONS(2022), + [sym_crate] = ACTIONS(2022), + [sym_metavariable] = ACTIONS(2020), + [sym__raw_string_literal_start] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + }, + [STATE(524)] = { + [sym_line_comment] = STATE(524), + [sym_block_comment] = STATE(524), + [ts_builtin_sym_end] = ACTIONS(2024), + [sym_identifier] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_macro_rules_BANG] = ACTIONS(2024), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_u8] = ACTIONS(2026), + [anon_sym_i8] = ACTIONS(2026), + [anon_sym_u16] = ACTIONS(2026), + [anon_sym_i16] = ACTIONS(2026), + [anon_sym_u32] = ACTIONS(2026), + [anon_sym_i32] = ACTIONS(2026), + [anon_sym_u64] = ACTIONS(2026), + [anon_sym_i64] = ACTIONS(2026), + [anon_sym_u128] = ACTIONS(2026), + [anon_sym_i128] = ACTIONS(2026), + [anon_sym_isize] = ACTIONS(2026), + [anon_sym_usize] = ACTIONS(2026), + [anon_sym_f32] = ACTIONS(2026), + [anon_sym_f64] = ACTIONS(2026), + [anon_sym_bool] = ACTIONS(2026), + [anon_sym_str] = ACTIONS(2026), + [anon_sym_char] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_DOT_DOT] = ACTIONS(2024), + [anon_sym_COLON_COLON] = ACTIONS(2024), + [anon_sym_POUND] = ACTIONS(2024), + [anon_sym_SQUOTE] = ACTIONS(2026), + [anon_sym_async] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_default] = ACTIONS(2026), + [anon_sym_enum] = ACTIONS(2026), + [anon_sym_fn] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_gen] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_impl] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_loop] = ACTIONS(2026), + [anon_sym_match] = ACTIONS(2026), + [anon_sym_mod] = ACTIONS(2026), + [anon_sym_pub] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_struct] = ACTIONS(2026), + [anon_sym_trait] = ACTIONS(2026), + [anon_sym_type] = ACTIONS(2026), + [anon_sym_union] = ACTIONS(2026), + [anon_sym_unsafe] = ACTIONS(2026), + [anon_sym_use] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2026), + [anon_sym_yield] = ACTIONS(2026), + [anon_sym_move] = ACTIONS(2026), + [anon_sym_try] = ACTIONS(2026), + [sym_integer_literal] = ACTIONS(2024), + [aux_sym_string_literal_token1] = ACTIONS(2024), + [sym_char_literal] = ACTIONS(2024), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2026), + [sym_super] = ACTIONS(2026), + [sym_crate] = ACTIONS(2026), + [sym_metavariable] = ACTIONS(2024), + [sym__raw_string_literal_start] = ACTIONS(2024), + [sym_float_literal] = ACTIONS(2024), + }, + [STATE(525)] = { + [sym_line_comment] = STATE(525), + [sym_block_comment] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(2028), + [sym_identifier] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_macro_rules_BANG] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2028), + [anon_sym_u8] = ACTIONS(2030), + [anon_sym_i8] = ACTIONS(2030), + [anon_sym_u16] = ACTIONS(2030), + [anon_sym_i16] = ACTIONS(2030), + [anon_sym_u32] = ACTIONS(2030), + [anon_sym_i32] = ACTIONS(2030), + [anon_sym_u64] = ACTIONS(2030), + [anon_sym_i64] = ACTIONS(2030), + [anon_sym_u128] = ACTIONS(2030), + [anon_sym_i128] = ACTIONS(2030), + [anon_sym_isize] = ACTIONS(2030), + [anon_sym_usize] = ACTIONS(2030), + [anon_sym_f32] = ACTIONS(2030), + [anon_sym_f64] = ACTIONS(2030), + [anon_sym_bool] = ACTIONS(2030), + [anon_sym_str] = ACTIONS(2030), + [anon_sym_char] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_DOT_DOT] = ACTIONS(2028), + [anon_sym_COLON_COLON] = ACTIONS(2028), + [anon_sym_POUND] = ACTIONS(2028), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_async] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_fn] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_gen] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_impl] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_mod] = ACTIONS(2030), + [anon_sym_pub] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_trait] = ACTIONS(2030), + [anon_sym_type] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_unsafe] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_yield] = ACTIONS(2030), + [anon_sym_move] = ACTIONS(2030), + [anon_sym_try] = ACTIONS(2030), + [sym_integer_literal] = ACTIONS(2028), + [aux_sym_string_literal_token1] = ACTIONS(2028), + [sym_char_literal] = ACTIONS(2028), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2030), + [sym_super] = ACTIONS(2030), + [sym_crate] = ACTIONS(2030), + [sym_metavariable] = ACTIONS(2028), + [sym__raw_string_literal_start] = ACTIONS(2028), + [sym_float_literal] = ACTIONS(2028), + }, + [STATE(526)] = { + [sym_line_comment] = STATE(526), + [sym_block_comment] = STATE(526), + [ts_builtin_sym_end] = ACTIONS(2032), + [sym_identifier] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_macro_rules_BANG] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2032), + [anon_sym_u8] = ACTIONS(2034), + [anon_sym_i8] = ACTIONS(2034), + [anon_sym_u16] = ACTIONS(2034), + [anon_sym_i16] = ACTIONS(2034), + [anon_sym_u32] = ACTIONS(2034), + [anon_sym_i32] = ACTIONS(2034), + [anon_sym_u64] = ACTIONS(2034), + [anon_sym_i64] = ACTIONS(2034), + [anon_sym_u128] = ACTIONS(2034), + [anon_sym_i128] = ACTIONS(2034), + [anon_sym_isize] = ACTIONS(2034), + [anon_sym_usize] = ACTIONS(2034), + [anon_sym_f32] = ACTIONS(2034), + [anon_sym_f64] = ACTIONS(2034), + [anon_sym_bool] = ACTIONS(2034), + [anon_sym_str] = ACTIONS(2034), + [anon_sym_char] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2032), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2032), + [anon_sym_POUND] = ACTIONS(2032), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_async] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_default] = ACTIONS(2034), + [anon_sym_enum] = ACTIONS(2034), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_gen] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_impl] = ACTIONS(2034), + [anon_sym_let] = ACTIONS(2034), + [anon_sym_loop] = ACTIONS(2034), + [anon_sym_match] = ACTIONS(2034), + [anon_sym_mod] = ACTIONS(2034), + [anon_sym_pub] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_struct] = ACTIONS(2034), + [anon_sym_trait] = ACTIONS(2034), + [anon_sym_type] = ACTIONS(2034), + [anon_sym_union] = ACTIONS(2034), + [anon_sym_unsafe] = ACTIONS(2034), + [anon_sym_use] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [anon_sym_extern] = ACTIONS(2034), + [anon_sym_yield] = ACTIONS(2034), + [anon_sym_move] = ACTIONS(2034), + [anon_sym_try] = ACTIONS(2034), + [sym_integer_literal] = ACTIONS(2032), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2032), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2034), + [sym_super] = ACTIONS(2034), + [sym_crate] = ACTIONS(2034), + [sym_metavariable] = ACTIONS(2032), + [sym__raw_string_literal_start] = ACTIONS(2032), + [sym_float_literal] = ACTIONS(2032), + }, + [STATE(527)] = { + [sym_line_comment] = STATE(527), + [sym_block_comment] = STATE(527), + [ts_builtin_sym_end] = ACTIONS(2036), + [sym_identifier] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_macro_rules_BANG] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2036), + [anon_sym_u8] = ACTIONS(2038), + [anon_sym_i8] = ACTIONS(2038), + [anon_sym_u16] = ACTIONS(2038), + [anon_sym_i16] = ACTIONS(2038), + [anon_sym_u32] = ACTIONS(2038), + [anon_sym_i32] = ACTIONS(2038), + [anon_sym_u64] = ACTIONS(2038), + [anon_sym_i64] = ACTIONS(2038), + [anon_sym_u128] = ACTIONS(2038), + [anon_sym_i128] = ACTIONS(2038), + [anon_sym_isize] = ACTIONS(2038), + [anon_sym_usize] = ACTIONS(2038), + [anon_sym_f32] = ACTIONS(2038), + [anon_sym_f64] = ACTIONS(2038), + [anon_sym_bool] = ACTIONS(2038), + [anon_sym_str] = ACTIONS(2038), + [anon_sym_char] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_DOT_DOT] = ACTIONS(2036), + [anon_sym_COLON_COLON] = ACTIONS(2036), + [anon_sym_POUND] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_async] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_default] = ACTIONS(2038), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_fn] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_gen] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_impl] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_loop] = ACTIONS(2038), + [anon_sym_match] = ACTIONS(2038), + [anon_sym_mod] = ACTIONS(2038), + [anon_sym_pub] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2038), + [anon_sym_trait] = ACTIONS(2038), + [anon_sym_type] = ACTIONS(2038), + [anon_sym_union] = ACTIONS(2038), + [anon_sym_unsafe] = ACTIONS(2038), + [anon_sym_use] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2038), + [anon_sym_yield] = ACTIONS(2038), + [anon_sym_move] = ACTIONS(2038), + [anon_sym_try] = ACTIONS(2038), + [sym_integer_literal] = ACTIONS(2036), + [aux_sym_string_literal_token1] = ACTIONS(2036), + [sym_char_literal] = ACTIONS(2036), + [anon_sym_true] = ACTIONS(2038), + [anon_sym_false] = ACTIONS(2038), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2038), + [sym_super] = ACTIONS(2038), + [sym_crate] = ACTIONS(2038), + [sym_metavariable] = ACTIONS(2036), + [sym__raw_string_literal_start] = ACTIONS(2036), + [sym_float_literal] = ACTIONS(2036), + }, + [STATE(528)] = { + [sym_line_comment] = STATE(528), + [sym_block_comment] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(2040), + [sym_identifier] = ACTIONS(2042), + [anon_sym_SEMI] = ACTIONS(2040), + [anon_sym_macro_rules_BANG] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2040), + [anon_sym_u8] = ACTIONS(2042), + [anon_sym_i8] = ACTIONS(2042), + [anon_sym_u16] = ACTIONS(2042), + [anon_sym_i16] = ACTIONS(2042), + [anon_sym_u32] = ACTIONS(2042), + [anon_sym_i32] = ACTIONS(2042), + [anon_sym_u64] = ACTIONS(2042), + [anon_sym_i64] = ACTIONS(2042), + [anon_sym_u128] = ACTIONS(2042), + [anon_sym_i128] = ACTIONS(2042), + [anon_sym_isize] = ACTIONS(2042), + [anon_sym_usize] = ACTIONS(2042), + [anon_sym_f32] = ACTIONS(2042), + [anon_sym_f64] = ACTIONS(2042), + [anon_sym_bool] = ACTIONS(2042), + [anon_sym_str] = ACTIONS(2042), + [anon_sym_char] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_BANG] = ACTIONS(2040), + [anon_sym_AMP] = ACTIONS(2040), + [anon_sym_PIPE] = ACTIONS(2040), + [anon_sym_LT] = ACTIONS(2040), + [anon_sym_DOT_DOT] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(2040), + [anon_sym_POUND] = ACTIONS(2040), + [anon_sym_SQUOTE] = ACTIONS(2042), + [anon_sym_async] = ACTIONS(2042), + [anon_sym_break] = ACTIONS(2042), + [anon_sym_const] = ACTIONS(2042), + [anon_sym_continue] = ACTIONS(2042), + [anon_sym_default] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_fn] = ACTIONS(2042), + [anon_sym_for] = ACTIONS(2042), + [anon_sym_gen] = ACTIONS(2042), + [anon_sym_if] = ACTIONS(2042), + [anon_sym_impl] = ACTIONS(2042), + [anon_sym_let] = ACTIONS(2042), + [anon_sym_loop] = ACTIONS(2042), + [anon_sym_match] = ACTIONS(2042), + [anon_sym_mod] = ACTIONS(2042), + [anon_sym_pub] = ACTIONS(2042), + [anon_sym_return] = ACTIONS(2042), + [anon_sym_static] = ACTIONS(2042), + [anon_sym_struct] = ACTIONS(2042), + [anon_sym_trait] = ACTIONS(2042), + [anon_sym_type] = ACTIONS(2042), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_unsafe] = ACTIONS(2042), + [anon_sym_use] = ACTIONS(2042), + [anon_sym_while] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2042), + [anon_sym_yield] = ACTIONS(2042), + [anon_sym_move] = ACTIONS(2042), + [anon_sym_try] = ACTIONS(2042), + [sym_integer_literal] = ACTIONS(2040), + [aux_sym_string_literal_token1] = ACTIONS(2040), + [sym_char_literal] = ACTIONS(2040), + [anon_sym_true] = ACTIONS(2042), + [anon_sym_false] = ACTIONS(2042), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2042), + [sym_super] = ACTIONS(2042), + [sym_crate] = ACTIONS(2042), + [sym_metavariable] = ACTIONS(2040), + [sym__raw_string_literal_start] = ACTIONS(2040), + [sym_float_literal] = ACTIONS(2040), + }, + [STATE(529)] = { + [sym_line_comment] = STATE(529), + [sym_block_comment] = STATE(529), + [ts_builtin_sym_end] = ACTIONS(2044), + [sym_identifier] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_macro_rules_BANG] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2044), + [anon_sym_u8] = ACTIONS(2046), + [anon_sym_i8] = ACTIONS(2046), + [anon_sym_u16] = ACTIONS(2046), + [anon_sym_i16] = ACTIONS(2046), + [anon_sym_u32] = ACTIONS(2046), + [anon_sym_i32] = ACTIONS(2046), + [anon_sym_u64] = ACTIONS(2046), + [anon_sym_i64] = ACTIONS(2046), + [anon_sym_u128] = ACTIONS(2046), + [anon_sym_i128] = ACTIONS(2046), + [anon_sym_isize] = ACTIONS(2046), + [anon_sym_usize] = ACTIONS(2046), + [anon_sym_f32] = ACTIONS(2046), + [anon_sym_f64] = ACTIONS(2046), + [anon_sym_bool] = ACTIONS(2046), + [anon_sym_str] = ACTIONS(2046), + [anon_sym_char] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_BANG] = ACTIONS(2044), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_PIPE] = ACTIONS(2044), + [anon_sym_LT] = ACTIONS(2044), + [anon_sym_DOT_DOT] = ACTIONS(2044), + [anon_sym_COLON_COLON] = ACTIONS(2044), + [anon_sym_POUND] = ACTIONS(2044), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_async] = ACTIONS(2046), + [anon_sym_break] = ACTIONS(2046), + [anon_sym_const] = ACTIONS(2046), + [anon_sym_continue] = ACTIONS(2046), + [anon_sym_default] = ACTIONS(2046), + [anon_sym_enum] = ACTIONS(2046), + [anon_sym_fn] = ACTIONS(2046), + [anon_sym_for] = ACTIONS(2046), + [anon_sym_gen] = ACTIONS(2046), + [anon_sym_if] = ACTIONS(2046), + [anon_sym_impl] = ACTIONS(2046), + [anon_sym_let] = ACTIONS(2046), + [anon_sym_loop] = ACTIONS(2046), + [anon_sym_match] = ACTIONS(2046), + [anon_sym_mod] = ACTIONS(2046), + [anon_sym_pub] = ACTIONS(2046), + [anon_sym_return] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2046), + [anon_sym_struct] = ACTIONS(2046), + [anon_sym_trait] = ACTIONS(2046), + [anon_sym_type] = ACTIONS(2046), + [anon_sym_union] = ACTIONS(2046), + [anon_sym_unsafe] = ACTIONS(2046), + [anon_sym_use] = ACTIONS(2046), + [anon_sym_while] = ACTIONS(2046), + [anon_sym_extern] = ACTIONS(2046), + [anon_sym_yield] = ACTIONS(2046), + [anon_sym_move] = ACTIONS(2046), + [anon_sym_try] = ACTIONS(2046), + [sym_integer_literal] = ACTIONS(2044), + [aux_sym_string_literal_token1] = ACTIONS(2044), + [sym_char_literal] = ACTIONS(2044), + [anon_sym_true] = ACTIONS(2046), + [anon_sym_false] = ACTIONS(2046), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2046), + [sym_super] = ACTIONS(2046), + [sym_crate] = ACTIONS(2046), + [sym_metavariable] = ACTIONS(2044), + [sym__raw_string_literal_start] = ACTIONS(2044), + [sym_float_literal] = ACTIONS(2044), + }, + [STATE(530)] = { + [sym_line_comment] = STATE(530), + [sym_block_comment] = STATE(530), + [ts_builtin_sym_end] = ACTIONS(2048), + [sym_identifier] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_macro_rules_BANG] = ACTIONS(2048), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2048), + [anon_sym_RBRACE] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(2048), + [anon_sym_u8] = ACTIONS(2050), + [anon_sym_i8] = ACTIONS(2050), + [anon_sym_u16] = ACTIONS(2050), + [anon_sym_i16] = ACTIONS(2050), + [anon_sym_u32] = ACTIONS(2050), + [anon_sym_i32] = ACTIONS(2050), + [anon_sym_u64] = ACTIONS(2050), + [anon_sym_i64] = ACTIONS(2050), + [anon_sym_u128] = ACTIONS(2050), + [anon_sym_i128] = ACTIONS(2050), + [anon_sym_isize] = ACTIONS(2050), + [anon_sym_usize] = ACTIONS(2050), + [anon_sym_f32] = ACTIONS(2050), + [anon_sym_f64] = ACTIONS(2050), + [anon_sym_bool] = ACTIONS(2050), + [anon_sym_str] = ACTIONS(2050), + [anon_sym_char] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_BANG] = ACTIONS(2048), + [anon_sym_AMP] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2048), + [anon_sym_DOT_DOT] = ACTIONS(2048), + [anon_sym_COLON_COLON] = ACTIONS(2048), + [anon_sym_POUND] = ACTIONS(2048), + [anon_sym_SQUOTE] = ACTIONS(2050), + [anon_sym_async] = ACTIONS(2050), + [anon_sym_break] = ACTIONS(2050), + [anon_sym_const] = ACTIONS(2050), + [anon_sym_continue] = ACTIONS(2050), + [anon_sym_default] = ACTIONS(2050), + [anon_sym_enum] = ACTIONS(2050), + [anon_sym_fn] = ACTIONS(2050), + [anon_sym_for] = ACTIONS(2050), + [anon_sym_gen] = ACTIONS(2050), + [anon_sym_if] = ACTIONS(2050), + [anon_sym_impl] = ACTIONS(2050), + [anon_sym_let] = ACTIONS(2050), + [anon_sym_loop] = ACTIONS(2050), + [anon_sym_match] = ACTIONS(2050), + [anon_sym_mod] = ACTIONS(2050), + [anon_sym_pub] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2050), + [anon_sym_static] = ACTIONS(2050), + [anon_sym_struct] = ACTIONS(2050), + [anon_sym_trait] = ACTIONS(2050), + [anon_sym_type] = ACTIONS(2050), + [anon_sym_union] = ACTIONS(2050), + [anon_sym_unsafe] = ACTIONS(2050), + [anon_sym_use] = ACTIONS(2050), + [anon_sym_while] = ACTIONS(2050), + [anon_sym_extern] = ACTIONS(2050), + [anon_sym_yield] = ACTIONS(2050), + [anon_sym_move] = ACTIONS(2050), + [anon_sym_try] = ACTIONS(2050), + [sym_integer_literal] = ACTIONS(2048), + [aux_sym_string_literal_token1] = ACTIONS(2048), + [sym_char_literal] = ACTIONS(2048), + [anon_sym_true] = ACTIONS(2050), + [anon_sym_false] = ACTIONS(2050), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2050), + [sym_super] = ACTIONS(2050), + [sym_crate] = ACTIONS(2050), + [sym_metavariable] = ACTIONS(2048), + [sym__raw_string_literal_start] = ACTIONS(2048), + [sym_float_literal] = ACTIONS(2048), + }, + [STATE(531)] = { + [sym_line_comment] = STATE(531), + [sym_block_comment] = STATE(531), + [ts_builtin_sym_end] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_macro_rules_BANG] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(2052), + [anon_sym_LBRACK] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2052), + [anon_sym_u8] = ACTIONS(2054), + [anon_sym_i8] = ACTIONS(2054), + [anon_sym_u16] = ACTIONS(2054), + [anon_sym_i16] = ACTIONS(2054), + [anon_sym_u32] = ACTIONS(2054), + [anon_sym_i32] = ACTIONS(2054), + [anon_sym_u64] = ACTIONS(2054), + [anon_sym_i64] = ACTIONS(2054), + [anon_sym_u128] = ACTIONS(2054), + [anon_sym_i128] = ACTIONS(2054), + [anon_sym_isize] = ACTIONS(2054), + [anon_sym_usize] = ACTIONS(2054), + [anon_sym_f32] = ACTIONS(2054), + [anon_sym_f64] = ACTIONS(2054), + [anon_sym_bool] = ACTIONS(2054), + [anon_sym_str] = ACTIONS(2054), + [anon_sym_char] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_BANG] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_DOT_DOT] = ACTIONS(2052), + [anon_sym_COLON_COLON] = ACTIONS(2052), + [anon_sym_POUND] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_async] = ACTIONS(2054), + [anon_sym_break] = ACTIONS(2054), + [anon_sym_const] = ACTIONS(2054), + [anon_sym_continue] = ACTIONS(2054), + [anon_sym_default] = ACTIONS(2054), + [anon_sym_enum] = ACTIONS(2054), + [anon_sym_fn] = ACTIONS(2054), + [anon_sym_for] = ACTIONS(2054), + [anon_sym_gen] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_impl] = ACTIONS(2054), + [anon_sym_let] = ACTIONS(2054), + [anon_sym_loop] = ACTIONS(2054), + [anon_sym_match] = ACTIONS(2054), + [anon_sym_mod] = ACTIONS(2054), + [anon_sym_pub] = ACTIONS(2054), + [anon_sym_return] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2054), + [anon_sym_struct] = ACTIONS(2054), + [anon_sym_trait] = ACTIONS(2054), + [anon_sym_type] = ACTIONS(2054), + [anon_sym_union] = ACTIONS(2054), + [anon_sym_unsafe] = ACTIONS(2054), + [anon_sym_use] = ACTIONS(2054), + [anon_sym_while] = ACTIONS(2054), + [anon_sym_extern] = ACTIONS(2054), + [anon_sym_yield] = ACTIONS(2054), + [anon_sym_move] = ACTIONS(2054), + [anon_sym_try] = ACTIONS(2054), + [sym_integer_literal] = ACTIONS(2052), + [aux_sym_string_literal_token1] = ACTIONS(2052), + [sym_char_literal] = ACTIONS(2052), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2054), + [sym_super] = ACTIONS(2054), + [sym_crate] = ACTIONS(2054), + [sym_metavariable] = ACTIONS(2052), + [sym__raw_string_literal_start] = ACTIONS(2052), + [sym_float_literal] = ACTIONS(2052), + }, + [STATE(532)] = { + [sym_line_comment] = STATE(532), + [sym_block_comment] = STATE(532), + [ts_builtin_sym_end] = ACTIONS(2056), + [sym_identifier] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_macro_rules_BANG] = ACTIONS(2056), + [anon_sym_LPAREN] = ACTIONS(2056), + [anon_sym_LBRACK] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(2056), + [anon_sym_RBRACE] = ACTIONS(2056), + [anon_sym_STAR] = ACTIONS(2056), + [anon_sym_u8] = ACTIONS(2058), + [anon_sym_i8] = ACTIONS(2058), + [anon_sym_u16] = ACTIONS(2058), + [anon_sym_i16] = ACTIONS(2058), + [anon_sym_u32] = ACTIONS(2058), + [anon_sym_i32] = ACTIONS(2058), + [anon_sym_u64] = ACTIONS(2058), + [anon_sym_i64] = ACTIONS(2058), + [anon_sym_u128] = ACTIONS(2058), + [anon_sym_i128] = ACTIONS(2058), + [anon_sym_isize] = ACTIONS(2058), + [anon_sym_usize] = ACTIONS(2058), + [anon_sym_f32] = ACTIONS(2058), + [anon_sym_f64] = ACTIONS(2058), + [anon_sym_bool] = ACTIONS(2058), + [anon_sym_str] = ACTIONS(2058), + [anon_sym_char] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2056), + [anon_sym_BANG] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2056), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_DOT_DOT] = ACTIONS(2056), + [anon_sym_COLON_COLON] = ACTIONS(2056), + [anon_sym_POUND] = ACTIONS(2056), + [anon_sym_SQUOTE] = ACTIONS(2058), + [anon_sym_async] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_default] = ACTIONS(2058), + [anon_sym_enum] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_gen] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_impl] = ACTIONS(2058), + [anon_sym_let] = ACTIONS(2058), + [anon_sym_loop] = ACTIONS(2058), + [anon_sym_match] = ACTIONS(2058), + [anon_sym_mod] = ACTIONS(2058), + [anon_sym_pub] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_static] = ACTIONS(2058), + [anon_sym_struct] = ACTIONS(2058), + [anon_sym_trait] = ACTIONS(2058), + [anon_sym_type] = ACTIONS(2058), + [anon_sym_union] = ACTIONS(2058), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_use] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_yield] = ACTIONS(2058), + [anon_sym_move] = ACTIONS(2058), + [anon_sym_try] = ACTIONS(2058), + [sym_integer_literal] = ACTIONS(2056), + [aux_sym_string_literal_token1] = ACTIONS(2056), + [sym_char_literal] = ACTIONS(2056), + [anon_sym_true] = ACTIONS(2058), + [anon_sym_false] = ACTIONS(2058), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2058), + [sym_super] = ACTIONS(2058), + [sym_crate] = ACTIONS(2058), + [sym_metavariable] = ACTIONS(2056), + [sym__raw_string_literal_start] = ACTIONS(2056), + [sym_float_literal] = ACTIONS(2056), + }, + [STATE(533)] = { + [sym_line_comment] = STATE(533), + [sym_block_comment] = STATE(533), + [ts_builtin_sym_end] = ACTIONS(2060), + [sym_identifier] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_macro_rules_BANG] = ACTIONS(2060), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(2060), + [anon_sym_u8] = ACTIONS(2062), + [anon_sym_i8] = ACTIONS(2062), + [anon_sym_u16] = ACTIONS(2062), + [anon_sym_i16] = ACTIONS(2062), + [anon_sym_u32] = ACTIONS(2062), + [anon_sym_i32] = ACTIONS(2062), + [anon_sym_u64] = ACTIONS(2062), + [anon_sym_i64] = ACTIONS(2062), + [anon_sym_u128] = ACTIONS(2062), + [anon_sym_i128] = ACTIONS(2062), + [anon_sym_isize] = ACTIONS(2062), + [anon_sym_usize] = ACTIONS(2062), + [anon_sym_f32] = ACTIONS(2062), + [anon_sym_f64] = ACTIONS(2062), + [anon_sym_bool] = ACTIONS(2062), + [anon_sym_str] = ACTIONS(2062), + [anon_sym_char] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_BANG] = ACTIONS(2060), + [anon_sym_AMP] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_DOT_DOT] = ACTIONS(2060), + [anon_sym_COLON_COLON] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(2060), + [anon_sym_SQUOTE] = ACTIONS(2062), + [anon_sym_async] = ACTIONS(2062), + [anon_sym_break] = ACTIONS(2062), + [anon_sym_const] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2062), + [anon_sym_default] = ACTIONS(2062), + [anon_sym_enum] = ACTIONS(2062), + [anon_sym_fn] = ACTIONS(2062), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_gen] = ACTIONS(2062), + [anon_sym_if] = ACTIONS(2062), + [anon_sym_impl] = ACTIONS(2062), + [anon_sym_let] = ACTIONS(2062), + [anon_sym_loop] = ACTIONS(2062), + [anon_sym_match] = ACTIONS(2062), + [anon_sym_mod] = ACTIONS(2062), + [anon_sym_pub] = ACTIONS(2062), + [anon_sym_return] = ACTIONS(2062), + [anon_sym_static] = ACTIONS(2062), + [anon_sym_struct] = ACTIONS(2062), + [anon_sym_trait] = ACTIONS(2062), + [anon_sym_type] = ACTIONS(2062), + [anon_sym_union] = ACTIONS(2062), + [anon_sym_unsafe] = ACTIONS(2062), + [anon_sym_use] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_extern] = ACTIONS(2062), + [anon_sym_yield] = ACTIONS(2062), + [anon_sym_move] = ACTIONS(2062), + [anon_sym_try] = ACTIONS(2062), + [sym_integer_literal] = ACTIONS(2060), + [aux_sym_string_literal_token1] = ACTIONS(2060), + [sym_char_literal] = ACTIONS(2060), + [anon_sym_true] = ACTIONS(2062), + [anon_sym_false] = ACTIONS(2062), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2062), + [sym_super] = ACTIONS(2062), + [sym_crate] = ACTIONS(2062), + [sym_metavariable] = ACTIONS(2060), + [sym__raw_string_literal_start] = ACTIONS(2060), + [sym_float_literal] = ACTIONS(2060), + }, + [STATE(534)] = { + [sym_line_comment] = STATE(534), + [sym_block_comment] = STATE(534), + [ts_builtin_sym_end] = ACTIONS(2064), + [sym_identifier] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_macro_rules_BANG] = ACTIONS(2064), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_LBRACK] = ACTIONS(2064), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_u8] = ACTIONS(2066), + [anon_sym_i8] = ACTIONS(2066), + [anon_sym_u16] = ACTIONS(2066), + [anon_sym_i16] = ACTIONS(2066), + [anon_sym_u32] = ACTIONS(2066), + [anon_sym_i32] = ACTIONS(2066), + [anon_sym_u64] = ACTIONS(2066), + [anon_sym_i64] = ACTIONS(2066), + [anon_sym_u128] = ACTIONS(2066), + [anon_sym_i128] = ACTIONS(2066), + [anon_sym_isize] = ACTIONS(2066), + [anon_sym_usize] = ACTIONS(2066), + [anon_sym_f32] = ACTIONS(2066), + [anon_sym_f64] = ACTIONS(2066), + [anon_sym_bool] = ACTIONS(2066), + [anon_sym_str] = ACTIONS(2066), + [anon_sym_char] = ACTIONS(2066), + [anon_sym_DASH] = ACTIONS(2064), + [anon_sym_BANG] = ACTIONS(2064), + [anon_sym_AMP] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_DOT_DOT] = ACTIONS(2064), + [anon_sym_COLON_COLON] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(2064), + [anon_sym_SQUOTE] = ACTIONS(2066), + [anon_sym_async] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_default] = ACTIONS(2066), + [anon_sym_enum] = ACTIONS(2066), + [anon_sym_fn] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_gen] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_impl] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_mod] = ACTIONS(2066), + [anon_sym_pub] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_static] = ACTIONS(2066), + [anon_sym_struct] = ACTIONS(2066), + [anon_sym_trait] = ACTIONS(2066), + [anon_sym_type] = ACTIONS(2066), + [anon_sym_union] = ACTIONS(2066), + [anon_sym_unsafe] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_yield] = ACTIONS(2066), + [anon_sym_move] = ACTIONS(2066), + [anon_sym_try] = ACTIONS(2066), + [sym_integer_literal] = ACTIONS(2064), + [aux_sym_string_literal_token1] = ACTIONS(2064), + [sym_char_literal] = ACTIONS(2064), + [anon_sym_true] = ACTIONS(2066), + [anon_sym_false] = ACTIONS(2066), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2066), + [sym_super] = ACTIONS(2066), + [sym_crate] = ACTIONS(2066), + [sym_metavariable] = ACTIONS(2064), + [sym__raw_string_literal_start] = ACTIONS(2064), + [sym_float_literal] = ACTIONS(2064), + }, + [STATE(535)] = { + [sym_line_comment] = STATE(535), + [sym_block_comment] = STATE(535), + [ts_builtin_sym_end] = ACTIONS(2068), + [sym_identifier] = ACTIONS(2070), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_macro_rules_BANG] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_u8] = ACTIONS(2070), + [anon_sym_i8] = ACTIONS(2070), + [anon_sym_u16] = ACTIONS(2070), + [anon_sym_i16] = ACTIONS(2070), + [anon_sym_u32] = ACTIONS(2070), + [anon_sym_i32] = ACTIONS(2070), + [anon_sym_u64] = ACTIONS(2070), + [anon_sym_i64] = ACTIONS(2070), + [anon_sym_u128] = ACTIONS(2070), + [anon_sym_i128] = ACTIONS(2070), + [anon_sym_isize] = ACTIONS(2070), + [anon_sym_usize] = ACTIONS(2070), + [anon_sym_f32] = ACTIONS(2070), + [anon_sym_f64] = ACTIONS(2070), + [anon_sym_bool] = ACTIONS(2070), + [anon_sym_str] = ACTIONS(2070), + [anon_sym_char] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_DOT_DOT] = ACTIONS(2068), + [anon_sym_COLON_COLON] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2070), + [anon_sym_async] = ACTIONS(2070), + [anon_sym_break] = ACTIONS(2070), + [anon_sym_const] = ACTIONS(2070), + [anon_sym_continue] = ACTIONS(2070), + [anon_sym_default] = ACTIONS(2070), + [anon_sym_enum] = ACTIONS(2070), + [anon_sym_fn] = ACTIONS(2070), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_gen] = ACTIONS(2070), + [anon_sym_if] = ACTIONS(2070), + [anon_sym_impl] = ACTIONS(2070), + [anon_sym_let] = ACTIONS(2070), + [anon_sym_loop] = ACTIONS(2070), + [anon_sym_match] = ACTIONS(2070), + [anon_sym_mod] = ACTIONS(2070), + [anon_sym_pub] = ACTIONS(2070), + [anon_sym_return] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2070), + [anon_sym_struct] = ACTIONS(2070), + [anon_sym_trait] = ACTIONS(2070), + [anon_sym_type] = ACTIONS(2070), + [anon_sym_union] = ACTIONS(2070), + [anon_sym_unsafe] = ACTIONS(2070), + [anon_sym_use] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_extern] = ACTIONS(2070), + [anon_sym_yield] = ACTIONS(2070), + [anon_sym_move] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2070), + [sym_integer_literal] = ACTIONS(2068), + [aux_sym_string_literal_token1] = ACTIONS(2068), + [sym_char_literal] = ACTIONS(2068), + [anon_sym_true] = ACTIONS(2070), + [anon_sym_false] = ACTIONS(2070), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2070), + [sym_super] = ACTIONS(2070), + [sym_crate] = ACTIONS(2070), + [sym_metavariable] = ACTIONS(2068), + [sym__raw_string_literal_start] = ACTIONS(2068), + [sym_float_literal] = ACTIONS(2068), + }, + [STATE(536)] = { + [sym_line_comment] = STATE(536), + [sym_block_comment] = STATE(536), + [ts_builtin_sym_end] = ACTIONS(2072), + [sym_identifier] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_macro_rules_BANG] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2072), + [anon_sym_u8] = ACTIONS(2074), + [anon_sym_i8] = ACTIONS(2074), + [anon_sym_u16] = ACTIONS(2074), + [anon_sym_i16] = ACTIONS(2074), + [anon_sym_u32] = ACTIONS(2074), + [anon_sym_i32] = ACTIONS(2074), + [anon_sym_u64] = ACTIONS(2074), + [anon_sym_i64] = ACTIONS(2074), + [anon_sym_u128] = ACTIONS(2074), + [anon_sym_i128] = ACTIONS(2074), + [anon_sym_isize] = ACTIONS(2074), + [anon_sym_usize] = ACTIONS(2074), + [anon_sym_f32] = ACTIONS(2074), + [anon_sym_f64] = ACTIONS(2074), + [anon_sym_bool] = ACTIONS(2074), + [anon_sym_str] = ACTIONS(2074), + [anon_sym_char] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2072), + [anon_sym_PIPE] = ACTIONS(2072), + [anon_sym_LT] = ACTIONS(2072), + [anon_sym_DOT_DOT] = ACTIONS(2072), + [anon_sym_COLON_COLON] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(2072), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_async] = ACTIONS(2074), + [anon_sym_break] = ACTIONS(2074), + [anon_sym_const] = ACTIONS(2074), + [anon_sym_continue] = ACTIONS(2074), + [anon_sym_default] = ACTIONS(2074), + [anon_sym_enum] = ACTIONS(2074), + [anon_sym_fn] = ACTIONS(2074), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_gen] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2074), + [anon_sym_impl] = ACTIONS(2074), + [anon_sym_let] = ACTIONS(2074), + [anon_sym_loop] = ACTIONS(2074), + [anon_sym_match] = ACTIONS(2074), + [anon_sym_mod] = ACTIONS(2074), + [anon_sym_pub] = ACTIONS(2074), + [anon_sym_return] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2074), + [anon_sym_struct] = ACTIONS(2074), + [anon_sym_trait] = ACTIONS(2074), + [anon_sym_type] = ACTIONS(2074), + [anon_sym_union] = ACTIONS(2074), + [anon_sym_unsafe] = ACTIONS(2074), + [anon_sym_use] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_extern] = ACTIONS(2074), + [anon_sym_yield] = ACTIONS(2074), + [anon_sym_move] = ACTIONS(2074), + [anon_sym_try] = ACTIONS(2074), + [sym_integer_literal] = ACTIONS(2072), + [aux_sym_string_literal_token1] = ACTIONS(2072), + [sym_char_literal] = ACTIONS(2072), + [anon_sym_true] = ACTIONS(2074), + [anon_sym_false] = ACTIONS(2074), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2074), + [sym_super] = ACTIONS(2074), + [sym_crate] = ACTIONS(2074), + [sym_metavariable] = ACTIONS(2072), + [sym__raw_string_literal_start] = ACTIONS(2072), + [sym_float_literal] = ACTIONS(2072), + }, + [STATE(537)] = { + [sym_line_comment] = STATE(537), + [sym_block_comment] = STATE(537), + [ts_builtin_sym_end] = ACTIONS(2076), + [sym_identifier] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2076), + [anon_sym_macro_rules_BANG] = ACTIONS(2076), + [anon_sym_LPAREN] = ACTIONS(2076), + [anon_sym_LBRACK] = ACTIONS(2076), + [anon_sym_LBRACE] = ACTIONS(2076), + [anon_sym_RBRACE] = ACTIONS(2076), + [anon_sym_STAR] = ACTIONS(2076), + [anon_sym_u8] = ACTIONS(2078), + [anon_sym_i8] = ACTIONS(2078), + [anon_sym_u16] = ACTIONS(2078), + [anon_sym_i16] = ACTIONS(2078), + [anon_sym_u32] = ACTIONS(2078), + [anon_sym_i32] = ACTIONS(2078), + [anon_sym_u64] = ACTIONS(2078), + [anon_sym_i64] = ACTIONS(2078), + [anon_sym_u128] = ACTIONS(2078), + [anon_sym_i128] = ACTIONS(2078), + [anon_sym_isize] = ACTIONS(2078), + [anon_sym_usize] = ACTIONS(2078), + [anon_sym_f32] = ACTIONS(2078), + [anon_sym_f64] = ACTIONS(2078), + [anon_sym_bool] = ACTIONS(2078), + [anon_sym_str] = ACTIONS(2078), + [anon_sym_char] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2076), + [anon_sym_BANG] = ACTIONS(2076), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2076), + [anon_sym_DOT_DOT] = ACTIONS(2076), + [anon_sym_COLON_COLON] = ACTIONS(2076), + [anon_sym_POUND] = ACTIONS(2076), + [anon_sym_SQUOTE] = ACTIONS(2078), + [anon_sym_async] = ACTIONS(2078), + [anon_sym_break] = ACTIONS(2078), + [anon_sym_const] = ACTIONS(2078), + [anon_sym_continue] = ACTIONS(2078), + [anon_sym_default] = ACTIONS(2078), + [anon_sym_enum] = ACTIONS(2078), + [anon_sym_fn] = ACTIONS(2078), + [anon_sym_for] = ACTIONS(2078), + [anon_sym_gen] = ACTIONS(2078), + [anon_sym_if] = ACTIONS(2078), + [anon_sym_impl] = ACTIONS(2078), + [anon_sym_let] = ACTIONS(2078), + [anon_sym_loop] = ACTIONS(2078), + [anon_sym_match] = ACTIONS(2078), + [anon_sym_mod] = ACTIONS(2078), + [anon_sym_pub] = ACTIONS(2078), + [anon_sym_return] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2078), + [anon_sym_struct] = ACTIONS(2078), + [anon_sym_trait] = ACTIONS(2078), + [anon_sym_type] = ACTIONS(2078), + [anon_sym_union] = ACTIONS(2078), + [anon_sym_unsafe] = ACTIONS(2078), + [anon_sym_use] = ACTIONS(2078), + [anon_sym_while] = ACTIONS(2078), + [anon_sym_extern] = ACTIONS(2078), + [anon_sym_yield] = ACTIONS(2078), + [anon_sym_move] = ACTIONS(2078), + [anon_sym_try] = ACTIONS(2078), + [sym_integer_literal] = ACTIONS(2076), + [aux_sym_string_literal_token1] = ACTIONS(2076), + [sym_char_literal] = ACTIONS(2076), + [anon_sym_true] = ACTIONS(2078), + [anon_sym_false] = ACTIONS(2078), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2078), + [sym_super] = ACTIONS(2078), + [sym_crate] = ACTIONS(2078), + [sym_metavariable] = ACTIONS(2076), + [sym__raw_string_literal_start] = ACTIONS(2076), + [sym_float_literal] = ACTIONS(2076), + }, + [STATE(538)] = { + [sym_line_comment] = STATE(538), + [sym_block_comment] = STATE(538), + [ts_builtin_sym_end] = ACTIONS(2080), + [sym_identifier] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2080), + [anon_sym_macro_rules_BANG] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_RBRACE] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(2080), + [anon_sym_u8] = ACTIONS(2082), + [anon_sym_i8] = ACTIONS(2082), + [anon_sym_u16] = ACTIONS(2082), + [anon_sym_i16] = ACTIONS(2082), + [anon_sym_u32] = ACTIONS(2082), + [anon_sym_i32] = ACTIONS(2082), + [anon_sym_u64] = ACTIONS(2082), + [anon_sym_i64] = ACTIONS(2082), + [anon_sym_u128] = ACTIONS(2082), + [anon_sym_i128] = ACTIONS(2082), + [anon_sym_isize] = ACTIONS(2082), + [anon_sym_usize] = ACTIONS(2082), + [anon_sym_f32] = ACTIONS(2082), + [anon_sym_f64] = ACTIONS(2082), + [anon_sym_bool] = ACTIONS(2082), + [anon_sym_str] = ACTIONS(2082), + [anon_sym_char] = ACTIONS(2082), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_AMP] = ACTIONS(2080), + [anon_sym_PIPE] = ACTIONS(2080), + [anon_sym_LT] = ACTIONS(2080), + [anon_sym_DOT_DOT] = ACTIONS(2080), + [anon_sym_COLON_COLON] = ACTIONS(2080), + [anon_sym_POUND] = ACTIONS(2080), + [anon_sym_SQUOTE] = ACTIONS(2082), + [anon_sym_async] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_const] = ACTIONS(2082), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_default] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_fn] = ACTIONS(2082), + [anon_sym_for] = ACTIONS(2082), + [anon_sym_gen] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2082), + [anon_sym_impl] = ACTIONS(2082), + [anon_sym_let] = ACTIONS(2082), + [anon_sym_loop] = ACTIONS(2082), + [anon_sym_match] = ACTIONS(2082), + [anon_sym_mod] = ACTIONS(2082), + [anon_sym_pub] = ACTIONS(2082), + [anon_sym_return] = ACTIONS(2082), + [anon_sym_static] = ACTIONS(2082), + [anon_sym_struct] = ACTIONS(2082), + [anon_sym_trait] = ACTIONS(2082), + [anon_sym_type] = ACTIONS(2082), + [anon_sym_union] = ACTIONS(2082), + [anon_sym_unsafe] = ACTIONS(2082), + [anon_sym_use] = ACTIONS(2082), + [anon_sym_while] = ACTIONS(2082), + [anon_sym_extern] = ACTIONS(2082), + [anon_sym_yield] = ACTIONS(2082), + [anon_sym_move] = ACTIONS(2082), + [anon_sym_try] = ACTIONS(2082), + [sym_integer_literal] = ACTIONS(2080), + [aux_sym_string_literal_token1] = ACTIONS(2080), + [sym_char_literal] = ACTIONS(2080), + [anon_sym_true] = ACTIONS(2082), + [anon_sym_false] = ACTIONS(2082), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2082), + [sym_super] = ACTIONS(2082), + [sym_crate] = ACTIONS(2082), + [sym_metavariable] = ACTIONS(2080), + [sym__raw_string_literal_start] = ACTIONS(2080), + [sym_float_literal] = ACTIONS(2080), + }, + [STATE(539)] = { + [sym_line_comment] = STATE(539), + [sym_block_comment] = STATE(539), + [ts_builtin_sym_end] = ACTIONS(2084), + [sym_identifier] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2084), + [anon_sym_macro_rules_BANG] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_RBRACE] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2084), + [anon_sym_u8] = ACTIONS(2086), + [anon_sym_i8] = ACTIONS(2086), + [anon_sym_u16] = ACTIONS(2086), + [anon_sym_i16] = ACTIONS(2086), + [anon_sym_u32] = ACTIONS(2086), + [anon_sym_i32] = ACTIONS(2086), + [anon_sym_u64] = ACTIONS(2086), + [anon_sym_i64] = ACTIONS(2086), + [anon_sym_u128] = ACTIONS(2086), + [anon_sym_i128] = ACTIONS(2086), + [anon_sym_isize] = ACTIONS(2086), + [anon_sym_usize] = ACTIONS(2086), + [anon_sym_f32] = ACTIONS(2086), + [anon_sym_f64] = ACTIONS(2086), + [anon_sym_bool] = ACTIONS(2086), + [anon_sym_str] = ACTIONS(2086), + [anon_sym_char] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_BANG] = ACTIONS(2084), + [anon_sym_AMP] = ACTIONS(2084), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_DOT_DOT] = ACTIONS(2084), + [anon_sym_COLON_COLON] = ACTIONS(2084), + [anon_sym_POUND] = ACTIONS(2084), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_async] = ACTIONS(2086), + [anon_sym_break] = ACTIONS(2086), + [anon_sym_const] = ACTIONS(2086), + [anon_sym_continue] = ACTIONS(2086), + [anon_sym_default] = ACTIONS(2086), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_fn] = ACTIONS(2086), + [anon_sym_for] = ACTIONS(2086), + [anon_sym_gen] = ACTIONS(2086), + [anon_sym_if] = ACTIONS(2086), + [anon_sym_impl] = ACTIONS(2086), + [anon_sym_let] = ACTIONS(2086), + [anon_sym_loop] = ACTIONS(2086), + [anon_sym_match] = ACTIONS(2086), + [anon_sym_mod] = ACTIONS(2086), + [anon_sym_pub] = ACTIONS(2086), + [anon_sym_return] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(2086), + [anon_sym_trait] = ACTIONS(2086), + [anon_sym_type] = ACTIONS(2086), + [anon_sym_union] = ACTIONS(2086), + [anon_sym_unsafe] = ACTIONS(2086), + [anon_sym_use] = ACTIONS(2086), + [anon_sym_while] = ACTIONS(2086), + [anon_sym_extern] = ACTIONS(2086), + [anon_sym_yield] = ACTIONS(2086), + [anon_sym_move] = ACTIONS(2086), + [anon_sym_try] = ACTIONS(2086), + [sym_integer_literal] = ACTIONS(2084), + [aux_sym_string_literal_token1] = ACTIONS(2084), + [sym_char_literal] = ACTIONS(2084), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2086), + [sym_super] = ACTIONS(2086), + [sym_crate] = ACTIONS(2086), + [sym_metavariable] = ACTIONS(2084), + [sym__raw_string_literal_start] = ACTIONS(2084), + [sym_float_literal] = ACTIONS(2084), + }, + [STATE(540)] = { + [sym_line_comment] = STATE(540), + [sym_block_comment] = STATE(540), + [ts_builtin_sym_end] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym_macro_rules_BANG] = ACTIONS(2088), + [anon_sym_LPAREN] = ACTIONS(2088), + [anon_sym_LBRACK] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2088), + [anon_sym_RBRACE] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2088), + [anon_sym_u8] = ACTIONS(2090), + [anon_sym_i8] = ACTIONS(2090), + [anon_sym_u16] = ACTIONS(2090), + [anon_sym_i16] = ACTIONS(2090), + [anon_sym_u32] = ACTIONS(2090), + [anon_sym_i32] = ACTIONS(2090), + [anon_sym_u64] = ACTIONS(2090), + [anon_sym_i64] = ACTIONS(2090), + [anon_sym_u128] = ACTIONS(2090), + [anon_sym_i128] = ACTIONS(2090), + [anon_sym_isize] = ACTIONS(2090), + [anon_sym_usize] = ACTIONS(2090), + [anon_sym_f32] = ACTIONS(2090), + [anon_sym_f64] = ACTIONS(2090), + [anon_sym_bool] = ACTIONS(2090), + [anon_sym_str] = ACTIONS(2090), + [anon_sym_char] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_AMP] = ACTIONS(2088), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2088), + [anon_sym_DOT_DOT] = ACTIONS(2088), + [anon_sym_COLON_COLON] = ACTIONS(2088), + [anon_sym_POUND] = ACTIONS(2088), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_gen] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_impl] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_loop] = ACTIONS(2090), + [anon_sym_match] = ACTIONS(2090), + [anon_sym_mod] = ACTIONS(2090), + [anon_sym_pub] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_trait] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2090), + [anon_sym_unsafe] = ACTIONS(2090), + [anon_sym_use] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_extern] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_move] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2088), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2090), + [anon_sym_false] = ACTIONS(2090), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_crate] = ACTIONS(2090), + [sym_metavariable] = ACTIONS(2088), + [sym__raw_string_literal_start] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), + }, + [STATE(541)] = { + [sym_line_comment] = STATE(541), + [sym_block_comment] = STATE(541), + [ts_builtin_sym_end] = ACTIONS(2092), + [sym_identifier] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_macro_rules_BANG] = ACTIONS(2092), + [anon_sym_LPAREN] = ACTIONS(2092), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_LBRACE] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2092), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_u8] = ACTIONS(2094), + [anon_sym_i8] = ACTIONS(2094), + [anon_sym_u16] = ACTIONS(2094), + [anon_sym_i16] = ACTIONS(2094), + [anon_sym_u32] = ACTIONS(2094), + [anon_sym_i32] = ACTIONS(2094), + [anon_sym_u64] = ACTIONS(2094), + [anon_sym_i64] = ACTIONS(2094), + [anon_sym_u128] = ACTIONS(2094), + [anon_sym_i128] = ACTIONS(2094), + [anon_sym_isize] = ACTIONS(2094), + [anon_sym_usize] = ACTIONS(2094), + [anon_sym_f32] = ACTIONS(2094), + [anon_sym_f64] = ACTIONS(2094), + [anon_sym_bool] = ACTIONS(2094), + [anon_sym_str] = ACTIONS(2094), + [anon_sym_char] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2092), + [anon_sym_BANG] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_DOT_DOT] = ACTIONS(2092), + [anon_sym_COLON_COLON] = ACTIONS(2092), + [anon_sym_POUND] = ACTIONS(2092), + [anon_sym_SQUOTE] = ACTIONS(2094), + [anon_sym_async] = ACTIONS(2094), + [anon_sym_break] = ACTIONS(2094), + [anon_sym_const] = ACTIONS(2094), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_default] = ACTIONS(2094), + [anon_sym_enum] = ACTIONS(2094), + [anon_sym_fn] = ACTIONS(2094), + [anon_sym_for] = ACTIONS(2094), + [anon_sym_gen] = ACTIONS(2094), + [anon_sym_if] = ACTIONS(2094), + [anon_sym_impl] = ACTIONS(2094), + [anon_sym_let] = ACTIONS(2094), + [anon_sym_loop] = ACTIONS(2094), + [anon_sym_match] = ACTIONS(2094), + [anon_sym_mod] = ACTIONS(2094), + [anon_sym_pub] = ACTIONS(2094), + [anon_sym_return] = ACTIONS(2094), + [anon_sym_static] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(2094), + [anon_sym_trait] = ACTIONS(2094), + [anon_sym_type] = ACTIONS(2094), + [anon_sym_union] = ACTIONS(2094), + [anon_sym_unsafe] = ACTIONS(2094), + [anon_sym_use] = ACTIONS(2094), + [anon_sym_while] = ACTIONS(2094), + [anon_sym_extern] = ACTIONS(2094), + [anon_sym_yield] = ACTIONS(2094), + [anon_sym_move] = ACTIONS(2094), + [anon_sym_try] = ACTIONS(2094), + [sym_integer_literal] = ACTIONS(2092), + [aux_sym_string_literal_token1] = ACTIONS(2092), + [sym_char_literal] = ACTIONS(2092), + [anon_sym_true] = ACTIONS(2094), + [anon_sym_false] = ACTIONS(2094), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2094), + [sym_super] = ACTIONS(2094), + [sym_crate] = ACTIONS(2094), + [sym_metavariable] = ACTIONS(2092), + [sym__raw_string_literal_start] = ACTIONS(2092), + [sym_float_literal] = ACTIONS(2092), + }, + [STATE(542)] = { + [sym_line_comment] = STATE(542), + [sym_block_comment] = STATE(542), + [ts_builtin_sym_end] = ACTIONS(2096), + [sym_identifier] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2096), + [anon_sym_macro_rules_BANG] = ACTIONS(2096), + [anon_sym_LPAREN] = ACTIONS(2096), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_RBRACE] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2096), + [anon_sym_u8] = ACTIONS(2098), + [anon_sym_i8] = ACTIONS(2098), + [anon_sym_u16] = ACTIONS(2098), + [anon_sym_i16] = ACTIONS(2098), + [anon_sym_u32] = ACTIONS(2098), + [anon_sym_i32] = ACTIONS(2098), + [anon_sym_u64] = ACTIONS(2098), + [anon_sym_i64] = ACTIONS(2098), + [anon_sym_u128] = ACTIONS(2098), + [anon_sym_i128] = ACTIONS(2098), + [anon_sym_isize] = ACTIONS(2098), + [anon_sym_usize] = ACTIONS(2098), + [anon_sym_f32] = ACTIONS(2098), + [anon_sym_f64] = ACTIONS(2098), + [anon_sym_bool] = ACTIONS(2098), + [anon_sym_str] = ACTIONS(2098), + [anon_sym_char] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_PIPE] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(2096), + [anon_sym_DOT_DOT] = ACTIONS(2096), + [anon_sym_COLON_COLON] = ACTIONS(2096), + [anon_sym_POUND] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_async] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_fn] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_gen] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_impl] = ACTIONS(2098), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_loop] = ACTIONS(2098), + [anon_sym_match] = ACTIONS(2098), + [anon_sym_mod] = ACTIONS(2098), + [anon_sym_pub] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_struct] = ACTIONS(2098), + [anon_sym_trait] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_union] = ACTIONS(2098), + [anon_sym_unsafe] = ACTIONS(2098), + [anon_sym_use] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [anon_sym_extern] = ACTIONS(2098), + [anon_sym_yield] = ACTIONS(2098), + [anon_sym_move] = ACTIONS(2098), + [anon_sym_try] = ACTIONS(2098), + [sym_integer_literal] = ACTIONS(2096), + [aux_sym_string_literal_token1] = ACTIONS(2096), + [sym_char_literal] = ACTIONS(2096), + [anon_sym_true] = ACTIONS(2098), + [anon_sym_false] = ACTIONS(2098), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2098), + [sym_super] = ACTIONS(2098), + [sym_crate] = ACTIONS(2098), + [sym_metavariable] = ACTIONS(2096), + [sym__raw_string_literal_start] = ACTIONS(2096), + [sym_float_literal] = ACTIONS(2096), + }, + [STATE(543)] = { + [sym_line_comment] = STATE(543), [sym_block_comment] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_macro_rules_BANG] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_u8] = ACTIONS(2012), - [anon_sym_i8] = ACTIONS(2012), - [anon_sym_u16] = ACTIONS(2012), - [anon_sym_i16] = ACTIONS(2012), - [anon_sym_u32] = ACTIONS(2012), - [anon_sym_i32] = ACTIONS(2012), - [anon_sym_u64] = ACTIONS(2012), - [anon_sym_i64] = ACTIONS(2012), - [anon_sym_u128] = ACTIONS(2012), - [anon_sym_i128] = ACTIONS(2012), - [anon_sym_isize] = ACTIONS(2012), - [anon_sym_usize] = ACTIONS(2012), - [anon_sym_f32] = ACTIONS(2012), - [anon_sym_f64] = ACTIONS(2012), - [anon_sym_bool] = ACTIONS(2012), - [anon_sym_str] = ACTIONS(2012), - [anon_sym_char] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_COLON_COLON] = ACTIONS(2010), - [anon_sym_POUND] = ACTIONS(2010), - [anon_sym_SQUOTE] = ACTIONS(2012), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_break] = ACTIONS(2012), - [anon_sym_const] = ACTIONS(2012), - [anon_sym_continue] = ACTIONS(2012), - [anon_sym_default] = ACTIONS(2012), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_fn] = ACTIONS(2012), - [anon_sym_for] = ACTIONS(2012), - [anon_sym_gen] = ACTIONS(2012), - [anon_sym_if] = ACTIONS(2012), - [anon_sym_impl] = ACTIONS(2012), - [anon_sym_let] = ACTIONS(2012), - [anon_sym_loop] = ACTIONS(2012), - [anon_sym_match] = ACTIONS(2012), - [anon_sym_mod] = ACTIONS(2012), - [anon_sym_pub] = ACTIONS(2012), - [anon_sym_return] = ACTIONS(2012), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_struct] = ACTIONS(2012), - [anon_sym_trait] = ACTIONS(2012), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_union] = ACTIONS(2012), - [anon_sym_unsafe] = ACTIONS(2012), - [anon_sym_use] = ACTIONS(2012), - [anon_sym_while] = ACTIONS(2012), - [anon_sym_extern] = ACTIONS(2012), - [anon_sym_yield] = ACTIONS(2012), - [anon_sym_move] = ACTIONS(2012), - [anon_sym_try] = ACTIONS(2012), - [sym_integer_literal] = ACTIONS(2010), - [aux_sym_string_literal_token1] = ACTIONS(2010), - [sym_char_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(2012), - [anon_sym_false] = ACTIONS(2012), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2012), - [sym_super] = ACTIONS(2012), - [sym_crate] = ACTIONS(2012), - [sym_metavariable] = ACTIONS(2010), - [sym__raw_string_literal_start] = ACTIONS(2010), - [sym_float_literal] = ACTIONS(2010), + [ts_builtin_sym_end] = ACTIONS(2100), + [sym_identifier] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_macro_rules_BANG] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_RBRACE] = ACTIONS(2100), + [anon_sym_STAR] = ACTIONS(2100), + [anon_sym_u8] = ACTIONS(2102), + [anon_sym_i8] = ACTIONS(2102), + [anon_sym_u16] = ACTIONS(2102), + [anon_sym_i16] = ACTIONS(2102), + [anon_sym_u32] = ACTIONS(2102), + [anon_sym_i32] = ACTIONS(2102), + [anon_sym_u64] = ACTIONS(2102), + [anon_sym_i64] = ACTIONS(2102), + [anon_sym_u128] = ACTIONS(2102), + [anon_sym_i128] = ACTIONS(2102), + [anon_sym_isize] = ACTIONS(2102), + [anon_sym_usize] = ACTIONS(2102), + [anon_sym_f32] = ACTIONS(2102), + [anon_sym_f64] = ACTIONS(2102), + [anon_sym_bool] = ACTIONS(2102), + [anon_sym_str] = ACTIONS(2102), + [anon_sym_char] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2100), + [anon_sym_BANG] = ACTIONS(2100), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_DOT_DOT] = ACTIONS(2100), + [anon_sym_COLON_COLON] = ACTIONS(2100), + [anon_sym_POUND] = ACTIONS(2100), + [anon_sym_SQUOTE] = ACTIONS(2102), + [anon_sym_async] = ACTIONS(2102), + [anon_sym_break] = ACTIONS(2102), + [anon_sym_const] = ACTIONS(2102), + [anon_sym_continue] = ACTIONS(2102), + [anon_sym_default] = ACTIONS(2102), + [anon_sym_enum] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(2102), + [anon_sym_for] = ACTIONS(2102), + [anon_sym_gen] = ACTIONS(2102), + [anon_sym_if] = ACTIONS(2102), + [anon_sym_impl] = ACTIONS(2102), + [anon_sym_let] = ACTIONS(2102), + [anon_sym_loop] = ACTIONS(2102), + [anon_sym_match] = ACTIONS(2102), + [anon_sym_mod] = ACTIONS(2102), + [anon_sym_pub] = ACTIONS(2102), + [anon_sym_return] = ACTIONS(2102), + [anon_sym_static] = ACTIONS(2102), + [anon_sym_struct] = ACTIONS(2102), + [anon_sym_trait] = ACTIONS(2102), + [anon_sym_type] = ACTIONS(2102), + [anon_sym_union] = ACTIONS(2102), + [anon_sym_unsafe] = ACTIONS(2102), + [anon_sym_use] = ACTIONS(2102), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_extern] = ACTIONS(2102), + [anon_sym_yield] = ACTIONS(2102), + [anon_sym_move] = ACTIONS(2102), + [anon_sym_try] = ACTIONS(2102), + [sym_integer_literal] = ACTIONS(2100), + [aux_sym_string_literal_token1] = ACTIONS(2100), + [sym_char_literal] = ACTIONS(2100), + [anon_sym_true] = ACTIONS(2102), + [anon_sym_false] = ACTIONS(2102), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2102), + [sym_super] = ACTIONS(2102), + [sym_crate] = ACTIONS(2102), + [sym_metavariable] = ACTIONS(2100), + [sym__raw_string_literal_start] = ACTIONS(2100), + [sym_float_literal] = ACTIONS(2100), }, [STATE(544)] = { [sym_line_comment] = STATE(544), [sym_block_comment] = STATE(544), - [ts_builtin_sym_end] = ACTIONS(2014), - [sym_identifier] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2014), - [anon_sym_macro_rules_BANG] = ACTIONS(2014), - [anon_sym_LPAREN] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2014), - [anon_sym_u8] = ACTIONS(2016), - [anon_sym_i8] = ACTIONS(2016), - [anon_sym_u16] = ACTIONS(2016), - [anon_sym_i16] = ACTIONS(2016), - [anon_sym_u32] = ACTIONS(2016), - [anon_sym_i32] = ACTIONS(2016), - [anon_sym_u64] = ACTIONS(2016), - [anon_sym_i64] = ACTIONS(2016), - [anon_sym_u128] = ACTIONS(2016), - [anon_sym_i128] = ACTIONS(2016), - [anon_sym_isize] = ACTIONS(2016), - [anon_sym_usize] = ACTIONS(2016), - [anon_sym_f32] = ACTIONS(2016), - [anon_sym_f64] = ACTIONS(2016), - [anon_sym_bool] = ACTIONS(2016), - [anon_sym_str] = ACTIONS(2016), - [anon_sym_char] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(2014), - [anon_sym_DOT_DOT] = ACTIONS(2014), - [anon_sym_COLON_COLON] = ACTIONS(2014), - [anon_sym_POUND] = ACTIONS(2014), - [anon_sym_SQUOTE] = ACTIONS(2016), - [anon_sym_async] = ACTIONS(2016), - [anon_sym_break] = ACTIONS(2016), - [anon_sym_const] = ACTIONS(2016), - [anon_sym_continue] = ACTIONS(2016), - [anon_sym_default] = ACTIONS(2016), - [anon_sym_enum] = ACTIONS(2016), - [anon_sym_fn] = ACTIONS(2016), - [anon_sym_for] = ACTIONS(2016), - [anon_sym_gen] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2016), - [anon_sym_impl] = ACTIONS(2016), - [anon_sym_let] = ACTIONS(2016), - [anon_sym_loop] = ACTIONS(2016), - [anon_sym_match] = ACTIONS(2016), - [anon_sym_mod] = ACTIONS(2016), - [anon_sym_pub] = ACTIONS(2016), - [anon_sym_return] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2016), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_trait] = ACTIONS(2016), - [anon_sym_type] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2016), - [anon_sym_unsafe] = ACTIONS(2016), - [anon_sym_use] = ACTIONS(2016), - [anon_sym_while] = ACTIONS(2016), - [anon_sym_extern] = ACTIONS(2016), - [anon_sym_yield] = ACTIONS(2016), - [anon_sym_move] = ACTIONS(2016), - [anon_sym_try] = ACTIONS(2016), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2014), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2016), - [anon_sym_false] = ACTIONS(2016), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2016), - [sym_super] = ACTIONS(2016), - [sym_crate] = ACTIONS(2016), - [sym_metavariable] = ACTIONS(2014), - [sym__raw_string_literal_start] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [ts_builtin_sym_end] = ACTIONS(2104), + [sym_identifier] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_macro_rules_BANG] = ACTIONS(2104), + [anon_sym_LPAREN] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2104), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2104), + [anon_sym_u8] = ACTIONS(2106), + [anon_sym_i8] = ACTIONS(2106), + [anon_sym_u16] = ACTIONS(2106), + [anon_sym_i16] = ACTIONS(2106), + [anon_sym_u32] = ACTIONS(2106), + [anon_sym_i32] = ACTIONS(2106), + [anon_sym_u64] = ACTIONS(2106), + [anon_sym_i64] = ACTIONS(2106), + [anon_sym_u128] = ACTIONS(2106), + [anon_sym_i128] = ACTIONS(2106), + [anon_sym_isize] = ACTIONS(2106), + [anon_sym_usize] = ACTIONS(2106), + [anon_sym_f32] = ACTIONS(2106), + [anon_sym_f64] = ACTIONS(2106), + [anon_sym_bool] = ACTIONS(2106), + [anon_sym_str] = ACTIONS(2106), + [anon_sym_char] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_DOT_DOT] = ACTIONS(2104), + [anon_sym_COLON_COLON] = ACTIONS(2104), + [anon_sym_POUND] = ACTIONS(2104), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_async] = ACTIONS(2106), + [anon_sym_break] = ACTIONS(2106), + [anon_sym_const] = ACTIONS(2106), + [anon_sym_continue] = ACTIONS(2106), + [anon_sym_default] = ACTIONS(2106), + [anon_sym_enum] = ACTIONS(2106), + [anon_sym_fn] = ACTIONS(2106), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_gen] = ACTIONS(2106), + [anon_sym_if] = ACTIONS(2106), + [anon_sym_impl] = ACTIONS(2106), + [anon_sym_let] = ACTIONS(2106), + [anon_sym_loop] = ACTIONS(2106), + [anon_sym_match] = ACTIONS(2106), + [anon_sym_mod] = ACTIONS(2106), + [anon_sym_pub] = ACTIONS(2106), + [anon_sym_return] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(2106), + [anon_sym_trait] = ACTIONS(2106), + [anon_sym_type] = ACTIONS(2106), + [anon_sym_union] = ACTIONS(2106), + [anon_sym_unsafe] = ACTIONS(2106), + [anon_sym_use] = ACTIONS(2106), + [anon_sym_while] = ACTIONS(2106), + [anon_sym_extern] = ACTIONS(2106), + [anon_sym_yield] = ACTIONS(2106), + [anon_sym_move] = ACTIONS(2106), + [anon_sym_try] = ACTIONS(2106), + [sym_integer_literal] = ACTIONS(2104), + [aux_sym_string_literal_token1] = ACTIONS(2104), + [sym_char_literal] = ACTIONS(2104), + [anon_sym_true] = ACTIONS(2106), + [anon_sym_false] = ACTIONS(2106), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2106), + [sym_super] = ACTIONS(2106), + [sym_crate] = ACTIONS(2106), + [sym_metavariable] = ACTIONS(2104), + [sym__raw_string_literal_start] = ACTIONS(2104), + [sym_float_literal] = ACTIONS(2104), }, [STATE(545)] = { [sym_line_comment] = STATE(545), [sym_block_comment] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(2018), - [sym_identifier] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2018), - [anon_sym_macro_rules_BANG] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2018), - [anon_sym_RBRACE] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2020), - [anon_sym_i8] = ACTIONS(2020), - [anon_sym_u16] = ACTIONS(2020), - [anon_sym_i16] = ACTIONS(2020), - [anon_sym_u32] = ACTIONS(2020), - [anon_sym_i32] = ACTIONS(2020), - [anon_sym_u64] = ACTIONS(2020), - [anon_sym_i64] = ACTIONS(2020), - [anon_sym_u128] = ACTIONS(2020), - [anon_sym_i128] = ACTIONS(2020), - [anon_sym_isize] = ACTIONS(2020), - [anon_sym_usize] = ACTIONS(2020), - [anon_sym_f32] = ACTIONS(2020), - [anon_sym_f64] = ACTIONS(2020), - [anon_sym_bool] = ACTIONS(2020), - [anon_sym_str] = ACTIONS(2020), - [anon_sym_char] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_DOT_DOT] = ACTIONS(2018), - [anon_sym_COLON_COLON] = ACTIONS(2018), - [anon_sym_POUND] = ACTIONS(2018), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_async] = ACTIONS(2020), - [anon_sym_break] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_continue] = ACTIONS(2020), - [anon_sym_default] = ACTIONS(2020), - [anon_sym_enum] = ACTIONS(2020), - [anon_sym_fn] = ACTIONS(2020), - [anon_sym_for] = ACTIONS(2020), - [anon_sym_gen] = ACTIONS(2020), - [anon_sym_if] = ACTIONS(2020), - [anon_sym_impl] = ACTIONS(2020), - [anon_sym_let] = ACTIONS(2020), - [anon_sym_loop] = ACTIONS(2020), - [anon_sym_match] = ACTIONS(2020), - [anon_sym_mod] = ACTIONS(2020), - [anon_sym_pub] = ACTIONS(2020), - [anon_sym_return] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2020), - [anon_sym_struct] = ACTIONS(2020), - [anon_sym_trait] = ACTIONS(2020), - [anon_sym_type] = ACTIONS(2020), - [anon_sym_union] = ACTIONS(2020), - [anon_sym_unsafe] = ACTIONS(2020), - [anon_sym_use] = ACTIONS(2020), - [anon_sym_while] = ACTIONS(2020), - [anon_sym_extern] = ACTIONS(2020), - [anon_sym_yield] = ACTIONS(2020), - [anon_sym_move] = ACTIONS(2020), - [anon_sym_try] = ACTIONS(2020), - [sym_integer_literal] = ACTIONS(2018), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2020), - [sym_super] = ACTIONS(2020), - [sym_crate] = ACTIONS(2020), - [sym_metavariable] = ACTIONS(2018), - [sym__raw_string_literal_start] = ACTIONS(2018), - [sym_float_literal] = ACTIONS(2018), + [ts_builtin_sym_end] = ACTIONS(2108), + [sym_identifier] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2108), + [anon_sym_macro_rules_BANG] = ACTIONS(2108), + [anon_sym_LPAREN] = ACTIONS(2108), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2108), + [anon_sym_u8] = ACTIONS(2110), + [anon_sym_i8] = ACTIONS(2110), + [anon_sym_u16] = ACTIONS(2110), + [anon_sym_i16] = ACTIONS(2110), + [anon_sym_u32] = ACTIONS(2110), + [anon_sym_i32] = ACTIONS(2110), + [anon_sym_u64] = ACTIONS(2110), + [anon_sym_i64] = ACTIONS(2110), + [anon_sym_u128] = ACTIONS(2110), + [anon_sym_i128] = ACTIONS(2110), + [anon_sym_isize] = ACTIONS(2110), + [anon_sym_usize] = ACTIONS(2110), + [anon_sym_f32] = ACTIONS(2110), + [anon_sym_f64] = ACTIONS(2110), + [anon_sym_bool] = ACTIONS(2110), + [anon_sym_str] = ACTIONS(2110), + [anon_sym_char] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2108), + [anon_sym_PIPE] = ACTIONS(2108), + [anon_sym_LT] = ACTIONS(2108), + [anon_sym_DOT_DOT] = ACTIONS(2108), + [anon_sym_COLON_COLON] = ACTIONS(2108), + [anon_sym_POUND] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_async] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_default] = ACTIONS(2110), + [anon_sym_enum] = ACTIONS(2110), + [anon_sym_fn] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_gen] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_impl] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_loop] = ACTIONS(2110), + [anon_sym_match] = ACTIONS(2110), + [anon_sym_mod] = ACTIONS(2110), + [anon_sym_pub] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_struct] = ACTIONS(2110), + [anon_sym_trait] = ACTIONS(2110), + [anon_sym_type] = ACTIONS(2110), + [anon_sym_union] = ACTIONS(2110), + [anon_sym_unsafe] = ACTIONS(2110), + [anon_sym_use] = ACTIONS(2110), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_extern] = ACTIONS(2110), + [anon_sym_yield] = ACTIONS(2110), + [anon_sym_move] = ACTIONS(2110), + [anon_sym_try] = ACTIONS(2110), + [sym_integer_literal] = ACTIONS(2108), + [aux_sym_string_literal_token1] = ACTIONS(2108), + [sym_char_literal] = ACTIONS(2108), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2110), + [sym_super] = ACTIONS(2110), + [sym_crate] = ACTIONS(2110), + [sym_metavariable] = ACTIONS(2108), + [sym__raw_string_literal_start] = ACTIONS(2108), + [sym_float_literal] = ACTIONS(2108), }, [STATE(546)] = { [sym_line_comment] = STATE(546), [sym_block_comment] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(2022), - [sym_identifier] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_macro_rules_BANG] = ACTIONS(2022), - [anon_sym_LPAREN] = ACTIONS(2022), - [anon_sym_LBRACK] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2022), - [anon_sym_u8] = ACTIONS(2024), - [anon_sym_i8] = ACTIONS(2024), - [anon_sym_u16] = ACTIONS(2024), - [anon_sym_i16] = ACTIONS(2024), - [anon_sym_u32] = ACTIONS(2024), - [anon_sym_i32] = ACTIONS(2024), - [anon_sym_u64] = ACTIONS(2024), - [anon_sym_i64] = ACTIONS(2024), - [anon_sym_u128] = ACTIONS(2024), - [anon_sym_i128] = ACTIONS(2024), - [anon_sym_isize] = ACTIONS(2024), - [anon_sym_usize] = ACTIONS(2024), - [anon_sym_f32] = ACTIONS(2024), - [anon_sym_f64] = ACTIONS(2024), - [anon_sym_bool] = ACTIONS(2024), - [anon_sym_str] = ACTIONS(2024), - [anon_sym_char] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_AMP] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_DOT_DOT] = ACTIONS(2022), - [anon_sym_COLON_COLON] = ACTIONS(2022), - [anon_sym_POUND] = ACTIONS(2022), - [anon_sym_SQUOTE] = ACTIONS(2024), - [anon_sym_async] = ACTIONS(2024), - [anon_sym_break] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2024), - [anon_sym_continue] = ACTIONS(2024), - [anon_sym_default] = ACTIONS(2024), - [anon_sym_enum] = ACTIONS(2024), - [anon_sym_fn] = ACTIONS(2024), - [anon_sym_for] = ACTIONS(2024), - [anon_sym_gen] = ACTIONS(2024), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_impl] = ACTIONS(2024), - [anon_sym_let] = ACTIONS(2024), - [anon_sym_loop] = ACTIONS(2024), - [anon_sym_match] = ACTIONS(2024), - [anon_sym_mod] = ACTIONS(2024), - [anon_sym_pub] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2024), - [anon_sym_struct] = ACTIONS(2024), - [anon_sym_trait] = ACTIONS(2024), - [anon_sym_type] = ACTIONS(2024), - [anon_sym_union] = ACTIONS(2024), - [anon_sym_unsafe] = ACTIONS(2024), - [anon_sym_use] = ACTIONS(2024), - [anon_sym_while] = ACTIONS(2024), - [anon_sym_extern] = ACTIONS(2024), - [anon_sym_yield] = ACTIONS(2024), - [anon_sym_move] = ACTIONS(2024), - [anon_sym_try] = ACTIONS(2024), - [sym_integer_literal] = ACTIONS(2022), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2024), - [sym_super] = ACTIONS(2024), - [sym_crate] = ACTIONS(2024), - [sym_metavariable] = ACTIONS(2022), - [sym__raw_string_literal_start] = ACTIONS(2022), - [sym_float_literal] = ACTIONS(2022), + [ts_builtin_sym_end] = ACTIONS(2112), + [sym_identifier] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_macro_rules_BANG] = ACTIONS(2112), + [anon_sym_LPAREN] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(2112), + [anon_sym_STAR] = ACTIONS(2112), + [anon_sym_u8] = ACTIONS(2114), + [anon_sym_i8] = ACTIONS(2114), + [anon_sym_u16] = ACTIONS(2114), + [anon_sym_i16] = ACTIONS(2114), + [anon_sym_u32] = ACTIONS(2114), + [anon_sym_i32] = ACTIONS(2114), + [anon_sym_u64] = ACTIONS(2114), + [anon_sym_i64] = ACTIONS(2114), + [anon_sym_u128] = ACTIONS(2114), + [anon_sym_i128] = ACTIONS(2114), + [anon_sym_isize] = ACTIONS(2114), + [anon_sym_usize] = ACTIONS(2114), + [anon_sym_f32] = ACTIONS(2114), + [anon_sym_f64] = ACTIONS(2114), + [anon_sym_bool] = ACTIONS(2114), + [anon_sym_str] = ACTIONS(2114), + [anon_sym_char] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2112), + [anon_sym_BANG] = ACTIONS(2112), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_PIPE] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2112), + [anon_sym_DOT_DOT] = ACTIONS(2112), + [anon_sym_COLON_COLON] = ACTIONS(2112), + [anon_sym_POUND] = ACTIONS(2112), + [anon_sym_SQUOTE] = ACTIONS(2114), + [anon_sym_async] = ACTIONS(2114), + [anon_sym_break] = ACTIONS(2114), + [anon_sym_const] = ACTIONS(2114), + [anon_sym_continue] = ACTIONS(2114), + [anon_sym_default] = ACTIONS(2114), + [anon_sym_enum] = ACTIONS(2114), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_gen] = ACTIONS(2114), + [anon_sym_if] = ACTIONS(2114), + [anon_sym_impl] = ACTIONS(2114), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_loop] = ACTIONS(2114), + [anon_sym_match] = ACTIONS(2114), + [anon_sym_mod] = ACTIONS(2114), + [anon_sym_pub] = ACTIONS(2114), + [anon_sym_return] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2114), + [anon_sym_struct] = ACTIONS(2114), + [anon_sym_trait] = ACTIONS(2114), + [anon_sym_type] = ACTIONS(2114), + [anon_sym_union] = ACTIONS(2114), + [anon_sym_unsafe] = ACTIONS(2114), + [anon_sym_use] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_extern] = ACTIONS(2114), + [anon_sym_yield] = ACTIONS(2114), + [anon_sym_move] = ACTIONS(2114), + [anon_sym_try] = ACTIONS(2114), + [sym_integer_literal] = ACTIONS(2112), + [aux_sym_string_literal_token1] = ACTIONS(2112), + [sym_char_literal] = ACTIONS(2112), + [anon_sym_true] = ACTIONS(2114), + [anon_sym_false] = ACTIONS(2114), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2114), + [sym_super] = ACTIONS(2114), + [sym_crate] = ACTIONS(2114), + [sym_metavariable] = ACTIONS(2112), + [sym__raw_string_literal_start] = ACTIONS(2112), + [sym_float_literal] = ACTIONS(2112), }, [STATE(547)] = { [sym_line_comment] = STATE(547), [sym_block_comment] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(2026), - [sym_identifier] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym_macro_rules_BANG] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2026), - [anon_sym_RBRACE] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_u8] = ACTIONS(2028), - [anon_sym_i8] = ACTIONS(2028), - [anon_sym_u16] = ACTIONS(2028), - [anon_sym_i16] = ACTIONS(2028), - [anon_sym_u32] = ACTIONS(2028), - [anon_sym_i32] = ACTIONS(2028), - [anon_sym_u64] = ACTIONS(2028), - [anon_sym_i64] = ACTIONS(2028), - [anon_sym_u128] = ACTIONS(2028), - [anon_sym_i128] = ACTIONS(2028), - [anon_sym_isize] = ACTIONS(2028), - [anon_sym_usize] = ACTIONS(2028), - [anon_sym_f32] = ACTIONS(2028), - [anon_sym_f64] = ACTIONS(2028), - [anon_sym_bool] = ACTIONS(2028), - [anon_sym_str] = ACTIONS(2028), - [anon_sym_char] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2026), - [anon_sym_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(2026), - [anon_sym_DOT_DOT] = ACTIONS(2026), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_POUND] = ACTIONS(2026), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_async] = ACTIONS(2028), - [anon_sym_break] = ACTIONS(2028), - [anon_sym_const] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(2028), - [anon_sym_default] = ACTIONS(2028), - [anon_sym_enum] = ACTIONS(2028), - [anon_sym_fn] = ACTIONS(2028), - [anon_sym_for] = ACTIONS(2028), - [anon_sym_gen] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(2028), - [anon_sym_impl] = ACTIONS(2028), - [anon_sym_let] = ACTIONS(2028), - [anon_sym_loop] = ACTIONS(2028), - [anon_sym_match] = ACTIONS(2028), - [anon_sym_mod] = ACTIONS(2028), - [anon_sym_pub] = ACTIONS(2028), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2028), - [anon_sym_struct] = ACTIONS(2028), - [anon_sym_trait] = ACTIONS(2028), - [anon_sym_type] = ACTIONS(2028), - [anon_sym_union] = ACTIONS(2028), - [anon_sym_unsafe] = ACTIONS(2028), - [anon_sym_use] = ACTIONS(2028), - [anon_sym_while] = ACTIONS(2028), - [anon_sym_extern] = ACTIONS(2028), - [anon_sym_yield] = ACTIONS(2028), - [anon_sym_move] = ACTIONS(2028), - [anon_sym_try] = ACTIONS(2028), - [sym_integer_literal] = ACTIONS(2026), - [aux_sym_string_literal_token1] = ACTIONS(2026), - [sym_char_literal] = ACTIONS(2026), - [anon_sym_true] = ACTIONS(2028), - [anon_sym_false] = ACTIONS(2028), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2028), - [sym_super] = ACTIONS(2028), - [sym_crate] = ACTIONS(2028), - [sym_metavariable] = ACTIONS(2026), - [sym__raw_string_literal_start] = ACTIONS(2026), - [sym_float_literal] = ACTIONS(2026), + [ts_builtin_sym_end] = ACTIONS(2116), + [sym_identifier] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2116), + [anon_sym_macro_rules_BANG] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2116), + [anon_sym_RBRACE] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2116), + [anon_sym_u8] = ACTIONS(2118), + [anon_sym_i8] = ACTIONS(2118), + [anon_sym_u16] = ACTIONS(2118), + [anon_sym_i16] = ACTIONS(2118), + [anon_sym_u32] = ACTIONS(2118), + [anon_sym_i32] = ACTIONS(2118), + [anon_sym_u64] = ACTIONS(2118), + [anon_sym_i64] = ACTIONS(2118), + [anon_sym_u128] = ACTIONS(2118), + [anon_sym_i128] = ACTIONS(2118), + [anon_sym_isize] = ACTIONS(2118), + [anon_sym_usize] = ACTIONS(2118), + [anon_sym_f32] = ACTIONS(2118), + [anon_sym_f64] = ACTIONS(2118), + [anon_sym_bool] = ACTIONS(2118), + [anon_sym_str] = ACTIONS(2118), + [anon_sym_char] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2116), + [anon_sym_AMP] = ACTIONS(2116), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_LT] = ACTIONS(2116), + [anon_sym_DOT_DOT] = ACTIONS(2116), + [anon_sym_COLON_COLON] = ACTIONS(2116), + [anon_sym_POUND] = ACTIONS(2116), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_async] = ACTIONS(2118), + [anon_sym_break] = ACTIONS(2118), + [anon_sym_const] = ACTIONS(2118), + [anon_sym_continue] = ACTIONS(2118), + [anon_sym_default] = ACTIONS(2118), + [anon_sym_enum] = ACTIONS(2118), + [anon_sym_fn] = ACTIONS(2118), + [anon_sym_for] = ACTIONS(2118), + [anon_sym_gen] = ACTIONS(2118), + [anon_sym_if] = ACTIONS(2118), + [anon_sym_impl] = ACTIONS(2118), + [anon_sym_let] = ACTIONS(2118), + [anon_sym_loop] = ACTIONS(2118), + [anon_sym_match] = ACTIONS(2118), + [anon_sym_mod] = ACTIONS(2118), + [anon_sym_pub] = ACTIONS(2118), + [anon_sym_return] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2118), + [anon_sym_struct] = ACTIONS(2118), + [anon_sym_trait] = ACTIONS(2118), + [anon_sym_type] = ACTIONS(2118), + [anon_sym_union] = ACTIONS(2118), + [anon_sym_unsafe] = ACTIONS(2118), + [anon_sym_use] = ACTIONS(2118), + [anon_sym_while] = ACTIONS(2118), + [anon_sym_extern] = ACTIONS(2118), + [anon_sym_yield] = ACTIONS(2118), + [anon_sym_move] = ACTIONS(2118), + [anon_sym_try] = ACTIONS(2118), + [sym_integer_literal] = ACTIONS(2116), + [aux_sym_string_literal_token1] = ACTIONS(2116), + [sym_char_literal] = ACTIONS(2116), + [anon_sym_true] = ACTIONS(2118), + [anon_sym_false] = ACTIONS(2118), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2118), + [sym_super] = ACTIONS(2118), + [sym_crate] = ACTIONS(2118), + [sym_metavariable] = ACTIONS(2116), + [sym__raw_string_literal_start] = ACTIONS(2116), + [sym_float_literal] = ACTIONS(2116), }, [STATE(548)] = { [sym_line_comment] = STATE(548), [sym_block_comment] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(2030), - [sym_identifier] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2030), - [anon_sym_macro_rules_BANG] = ACTIONS(2030), - [anon_sym_LPAREN] = ACTIONS(2030), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2030), - [anon_sym_RBRACE] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2030), - [anon_sym_LT] = ACTIONS(2030), - [anon_sym_DOT_DOT] = ACTIONS(2030), - [anon_sym_COLON_COLON] = ACTIONS(2030), - [anon_sym_POUND] = ACTIONS(2030), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_gen] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym_yield] = ACTIONS(2032), - [anon_sym_move] = ACTIONS(2032), - [anon_sym_try] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2030), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2032), - [anon_sym_false] = ACTIONS(2032), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2030), - [sym__raw_string_literal_start] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), + [ts_builtin_sym_end] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_macro_rules_BANG] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_STAR] = ACTIONS(2120), + [anon_sym_u8] = ACTIONS(2122), + [anon_sym_i8] = ACTIONS(2122), + [anon_sym_u16] = ACTIONS(2122), + [anon_sym_i16] = ACTIONS(2122), + [anon_sym_u32] = ACTIONS(2122), + [anon_sym_i32] = ACTIONS(2122), + [anon_sym_u64] = ACTIONS(2122), + [anon_sym_i64] = ACTIONS(2122), + [anon_sym_u128] = ACTIONS(2122), + [anon_sym_i128] = ACTIONS(2122), + [anon_sym_isize] = ACTIONS(2122), + [anon_sym_usize] = ACTIONS(2122), + [anon_sym_f32] = ACTIONS(2122), + [anon_sym_f64] = ACTIONS(2122), + [anon_sym_bool] = ACTIONS(2122), + [anon_sym_str] = ACTIONS(2122), + [anon_sym_char] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_BANG] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2120), + [anon_sym_COLON_COLON] = ACTIONS(2120), + [anon_sym_POUND] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [anon_sym_fn] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_gen] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_impl] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_loop] = ACTIONS(2122), + [anon_sym_match] = ACTIONS(2122), + [anon_sym_mod] = ACTIONS(2122), + [anon_sym_pub] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_struct] = ACTIONS(2122), + [anon_sym_trait] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_union] = ACTIONS(2122), + [anon_sym_unsafe] = ACTIONS(2122), + [anon_sym_use] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_move] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [sym_integer_literal] = ACTIONS(2120), + [aux_sym_string_literal_token1] = ACTIONS(2120), + [sym_char_literal] = ACTIONS(2120), + [anon_sym_true] = ACTIONS(2122), + [anon_sym_false] = ACTIONS(2122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_crate] = ACTIONS(2122), + [sym_metavariable] = ACTIONS(2120), + [sym__raw_string_literal_start] = ACTIONS(2120), + [sym_float_literal] = ACTIONS(2120), }, [STATE(549)] = { [sym_line_comment] = STATE(549), [sym_block_comment] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_macro_rules_BANG] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_u8] = ACTIONS(2036), - [anon_sym_i8] = ACTIONS(2036), - [anon_sym_u16] = ACTIONS(2036), - [anon_sym_i16] = ACTIONS(2036), - [anon_sym_u32] = ACTIONS(2036), - [anon_sym_i32] = ACTIONS(2036), - [anon_sym_u64] = ACTIONS(2036), - [anon_sym_i64] = ACTIONS(2036), - [anon_sym_u128] = ACTIONS(2036), - [anon_sym_i128] = ACTIONS(2036), - [anon_sym_isize] = ACTIONS(2036), - [anon_sym_usize] = ACTIONS(2036), - [anon_sym_f32] = ACTIONS(2036), - [anon_sym_f64] = ACTIONS(2036), - [anon_sym_bool] = ACTIONS(2036), - [anon_sym_str] = ACTIONS(2036), - [anon_sym_char] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2034), - [anon_sym_AMP] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2034), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_POUND] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_fn] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_gen] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_impl] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_mod] = ACTIONS(2036), - [anon_sym_pub] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_trait] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_unsafe] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [anon_sym_extern] = ACTIONS(2036), - [anon_sym_yield] = ACTIONS(2036), - [anon_sym_move] = ACTIONS(2036), - [anon_sym_try] = ACTIONS(2036), - [sym_integer_literal] = ACTIONS(2034), - [aux_sym_string_literal_token1] = ACTIONS(2034), - [sym_char_literal] = ACTIONS(2034), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_crate] = ACTIONS(2036), - [sym_metavariable] = ACTIONS(2034), - [sym__raw_string_literal_start] = ACTIONS(2034), - [sym_float_literal] = ACTIONS(2034), + [ts_builtin_sym_end] = ACTIONS(2124), + [sym_identifier] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_macro_rules_BANG] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2124), + [anon_sym_u8] = ACTIONS(2126), + [anon_sym_i8] = ACTIONS(2126), + [anon_sym_u16] = ACTIONS(2126), + [anon_sym_i16] = ACTIONS(2126), + [anon_sym_u32] = ACTIONS(2126), + [anon_sym_i32] = ACTIONS(2126), + [anon_sym_u64] = ACTIONS(2126), + [anon_sym_i64] = ACTIONS(2126), + [anon_sym_u128] = ACTIONS(2126), + [anon_sym_i128] = ACTIONS(2126), + [anon_sym_isize] = ACTIONS(2126), + [anon_sym_usize] = ACTIONS(2126), + [anon_sym_f32] = ACTIONS(2126), + [anon_sym_f64] = ACTIONS(2126), + [anon_sym_bool] = ACTIONS(2126), + [anon_sym_str] = ACTIONS(2126), + [anon_sym_char] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(2124), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_DOT_DOT] = ACTIONS(2124), + [anon_sym_COLON_COLON] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [anon_sym_fn] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_gen] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_impl] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_loop] = ACTIONS(2126), + [anon_sym_match] = ACTIONS(2126), + [anon_sym_mod] = ACTIONS(2126), + [anon_sym_pub] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_struct] = ACTIONS(2126), + [anon_sym_trait] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_union] = ACTIONS(2126), + [anon_sym_unsafe] = ACTIONS(2126), + [anon_sym_use] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_extern] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_move] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [sym_integer_literal] = ACTIONS(2124), + [aux_sym_string_literal_token1] = ACTIONS(2124), + [sym_char_literal] = ACTIONS(2124), + [anon_sym_true] = ACTIONS(2126), + [anon_sym_false] = ACTIONS(2126), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_crate] = ACTIONS(2126), + [sym_metavariable] = ACTIONS(2124), + [sym__raw_string_literal_start] = ACTIONS(2124), + [sym_float_literal] = ACTIONS(2124), }, [STATE(550)] = { [sym_line_comment] = STATE(550), [sym_block_comment] = STATE(550), - [ts_builtin_sym_end] = ACTIONS(2038), - [sym_identifier] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_macro_rules_BANG] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_LBRACK] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_RBRACE] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_u8] = ACTIONS(2040), - [anon_sym_i8] = ACTIONS(2040), - [anon_sym_u16] = ACTIONS(2040), - [anon_sym_i16] = ACTIONS(2040), - [anon_sym_u32] = ACTIONS(2040), - [anon_sym_i32] = ACTIONS(2040), - [anon_sym_u64] = ACTIONS(2040), - [anon_sym_i64] = ACTIONS(2040), - [anon_sym_u128] = ACTIONS(2040), - [anon_sym_i128] = ACTIONS(2040), - [anon_sym_isize] = ACTIONS(2040), - [anon_sym_usize] = ACTIONS(2040), - [anon_sym_f32] = ACTIONS(2040), - [anon_sym_f64] = ACTIONS(2040), - [anon_sym_bool] = ACTIONS(2040), - [anon_sym_str] = ACTIONS(2040), - [anon_sym_char] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_BANG] = ACTIONS(2038), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_DOT_DOT] = ACTIONS(2038), - [anon_sym_COLON_COLON] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(2038), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_async] = ACTIONS(2040), - [anon_sym_break] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2040), - [anon_sym_continue] = ACTIONS(2040), - [anon_sym_default] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_fn] = ACTIONS(2040), - [anon_sym_for] = ACTIONS(2040), - [anon_sym_gen] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2040), - [anon_sym_impl] = ACTIONS(2040), - [anon_sym_let] = ACTIONS(2040), - [anon_sym_loop] = ACTIONS(2040), - [anon_sym_match] = ACTIONS(2040), - [anon_sym_mod] = ACTIONS(2040), - [anon_sym_pub] = ACTIONS(2040), - [anon_sym_return] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2040), - [anon_sym_struct] = ACTIONS(2040), - [anon_sym_trait] = ACTIONS(2040), - [anon_sym_type] = ACTIONS(2040), - [anon_sym_union] = ACTIONS(2040), - [anon_sym_unsafe] = ACTIONS(2040), - [anon_sym_use] = ACTIONS(2040), - [anon_sym_while] = ACTIONS(2040), - [anon_sym_extern] = ACTIONS(2040), - [anon_sym_yield] = ACTIONS(2040), - [anon_sym_move] = ACTIONS(2040), - [anon_sym_try] = ACTIONS(2040), - [sym_integer_literal] = ACTIONS(2038), - [aux_sym_string_literal_token1] = ACTIONS(2038), - [sym_char_literal] = ACTIONS(2038), - [anon_sym_true] = ACTIONS(2040), - [anon_sym_false] = ACTIONS(2040), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2040), - [sym_super] = ACTIONS(2040), - [sym_crate] = ACTIONS(2040), - [sym_metavariable] = ACTIONS(2038), - [sym__raw_string_literal_start] = ACTIONS(2038), - [sym_float_literal] = ACTIONS(2038), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym_macro_rules_BANG] = ACTIONS(2128), + [anon_sym_LPAREN] = ACTIONS(2128), + [anon_sym_LBRACK] = ACTIONS(2128), + [anon_sym_LBRACE] = ACTIONS(2128), + [anon_sym_RBRACE] = ACTIONS(2128), + [anon_sym_STAR] = ACTIONS(2128), + [anon_sym_u8] = ACTIONS(2130), + [anon_sym_i8] = ACTIONS(2130), + [anon_sym_u16] = ACTIONS(2130), + [anon_sym_i16] = ACTIONS(2130), + [anon_sym_u32] = ACTIONS(2130), + [anon_sym_i32] = ACTIONS(2130), + [anon_sym_u64] = ACTIONS(2130), + [anon_sym_i64] = ACTIONS(2130), + [anon_sym_u128] = ACTIONS(2130), + [anon_sym_i128] = ACTIONS(2130), + [anon_sym_isize] = ACTIONS(2130), + [anon_sym_usize] = ACTIONS(2130), + [anon_sym_f32] = ACTIONS(2130), + [anon_sym_f64] = ACTIONS(2130), + [anon_sym_bool] = ACTIONS(2130), + [anon_sym_str] = ACTIONS(2130), + [anon_sym_char] = ACTIONS(2130), + [anon_sym_DASH] = ACTIONS(2128), + [anon_sym_BANG] = ACTIONS(2128), + [anon_sym_AMP] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(2128), + [anon_sym_LT] = ACTIONS(2128), + [anon_sym_DOT_DOT] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2128), + [anon_sym_POUND] = ACTIONS(2128), + [anon_sym_SQUOTE] = ACTIONS(2130), + [anon_sym_async] = ACTIONS(2130), + [anon_sym_break] = ACTIONS(2130), + [anon_sym_const] = ACTIONS(2130), + [anon_sym_continue] = ACTIONS(2130), + [anon_sym_default] = ACTIONS(2130), + [anon_sym_enum] = ACTIONS(2130), + [anon_sym_fn] = ACTIONS(2130), + [anon_sym_for] = ACTIONS(2130), + [anon_sym_gen] = ACTIONS(2130), + [anon_sym_if] = ACTIONS(2130), + [anon_sym_impl] = ACTIONS(2130), + [anon_sym_let] = ACTIONS(2130), + [anon_sym_loop] = ACTIONS(2130), + [anon_sym_match] = ACTIONS(2130), + [anon_sym_mod] = ACTIONS(2130), + [anon_sym_pub] = ACTIONS(2130), + [anon_sym_return] = ACTIONS(2130), + [anon_sym_static] = ACTIONS(2130), + [anon_sym_struct] = ACTIONS(2130), + [anon_sym_trait] = ACTIONS(2130), + [anon_sym_type] = ACTIONS(2130), + [anon_sym_union] = ACTIONS(2130), + [anon_sym_unsafe] = ACTIONS(2130), + [anon_sym_use] = ACTIONS(2130), + [anon_sym_while] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2130), + [anon_sym_yield] = ACTIONS(2130), + [anon_sym_move] = ACTIONS(2130), + [anon_sym_try] = ACTIONS(2130), + [sym_integer_literal] = ACTIONS(2128), + [aux_sym_string_literal_token1] = ACTIONS(2128), + [sym_char_literal] = ACTIONS(2128), + [anon_sym_true] = ACTIONS(2130), + [anon_sym_false] = ACTIONS(2130), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2130), + [sym_super] = ACTIONS(2130), + [sym_crate] = ACTIONS(2130), + [sym_metavariable] = ACTIONS(2128), + [sym__raw_string_literal_start] = ACTIONS(2128), + [sym_float_literal] = ACTIONS(2128), }, [STATE(551)] = { [sym_line_comment] = STATE(551), [sym_block_comment] = STATE(551), - [ts_builtin_sym_end] = ACTIONS(2042), - [sym_identifier] = ACTIONS(2044), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_macro_rules_BANG] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2042), - [anon_sym_LBRACK] = ACTIONS(2042), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_RBRACE] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_u8] = ACTIONS(2044), - [anon_sym_i8] = ACTIONS(2044), - [anon_sym_u16] = ACTIONS(2044), - [anon_sym_i16] = ACTIONS(2044), - [anon_sym_u32] = ACTIONS(2044), - [anon_sym_i32] = ACTIONS(2044), - [anon_sym_u64] = ACTIONS(2044), - [anon_sym_i64] = ACTIONS(2044), - [anon_sym_u128] = ACTIONS(2044), - [anon_sym_i128] = ACTIONS(2044), - [anon_sym_isize] = ACTIONS(2044), - [anon_sym_usize] = ACTIONS(2044), - [anon_sym_f32] = ACTIONS(2044), - [anon_sym_f64] = ACTIONS(2044), - [anon_sym_bool] = ACTIONS(2044), - [anon_sym_str] = ACTIONS(2044), - [anon_sym_char] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_BANG] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2042), - [anon_sym_PIPE] = ACTIONS(2042), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_DOT_DOT] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(2042), - [anon_sym_POUND] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_async] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_default] = ACTIONS(2044), - [anon_sym_enum] = ACTIONS(2044), - [anon_sym_fn] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2044), - [anon_sym_gen] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_impl] = ACTIONS(2044), - [anon_sym_let] = ACTIONS(2044), - [anon_sym_loop] = ACTIONS(2044), - [anon_sym_match] = ACTIONS(2044), - [anon_sym_mod] = ACTIONS(2044), - [anon_sym_pub] = ACTIONS(2044), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2044), - [anon_sym_struct] = ACTIONS(2044), - [anon_sym_trait] = ACTIONS(2044), - [anon_sym_type] = ACTIONS(2044), - [anon_sym_union] = ACTIONS(2044), - [anon_sym_unsafe] = ACTIONS(2044), - [anon_sym_use] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2044), - [anon_sym_extern] = ACTIONS(2044), - [anon_sym_yield] = ACTIONS(2044), - [anon_sym_move] = ACTIONS(2044), - [anon_sym_try] = ACTIONS(2044), - [sym_integer_literal] = ACTIONS(2042), - [aux_sym_string_literal_token1] = ACTIONS(2042), - [sym_char_literal] = ACTIONS(2042), - [anon_sym_true] = ACTIONS(2044), - [anon_sym_false] = ACTIONS(2044), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2044), - [sym_super] = ACTIONS(2044), - [sym_crate] = ACTIONS(2044), - [sym_metavariable] = ACTIONS(2042), - [sym__raw_string_literal_start] = ACTIONS(2042), - [sym_float_literal] = ACTIONS(2042), + [ts_builtin_sym_end] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym_macro_rules_BANG] = ACTIONS(2132), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_u8] = ACTIONS(2134), + [anon_sym_i8] = ACTIONS(2134), + [anon_sym_u16] = ACTIONS(2134), + [anon_sym_i16] = ACTIONS(2134), + [anon_sym_u32] = ACTIONS(2134), + [anon_sym_i32] = ACTIONS(2134), + [anon_sym_u64] = ACTIONS(2134), + [anon_sym_i64] = ACTIONS(2134), + [anon_sym_u128] = ACTIONS(2134), + [anon_sym_i128] = ACTIONS(2134), + [anon_sym_isize] = ACTIONS(2134), + [anon_sym_usize] = ACTIONS(2134), + [anon_sym_f32] = ACTIONS(2134), + [anon_sym_f64] = ACTIONS(2134), + [anon_sym_bool] = ACTIONS(2134), + [anon_sym_str] = ACTIONS(2134), + [anon_sym_char] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_LT] = ACTIONS(2132), + [anon_sym_DOT_DOT] = ACTIONS(2132), + [anon_sym_COLON_COLON] = ACTIONS(2132), + [anon_sym_POUND] = ACTIONS(2132), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_async] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_fn] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_gen] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_impl] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_loop] = ACTIONS(2134), + [anon_sym_match] = ACTIONS(2134), + [anon_sym_mod] = ACTIONS(2134), + [anon_sym_pub] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_trait] = ACTIONS(2134), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [anon_sym_unsafe] = ACTIONS(2134), + [anon_sym_use] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym_yield] = ACTIONS(2134), + [anon_sym_move] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [sym_integer_literal] = ACTIONS(2132), + [aux_sym_string_literal_token1] = ACTIONS(2132), + [sym_char_literal] = ACTIONS(2132), + [anon_sym_true] = ACTIONS(2134), + [anon_sym_false] = ACTIONS(2134), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_crate] = ACTIONS(2134), + [sym_metavariable] = ACTIONS(2132), + [sym__raw_string_literal_start] = ACTIONS(2132), + [sym_float_literal] = ACTIONS(2132), }, [STATE(552)] = { [sym_line_comment] = STATE(552), [sym_block_comment] = STATE(552), - [ts_builtin_sym_end] = ACTIONS(2046), - [sym_identifier] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_macro_rules_BANG] = ACTIONS(2046), - [anon_sym_LPAREN] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_RBRACE] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_u8] = ACTIONS(2048), - [anon_sym_i8] = ACTIONS(2048), - [anon_sym_u16] = ACTIONS(2048), - [anon_sym_i16] = ACTIONS(2048), - [anon_sym_u32] = ACTIONS(2048), - [anon_sym_i32] = ACTIONS(2048), - [anon_sym_u64] = ACTIONS(2048), - [anon_sym_i64] = ACTIONS(2048), - [anon_sym_u128] = ACTIONS(2048), - [anon_sym_i128] = ACTIONS(2048), - [anon_sym_isize] = ACTIONS(2048), - [anon_sym_usize] = ACTIONS(2048), - [anon_sym_f32] = ACTIONS(2048), - [anon_sym_f64] = ACTIONS(2048), - [anon_sym_bool] = ACTIONS(2048), - [anon_sym_str] = ACTIONS(2048), - [anon_sym_char] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_BANG] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_DOT_DOT] = ACTIONS(2046), - [anon_sym_COLON_COLON] = ACTIONS(2046), - [anon_sym_POUND] = ACTIONS(2046), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_async] = ACTIONS(2048), - [anon_sym_break] = ACTIONS(2048), - [anon_sym_const] = ACTIONS(2048), - [anon_sym_continue] = ACTIONS(2048), - [anon_sym_default] = ACTIONS(2048), - [anon_sym_enum] = ACTIONS(2048), - [anon_sym_fn] = ACTIONS(2048), - [anon_sym_for] = ACTIONS(2048), - [anon_sym_gen] = ACTIONS(2048), - [anon_sym_if] = ACTIONS(2048), - [anon_sym_impl] = ACTIONS(2048), - [anon_sym_let] = ACTIONS(2048), - [anon_sym_loop] = ACTIONS(2048), - [anon_sym_match] = ACTIONS(2048), - [anon_sym_mod] = ACTIONS(2048), - [anon_sym_pub] = ACTIONS(2048), - [anon_sym_return] = ACTIONS(2048), - [anon_sym_static] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(2048), - [anon_sym_trait] = ACTIONS(2048), - [anon_sym_type] = ACTIONS(2048), - [anon_sym_union] = ACTIONS(2048), - [anon_sym_unsafe] = ACTIONS(2048), - [anon_sym_use] = ACTIONS(2048), - [anon_sym_while] = ACTIONS(2048), - [anon_sym_extern] = ACTIONS(2048), - [anon_sym_yield] = ACTIONS(2048), - [anon_sym_move] = ACTIONS(2048), - [anon_sym_try] = ACTIONS(2048), - [sym_integer_literal] = ACTIONS(2046), - [aux_sym_string_literal_token1] = ACTIONS(2046), - [sym_char_literal] = ACTIONS(2046), - [anon_sym_true] = ACTIONS(2048), - [anon_sym_false] = ACTIONS(2048), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2048), - [sym_super] = ACTIONS(2048), - [sym_crate] = ACTIONS(2048), - [sym_metavariable] = ACTIONS(2046), - [sym__raw_string_literal_start] = ACTIONS(2046), - [sym_float_literal] = ACTIONS(2046), + [ts_builtin_sym_end] = ACTIONS(2136), + [sym_identifier] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym_macro_rules_BANG] = ACTIONS(2136), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_u8] = ACTIONS(2138), + [anon_sym_i8] = ACTIONS(2138), + [anon_sym_u16] = ACTIONS(2138), + [anon_sym_i16] = ACTIONS(2138), + [anon_sym_u32] = ACTIONS(2138), + [anon_sym_i32] = ACTIONS(2138), + [anon_sym_u64] = ACTIONS(2138), + [anon_sym_i64] = ACTIONS(2138), + [anon_sym_u128] = ACTIONS(2138), + [anon_sym_i128] = ACTIONS(2138), + [anon_sym_isize] = ACTIONS(2138), + [anon_sym_usize] = ACTIONS(2138), + [anon_sym_f32] = ACTIONS(2138), + [anon_sym_f64] = ACTIONS(2138), + [anon_sym_bool] = ACTIONS(2138), + [anon_sym_str] = ACTIONS(2138), + [anon_sym_char] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_LT] = ACTIONS(2136), + [anon_sym_DOT_DOT] = ACTIONS(2136), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_POUND] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_fn] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_gen] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_impl] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_loop] = ACTIONS(2138), + [anon_sym_match] = ACTIONS(2138), + [anon_sym_mod] = ACTIONS(2138), + [anon_sym_pub] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_trait] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_unsafe] = ACTIONS(2138), + [anon_sym_use] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_move] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [sym_integer_literal] = ACTIONS(2136), + [aux_sym_string_literal_token1] = ACTIONS(2136), + [sym_char_literal] = ACTIONS(2136), + [anon_sym_true] = ACTIONS(2138), + [anon_sym_false] = ACTIONS(2138), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_crate] = ACTIONS(2138), + [sym_metavariable] = ACTIONS(2136), + [sym__raw_string_literal_start] = ACTIONS(2136), + [sym_float_literal] = ACTIONS(2136), }, [STATE(553)] = { [sym_line_comment] = STATE(553), [sym_block_comment] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(2050), - [sym_identifier] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_macro_rules_BANG] = ACTIONS(2050), - [anon_sym_LPAREN] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2050), - [anon_sym_RBRACE] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2050), - [anon_sym_u8] = ACTIONS(2052), - [anon_sym_i8] = ACTIONS(2052), - [anon_sym_u16] = ACTIONS(2052), - [anon_sym_i16] = ACTIONS(2052), - [anon_sym_u32] = ACTIONS(2052), - [anon_sym_i32] = ACTIONS(2052), - [anon_sym_u64] = ACTIONS(2052), - [anon_sym_i64] = ACTIONS(2052), - [anon_sym_u128] = ACTIONS(2052), - [anon_sym_i128] = ACTIONS(2052), - [anon_sym_isize] = ACTIONS(2052), - [anon_sym_usize] = ACTIONS(2052), - [anon_sym_f32] = ACTIONS(2052), - [anon_sym_f64] = ACTIONS(2052), - [anon_sym_bool] = ACTIONS(2052), - [anon_sym_str] = ACTIONS(2052), - [anon_sym_char] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_COLON_COLON] = ACTIONS(2050), - [anon_sym_POUND] = ACTIONS(2050), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_async] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_const] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_default] = ACTIONS(2052), - [anon_sym_enum] = ACTIONS(2052), - [anon_sym_fn] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2052), - [anon_sym_gen] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_impl] = ACTIONS(2052), - [anon_sym_let] = ACTIONS(2052), - [anon_sym_loop] = ACTIONS(2052), - [anon_sym_match] = ACTIONS(2052), - [anon_sym_mod] = ACTIONS(2052), - [anon_sym_pub] = ACTIONS(2052), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2052), - [anon_sym_struct] = ACTIONS(2052), - [anon_sym_trait] = ACTIONS(2052), - [anon_sym_type] = ACTIONS(2052), - [anon_sym_union] = ACTIONS(2052), - [anon_sym_unsafe] = ACTIONS(2052), - [anon_sym_use] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2052), - [anon_sym_extern] = ACTIONS(2052), - [anon_sym_yield] = ACTIONS(2052), - [anon_sym_move] = ACTIONS(2052), - [anon_sym_try] = ACTIONS(2052), - [sym_integer_literal] = ACTIONS(2050), - [aux_sym_string_literal_token1] = ACTIONS(2050), - [sym_char_literal] = ACTIONS(2050), - [anon_sym_true] = ACTIONS(2052), - [anon_sym_false] = ACTIONS(2052), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2052), - [sym_super] = ACTIONS(2052), - [sym_crate] = ACTIONS(2052), - [sym_metavariable] = ACTIONS(2050), - [sym__raw_string_literal_start] = ACTIONS(2050), - [sym_float_literal] = ACTIONS(2050), + [ts_builtin_sym_end] = ACTIONS(2140), + [sym_identifier] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_macro_rules_BANG] = ACTIONS(2140), + [anon_sym_LPAREN] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_u8] = ACTIONS(2142), + [anon_sym_i8] = ACTIONS(2142), + [anon_sym_u16] = ACTIONS(2142), + [anon_sym_i16] = ACTIONS(2142), + [anon_sym_u32] = ACTIONS(2142), + [anon_sym_i32] = ACTIONS(2142), + [anon_sym_u64] = ACTIONS(2142), + [anon_sym_i64] = ACTIONS(2142), + [anon_sym_u128] = ACTIONS(2142), + [anon_sym_i128] = ACTIONS(2142), + [anon_sym_isize] = ACTIONS(2142), + [anon_sym_usize] = ACTIONS(2142), + [anon_sym_f32] = ACTIONS(2142), + [anon_sym_f64] = ACTIONS(2142), + [anon_sym_bool] = ACTIONS(2142), + [anon_sym_str] = ACTIONS(2142), + [anon_sym_char] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(2140), + [anon_sym_DOT_DOT] = ACTIONS(2140), + [anon_sym_COLON_COLON] = ACTIONS(2140), + [anon_sym_POUND] = ACTIONS(2140), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [anon_sym_fn] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_gen] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_impl] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_loop] = ACTIONS(2142), + [anon_sym_match] = ACTIONS(2142), + [anon_sym_mod] = ACTIONS(2142), + [anon_sym_pub] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_struct] = ACTIONS(2142), + [anon_sym_trait] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_union] = ACTIONS(2142), + [anon_sym_unsafe] = ACTIONS(2142), + [anon_sym_use] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_extern] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_move] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [sym_integer_literal] = ACTIONS(2140), + [aux_sym_string_literal_token1] = ACTIONS(2140), + [sym_char_literal] = ACTIONS(2140), + [anon_sym_true] = ACTIONS(2142), + [anon_sym_false] = ACTIONS(2142), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_crate] = ACTIONS(2142), + [sym_metavariable] = ACTIONS(2140), + [sym__raw_string_literal_start] = ACTIONS(2140), + [sym_float_literal] = ACTIONS(2140), }, [STATE(554)] = { [sym_line_comment] = STATE(554), [sym_block_comment] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(2054), - [sym_identifier] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_macro_rules_BANG] = ACTIONS(2054), - [anon_sym_LPAREN] = ACTIONS(2054), - [anon_sym_LBRACK] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2054), - [anon_sym_RBRACE] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2054), - [anon_sym_u8] = ACTIONS(2056), - [anon_sym_i8] = ACTIONS(2056), - [anon_sym_u16] = ACTIONS(2056), - [anon_sym_i16] = ACTIONS(2056), - [anon_sym_u32] = ACTIONS(2056), - [anon_sym_i32] = ACTIONS(2056), - [anon_sym_u64] = ACTIONS(2056), - [anon_sym_i64] = ACTIONS(2056), - [anon_sym_u128] = ACTIONS(2056), - [anon_sym_i128] = ACTIONS(2056), - [anon_sym_isize] = ACTIONS(2056), - [anon_sym_usize] = ACTIONS(2056), - [anon_sym_f32] = ACTIONS(2056), - [anon_sym_f64] = ACTIONS(2056), - [anon_sym_bool] = ACTIONS(2056), - [anon_sym_str] = ACTIONS(2056), - [anon_sym_char] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_BANG] = ACTIONS(2054), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_DOT_DOT] = ACTIONS(2054), - [anon_sym_COLON_COLON] = ACTIONS(2054), - [anon_sym_POUND] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2056), - [anon_sym_async] = ACTIONS(2056), - [anon_sym_break] = ACTIONS(2056), - [anon_sym_const] = ACTIONS(2056), - [anon_sym_continue] = ACTIONS(2056), - [anon_sym_default] = ACTIONS(2056), - [anon_sym_enum] = ACTIONS(2056), - [anon_sym_fn] = ACTIONS(2056), - [anon_sym_for] = ACTIONS(2056), - [anon_sym_gen] = ACTIONS(2056), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_impl] = ACTIONS(2056), - [anon_sym_let] = ACTIONS(2056), - [anon_sym_loop] = ACTIONS(2056), - [anon_sym_match] = ACTIONS(2056), - [anon_sym_mod] = ACTIONS(2056), - [anon_sym_pub] = ACTIONS(2056), - [anon_sym_return] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2056), - [anon_sym_struct] = ACTIONS(2056), - [anon_sym_trait] = ACTIONS(2056), - [anon_sym_type] = ACTIONS(2056), - [anon_sym_union] = ACTIONS(2056), - [anon_sym_unsafe] = ACTIONS(2056), - [anon_sym_use] = ACTIONS(2056), - [anon_sym_while] = ACTIONS(2056), - [anon_sym_extern] = ACTIONS(2056), - [anon_sym_yield] = ACTIONS(2056), - [anon_sym_move] = ACTIONS(2056), - [anon_sym_try] = ACTIONS(2056), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2054), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2056), - [sym_super] = ACTIONS(2056), - [sym_crate] = ACTIONS(2056), - [sym_metavariable] = ACTIONS(2054), - [sym__raw_string_literal_start] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [ts_builtin_sym_end] = ACTIONS(2144), + [sym_identifier] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2144), + [anon_sym_macro_rules_BANG] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_LBRACK] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2144), + [anon_sym_u8] = ACTIONS(2146), + [anon_sym_i8] = ACTIONS(2146), + [anon_sym_u16] = ACTIONS(2146), + [anon_sym_i16] = ACTIONS(2146), + [anon_sym_u32] = ACTIONS(2146), + [anon_sym_i32] = ACTIONS(2146), + [anon_sym_u64] = ACTIONS(2146), + [anon_sym_i64] = ACTIONS(2146), + [anon_sym_u128] = ACTIONS(2146), + [anon_sym_i128] = ACTIONS(2146), + [anon_sym_isize] = ACTIONS(2146), + [anon_sym_usize] = ACTIONS(2146), + [anon_sym_f32] = ACTIONS(2146), + [anon_sym_f64] = ACTIONS(2146), + [anon_sym_bool] = ACTIONS(2146), + [anon_sym_str] = ACTIONS(2146), + [anon_sym_char] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_AMP] = ACTIONS(2144), + [anon_sym_PIPE] = ACTIONS(2144), + [anon_sym_LT] = ACTIONS(2144), + [anon_sym_DOT_DOT] = ACTIONS(2144), + [anon_sym_COLON_COLON] = ACTIONS(2144), + [anon_sym_POUND] = ACTIONS(2144), + [anon_sym_SQUOTE] = ACTIONS(2146), + [anon_sym_async] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2146), + [anon_sym_enum] = ACTIONS(2146), + [anon_sym_fn] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_gen] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_impl] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_mod] = ACTIONS(2146), + [anon_sym_pub] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_static] = ACTIONS(2146), + [anon_sym_struct] = ACTIONS(2146), + [anon_sym_trait] = ACTIONS(2146), + [anon_sym_type] = ACTIONS(2146), + [anon_sym_union] = ACTIONS(2146), + [anon_sym_unsafe] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_yield] = ACTIONS(2146), + [anon_sym_move] = ACTIONS(2146), + [anon_sym_try] = ACTIONS(2146), + [sym_integer_literal] = ACTIONS(2144), + [aux_sym_string_literal_token1] = ACTIONS(2144), + [sym_char_literal] = ACTIONS(2144), + [anon_sym_true] = ACTIONS(2146), + [anon_sym_false] = ACTIONS(2146), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2146), + [sym_super] = ACTIONS(2146), + [sym_crate] = ACTIONS(2146), + [sym_metavariable] = ACTIONS(2144), + [sym__raw_string_literal_start] = ACTIONS(2144), + [sym_float_literal] = ACTIONS(2144), }, [STATE(555)] = { [sym_line_comment] = STATE(555), [sym_block_comment] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_macro_rules_BANG] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2058), - [anon_sym_u8] = ACTIONS(2060), - [anon_sym_i8] = ACTIONS(2060), - [anon_sym_u16] = ACTIONS(2060), - [anon_sym_i16] = ACTIONS(2060), - [anon_sym_u32] = ACTIONS(2060), - [anon_sym_i32] = ACTIONS(2060), - [anon_sym_u64] = ACTIONS(2060), - [anon_sym_i64] = ACTIONS(2060), - [anon_sym_u128] = ACTIONS(2060), - [anon_sym_i128] = ACTIONS(2060), - [anon_sym_isize] = ACTIONS(2060), - [anon_sym_usize] = ACTIONS(2060), - [anon_sym_f32] = ACTIONS(2060), - [anon_sym_f64] = ACTIONS(2060), - [anon_sym_bool] = ACTIONS(2060), - [anon_sym_str] = ACTIONS(2060), - [anon_sym_char] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2058), - [anon_sym_COLON_COLON] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - [anon_sym_fn] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_gen] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_impl] = ACTIONS(2060), - [anon_sym_let] = ACTIONS(2060), - [anon_sym_loop] = ACTIONS(2060), - [anon_sym_match] = ACTIONS(2060), - [anon_sym_mod] = ACTIONS(2060), - [anon_sym_pub] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2060), - [anon_sym_struct] = ACTIONS(2060), - [anon_sym_trait] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_union] = ACTIONS(2060), - [anon_sym_unsafe] = ACTIONS(2060), - [anon_sym_use] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_extern] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [anon_sym_move] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [sym_integer_literal] = ACTIONS(2058), - [aux_sym_string_literal_token1] = ACTIONS(2058), - [sym_char_literal] = ACTIONS(2058), - [anon_sym_true] = ACTIONS(2060), - [anon_sym_false] = ACTIONS(2060), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2060), - [sym_super] = ACTIONS(2060), - [sym_crate] = ACTIONS(2060), - [sym_metavariable] = ACTIONS(2058), - [sym__raw_string_literal_start] = ACTIONS(2058), - [sym_float_literal] = ACTIONS(2058), + [ts_builtin_sym_end] = ACTIONS(2148), + [sym_identifier] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_macro_rules_BANG] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(2148), + [anon_sym_u8] = ACTIONS(2150), + [anon_sym_i8] = ACTIONS(2150), + [anon_sym_u16] = ACTIONS(2150), + [anon_sym_i16] = ACTIONS(2150), + [anon_sym_u32] = ACTIONS(2150), + [anon_sym_i32] = ACTIONS(2150), + [anon_sym_u64] = ACTIONS(2150), + [anon_sym_i64] = ACTIONS(2150), + [anon_sym_u128] = ACTIONS(2150), + [anon_sym_i128] = ACTIONS(2150), + [anon_sym_isize] = ACTIONS(2150), + [anon_sym_usize] = ACTIONS(2150), + [anon_sym_f32] = ACTIONS(2150), + [anon_sym_f64] = ACTIONS(2150), + [anon_sym_bool] = ACTIONS(2150), + [anon_sym_str] = ACTIONS(2150), + [anon_sym_char] = ACTIONS(2150), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2148), + [anon_sym_AMP] = ACTIONS(2148), + [anon_sym_PIPE] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(2148), + [anon_sym_DOT_DOT] = ACTIONS(2148), + [anon_sym_COLON_COLON] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(2148), + [anon_sym_SQUOTE] = ACTIONS(2150), + [anon_sym_async] = ACTIONS(2150), + [anon_sym_break] = ACTIONS(2150), + [anon_sym_const] = ACTIONS(2150), + [anon_sym_continue] = ACTIONS(2150), + [anon_sym_default] = ACTIONS(2150), + [anon_sym_enum] = ACTIONS(2150), + [anon_sym_fn] = ACTIONS(2150), + [anon_sym_for] = ACTIONS(2150), + [anon_sym_gen] = ACTIONS(2150), + [anon_sym_if] = ACTIONS(2150), + [anon_sym_impl] = ACTIONS(2150), + [anon_sym_let] = ACTIONS(2150), + [anon_sym_loop] = ACTIONS(2150), + [anon_sym_match] = ACTIONS(2150), + [anon_sym_mod] = ACTIONS(2150), + [anon_sym_pub] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2150), + [anon_sym_static] = ACTIONS(2150), + [anon_sym_struct] = ACTIONS(2150), + [anon_sym_trait] = ACTIONS(2150), + [anon_sym_type] = ACTIONS(2150), + [anon_sym_union] = ACTIONS(2150), + [anon_sym_unsafe] = ACTIONS(2150), + [anon_sym_use] = ACTIONS(2150), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_extern] = ACTIONS(2150), + [anon_sym_yield] = ACTIONS(2150), + [anon_sym_move] = ACTIONS(2150), + [anon_sym_try] = ACTIONS(2150), + [sym_integer_literal] = ACTIONS(2148), + [aux_sym_string_literal_token1] = ACTIONS(2148), + [sym_char_literal] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2150), + [anon_sym_false] = ACTIONS(2150), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2150), + [sym_super] = ACTIONS(2150), + [sym_crate] = ACTIONS(2150), + [sym_metavariable] = ACTIONS(2148), + [sym__raw_string_literal_start] = ACTIONS(2148), + [sym_float_literal] = ACTIONS(2148), }, [STATE(556)] = { [sym_line_comment] = STATE(556), [sym_block_comment] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(2062), - [sym_identifier] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_macro_rules_BANG] = ACTIONS(2062), - [anon_sym_LPAREN] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2062), - [anon_sym_u8] = ACTIONS(2064), - [anon_sym_i8] = ACTIONS(2064), - [anon_sym_u16] = ACTIONS(2064), - [anon_sym_i16] = ACTIONS(2064), - [anon_sym_u32] = ACTIONS(2064), - [anon_sym_i32] = ACTIONS(2064), - [anon_sym_u64] = ACTIONS(2064), - [anon_sym_i64] = ACTIONS(2064), - [anon_sym_u128] = ACTIONS(2064), - [anon_sym_i128] = ACTIONS(2064), - [anon_sym_isize] = ACTIONS(2064), - [anon_sym_usize] = ACTIONS(2064), - [anon_sym_f32] = ACTIONS(2064), - [anon_sym_f64] = ACTIONS(2064), - [anon_sym_bool] = ACTIONS(2064), - [anon_sym_str] = ACTIONS(2064), - [anon_sym_char] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_BANG] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [anon_sym_COLON_COLON] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(2062), - [anon_sym_SQUOTE] = ACTIONS(2064), - [anon_sym_async] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_default] = ACTIONS(2064), - [anon_sym_enum] = ACTIONS(2064), - [anon_sym_fn] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_gen] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_impl] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_mod] = ACTIONS(2064), - [anon_sym_pub] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_static] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(2064), - [anon_sym_trait] = ACTIONS(2064), - [anon_sym_type] = ACTIONS(2064), - [anon_sym_union] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_yield] = ACTIONS(2064), - [anon_sym_move] = ACTIONS(2064), - [anon_sym_try] = ACTIONS(2064), - [sym_integer_literal] = ACTIONS(2062), - [aux_sym_string_literal_token1] = ACTIONS(2062), - [sym_char_literal] = ACTIONS(2062), - [anon_sym_true] = ACTIONS(2064), - [anon_sym_false] = ACTIONS(2064), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2064), - [sym_super] = ACTIONS(2064), - [sym_crate] = ACTIONS(2064), - [sym_metavariable] = ACTIONS(2062), - [sym__raw_string_literal_start] = ACTIONS(2062), - [sym_float_literal] = ACTIONS(2062), + [ts_builtin_sym_end] = ACTIONS(2152), + [sym_identifier] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_macro_rules_BANG] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(2152), + [anon_sym_u8] = ACTIONS(2154), + [anon_sym_i8] = ACTIONS(2154), + [anon_sym_u16] = ACTIONS(2154), + [anon_sym_i16] = ACTIONS(2154), + [anon_sym_u32] = ACTIONS(2154), + [anon_sym_i32] = ACTIONS(2154), + [anon_sym_u64] = ACTIONS(2154), + [anon_sym_i64] = ACTIONS(2154), + [anon_sym_u128] = ACTIONS(2154), + [anon_sym_i128] = ACTIONS(2154), + [anon_sym_isize] = ACTIONS(2154), + [anon_sym_usize] = ACTIONS(2154), + [anon_sym_f32] = ACTIONS(2154), + [anon_sym_f64] = ACTIONS(2154), + [anon_sym_bool] = ACTIONS(2154), + [anon_sym_str] = ACTIONS(2154), + [anon_sym_char] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2152), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_DOT_DOT] = ACTIONS(2152), + [anon_sym_COLON_COLON] = ACTIONS(2152), + [anon_sym_POUND] = ACTIONS(2152), + [anon_sym_SQUOTE] = ACTIONS(2154), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_break] = ACTIONS(2154), + [anon_sym_const] = ACTIONS(2154), + [anon_sym_continue] = ACTIONS(2154), + [anon_sym_default] = ACTIONS(2154), + [anon_sym_enum] = ACTIONS(2154), + [anon_sym_fn] = ACTIONS(2154), + [anon_sym_for] = ACTIONS(2154), + [anon_sym_gen] = ACTIONS(2154), + [anon_sym_if] = ACTIONS(2154), + [anon_sym_impl] = ACTIONS(2154), + [anon_sym_let] = ACTIONS(2154), + [anon_sym_loop] = ACTIONS(2154), + [anon_sym_match] = ACTIONS(2154), + [anon_sym_mod] = ACTIONS(2154), + [anon_sym_pub] = ACTIONS(2154), + [anon_sym_return] = ACTIONS(2154), + [anon_sym_static] = ACTIONS(2154), + [anon_sym_struct] = ACTIONS(2154), + [anon_sym_trait] = ACTIONS(2154), + [anon_sym_type] = ACTIONS(2154), + [anon_sym_union] = ACTIONS(2154), + [anon_sym_unsafe] = ACTIONS(2154), + [anon_sym_use] = ACTIONS(2154), + [anon_sym_while] = ACTIONS(2154), + [anon_sym_extern] = ACTIONS(2154), + [anon_sym_yield] = ACTIONS(2154), + [anon_sym_move] = ACTIONS(2154), + [anon_sym_try] = ACTIONS(2154), + [sym_integer_literal] = ACTIONS(2152), + [aux_sym_string_literal_token1] = ACTIONS(2152), + [sym_char_literal] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2154), + [anon_sym_false] = ACTIONS(2154), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2154), + [sym_super] = ACTIONS(2154), + [sym_crate] = ACTIONS(2154), + [sym_metavariable] = ACTIONS(2152), + [sym__raw_string_literal_start] = ACTIONS(2152), + [sym_float_literal] = ACTIONS(2152), }, [STATE(557)] = { [sym_line_comment] = STATE(557), [sym_block_comment] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(2066), - [sym_identifier] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_macro_rules_BANG] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_u8] = ACTIONS(2068), - [anon_sym_i8] = ACTIONS(2068), - [anon_sym_u16] = ACTIONS(2068), - [anon_sym_i16] = ACTIONS(2068), - [anon_sym_u32] = ACTIONS(2068), - [anon_sym_i32] = ACTIONS(2068), - [anon_sym_u64] = ACTIONS(2068), - [anon_sym_i64] = ACTIONS(2068), - [anon_sym_u128] = ACTIONS(2068), - [anon_sym_i128] = ACTIONS(2068), - [anon_sym_isize] = ACTIONS(2068), - [anon_sym_usize] = ACTIONS(2068), - [anon_sym_f32] = ACTIONS(2068), - [anon_sym_f64] = ACTIONS(2068), - [anon_sym_bool] = ACTIONS(2068), - [anon_sym_str] = ACTIONS(2068), - [anon_sym_char] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_DOT_DOT] = ACTIONS(2066), - [anon_sym_COLON_COLON] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(2066), - [anon_sym_SQUOTE] = ACTIONS(2068), - [anon_sym_async] = ACTIONS(2068), - [anon_sym_break] = ACTIONS(2068), - [anon_sym_const] = ACTIONS(2068), - [anon_sym_continue] = ACTIONS(2068), - [anon_sym_default] = ACTIONS(2068), - [anon_sym_enum] = ACTIONS(2068), - [anon_sym_fn] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(2068), - [anon_sym_gen] = ACTIONS(2068), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_impl] = ACTIONS(2068), - [anon_sym_let] = ACTIONS(2068), - [anon_sym_loop] = ACTIONS(2068), - [anon_sym_match] = ACTIONS(2068), - [anon_sym_mod] = ACTIONS(2068), - [anon_sym_pub] = ACTIONS(2068), - [anon_sym_return] = ACTIONS(2068), - [anon_sym_static] = ACTIONS(2068), - [anon_sym_struct] = ACTIONS(2068), - [anon_sym_trait] = ACTIONS(2068), - [anon_sym_type] = ACTIONS(2068), - [anon_sym_union] = ACTIONS(2068), - [anon_sym_unsafe] = ACTIONS(2068), - [anon_sym_use] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2068), - [anon_sym_extern] = ACTIONS(2068), - [anon_sym_yield] = ACTIONS(2068), - [anon_sym_move] = ACTIONS(2068), - [anon_sym_try] = ACTIONS(2068), - [sym_integer_literal] = ACTIONS(2066), - [aux_sym_string_literal_token1] = ACTIONS(2066), - [sym_char_literal] = ACTIONS(2066), - [anon_sym_true] = ACTIONS(2068), - [anon_sym_false] = ACTIONS(2068), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2068), - [sym_super] = ACTIONS(2068), - [sym_crate] = ACTIONS(2068), - [sym_metavariable] = ACTIONS(2066), - [sym__raw_string_literal_start] = ACTIONS(2066), - [sym_float_literal] = ACTIONS(2066), + [ts_builtin_sym_end] = ACTIONS(2156), + [sym_identifier] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_macro_rules_BANG] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_DOT_DOT] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2158), + [anon_sym_async] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2158), + [anon_sym_const] = ACTIONS(2158), + [anon_sym_continue] = ACTIONS(2158), + [anon_sym_default] = ACTIONS(2158), + [anon_sym_enum] = ACTIONS(2158), + [anon_sym_fn] = ACTIONS(2158), + [anon_sym_for] = ACTIONS(2158), + [anon_sym_gen] = ACTIONS(2158), + [anon_sym_if] = ACTIONS(2158), + [anon_sym_impl] = ACTIONS(2158), + [anon_sym_let] = ACTIONS(2158), + [anon_sym_loop] = ACTIONS(2158), + [anon_sym_match] = ACTIONS(2158), + [anon_sym_mod] = ACTIONS(2158), + [anon_sym_pub] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2158), + [anon_sym_static] = ACTIONS(2158), + [anon_sym_struct] = ACTIONS(2158), + [anon_sym_trait] = ACTIONS(2158), + [anon_sym_type] = ACTIONS(2158), + [anon_sym_union] = ACTIONS(2158), + [anon_sym_unsafe] = ACTIONS(2158), + [anon_sym_use] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2158), + [anon_sym_extern] = ACTIONS(2158), + [anon_sym_yield] = ACTIONS(2158), + [anon_sym_move] = ACTIONS(2158), + [anon_sym_try] = ACTIONS(2158), + [sym_integer_literal] = ACTIONS(2156), + [aux_sym_string_literal_token1] = ACTIONS(2156), + [sym_char_literal] = ACTIONS(2156), + [anon_sym_true] = ACTIONS(2158), + [anon_sym_false] = ACTIONS(2158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2158), + [sym_super] = ACTIONS(2158), + [sym_crate] = ACTIONS(2158), + [sym_metavariable] = ACTIONS(2156), + [sym__raw_string_literal_start] = ACTIONS(2156), + [sym_float_literal] = ACTIONS(2156), }, [STATE(558)] = { [sym_line_comment] = STATE(558), [sym_block_comment] = STATE(558), - [ts_builtin_sym_end] = ACTIONS(2070), - [sym_identifier] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_macro_rules_BANG] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2070), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2070), - [anon_sym_u8] = ACTIONS(2072), - [anon_sym_i8] = ACTIONS(2072), - [anon_sym_u16] = ACTIONS(2072), - [anon_sym_i16] = ACTIONS(2072), - [anon_sym_u32] = ACTIONS(2072), - [anon_sym_i32] = ACTIONS(2072), - [anon_sym_u64] = ACTIONS(2072), - [anon_sym_i64] = ACTIONS(2072), - [anon_sym_u128] = ACTIONS(2072), - [anon_sym_i128] = ACTIONS(2072), - [anon_sym_isize] = ACTIONS(2072), - [anon_sym_usize] = ACTIONS(2072), - [anon_sym_f32] = ACTIONS(2072), - [anon_sym_f64] = ACTIONS(2072), - [anon_sym_bool] = ACTIONS(2072), - [anon_sym_str] = ACTIONS(2072), - [anon_sym_char] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_DOT_DOT] = ACTIONS(2070), - [anon_sym_COLON_COLON] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(2070), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_async] = ACTIONS(2072), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_const] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2072), - [anon_sym_default] = ACTIONS(2072), - [anon_sym_enum] = ACTIONS(2072), - [anon_sym_fn] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_gen] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2072), - [anon_sym_impl] = ACTIONS(2072), - [anon_sym_let] = ACTIONS(2072), - [anon_sym_loop] = ACTIONS(2072), - [anon_sym_match] = ACTIONS(2072), - [anon_sym_mod] = ACTIONS(2072), - [anon_sym_pub] = ACTIONS(2072), - [anon_sym_return] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2072), - [anon_sym_struct] = ACTIONS(2072), - [anon_sym_trait] = ACTIONS(2072), - [anon_sym_type] = ACTIONS(2072), - [anon_sym_union] = ACTIONS(2072), - [anon_sym_unsafe] = ACTIONS(2072), - [anon_sym_use] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_extern] = ACTIONS(2072), - [anon_sym_yield] = ACTIONS(2072), - [anon_sym_move] = ACTIONS(2072), - [anon_sym_try] = ACTIONS(2072), - [sym_integer_literal] = ACTIONS(2070), - [aux_sym_string_literal_token1] = ACTIONS(2070), - [sym_char_literal] = ACTIONS(2070), - [anon_sym_true] = ACTIONS(2072), - [anon_sym_false] = ACTIONS(2072), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2072), - [sym_super] = ACTIONS(2072), - [sym_crate] = ACTIONS(2072), - [sym_metavariable] = ACTIONS(2070), - [sym__raw_string_literal_start] = ACTIONS(2070), - [sym_float_literal] = ACTIONS(2070), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_macro_rules_BANG] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_u8] = ACTIONS(2162), + [anon_sym_i8] = ACTIONS(2162), + [anon_sym_u16] = ACTIONS(2162), + [anon_sym_i16] = ACTIONS(2162), + [anon_sym_u32] = ACTIONS(2162), + [anon_sym_i32] = ACTIONS(2162), + [anon_sym_u64] = ACTIONS(2162), + [anon_sym_i64] = ACTIONS(2162), + [anon_sym_u128] = ACTIONS(2162), + [anon_sym_i128] = ACTIONS(2162), + [anon_sym_isize] = ACTIONS(2162), + [anon_sym_usize] = ACTIONS(2162), + [anon_sym_f32] = ACTIONS(2162), + [anon_sym_f64] = ACTIONS(2162), + [anon_sym_bool] = ACTIONS(2162), + [anon_sym_str] = ACTIONS(2162), + [anon_sym_char] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_DOT_DOT] = ACTIONS(2160), + [anon_sym_COLON_COLON] = ACTIONS(2160), + [anon_sym_POUND] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_async] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_default] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_gen] = ACTIONS(2162), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_impl] = ACTIONS(2162), + [anon_sym_let] = ACTIONS(2162), + [anon_sym_loop] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_mod] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_static] = ACTIONS(2162), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_trait] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_use] = ACTIONS(2162), + [anon_sym_while] = ACTIONS(2162), + [anon_sym_extern] = ACTIONS(2162), + [anon_sym_yield] = ACTIONS(2162), + [anon_sym_move] = ACTIONS(2162), + [anon_sym_try] = ACTIONS(2162), + [sym_integer_literal] = ACTIONS(2160), + [aux_sym_string_literal_token1] = ACTIONS(2160), + [sym_char_literal] = ACTIONS(2160), + [anon_sym_true] = ACTIONS(2162), + [anon_sym_false] = ACTIONS(2162), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2162), + [sym_super] = ACTIONS(2162), + [sym_crate] = ACTIONS(2162), + [sym_metavariable] = ACTIONS(2160), + [sym__raw_string_literal_start] = ACTIONS(2160), + [sym_float_literal] = ACTIONS(2160), }, [STATE(559)] = { [sym_line_comment] = STATE(559), [sym_block_comment] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2074), - [anon_sym_macro_rules_BANG] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_RBRACE] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_u8] = ACTIONS(2076), - [anon_sym_i8] = ACTIONS(2076), - [anon_sym_u16] = ACTIONS(2076), - [anon_sym_i16] = ACTIONS(2076), - [anon_sym_u32] = ACTIONS(2076), - [anon_sym_i32] = ACTIONS(2076), - [anon_sym_u64] = ACTIONS(2076), - [anon_sym_i64] = ACTIONS(2076), - [anon_sym_u128] = ACTIONS(2076), - [anon_sym_i128] = ACTIONS(2076), - [anon_sym_isize] = ACTIONS(2076), - [anon_sym_usize] = ACTIONS(2076), - [anon_sym_f32] = ACTIONS(2076), - [anon_sym_f64] = ACTIONS(2076), - [anon_sym_bool] = ACTIONS(2076), - [anon_sym_str] = ACTIONS(2076), - [anon_sym_char] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_DOT_DOT] = ACTIONS(2074), - [anon_sym_COLON_COLON] = ACTIONS(2074), - [anon_sym_POUND] = ACTIONS(2074), - [anon_sym_SQUOTE] = ACTIONS(2076), - [anon_sym_async] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_default] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_gen] = ACTIONS(2076), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_impl] = ACTIONS(2076), - [anon_sym_let] = ACTIONS(2076), - [anon_sym_loop] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_mod] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_static] = ACTIONS(2076), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_trait] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_use] = ACTIONS(2076), - [anon_sym_while] = ACTIONS(2076), - [anon_sym_extern] = ACTIONS(2076), - [anon_sym_yield] = ACTIONS(2076), - [anon_sym_move] = ACTIONS(2076), - [anon_sym_try] = ACTIONS(2076), - [sym_integer_literal] = ACTIONS(2074), - [aux_sym_string_literal_token1] = ACTIONS(2074), - [sym_char_literal] = ACTIONS(2074), - [anon_sym_true] = ACTIONS(2076), - [anon_sym_false] = ACTIONS(2076), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2076), - [sym_super] = ACTIONS(2076), - [sym_crate] = ACTIONS(2076), - [sym_metavariable] = ACTIONS(2074), - [sym__raw_string_literal_start] = ACTIONS(2074), - [sym_float_literal] = ACTIONS(2074), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_macro_rules_BANG] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_u8] = ACTIONS(2166), + [anon_sym_i8] = ACTIONS(2166), + [anon_sym_u16] = ACTIONS(2166), + [anon_sym_i16] = ACTIONS(2166), + [anon_sym_u32] = ACTIONS(2166), + [anon_sym_i32] = ACTIONS(2166), + [anon_sym_u64] = ACTIONS(2166), + [anon_sym_i64] = ACTIONS(2166), + [anon_sym_u128] = ACTIONS(2166), + [anon_sym_i128] = ACTIONS(2166), + [anon_sym_isize] = ACTIONS(2166), + [anon_sym_usize] = ACTIONS(2166), + [anon_sym_f32] = ACTIONS(2166), + [anon_sym_f64] = ACTIONS(2166), + [anon_sym_bool] = ACTIONS(2166), + [anon_sym_str] = ACTIONS(2166), + [anon_sym_char] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_DOT_DOT] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2164), + [anon_sym_POUND] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_async] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_default] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), + [anon_sym_fn] = ACTIONS(2166), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_gen] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_impl] = ACTIONS(2166), + [anon_sym_let] = ACTIONS(2166), + [anon_sym_loop] = ACTIONS(2166), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_mod] = ACTIONS(2166), + [anon_sym_pub] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_struct] = ACTIONS(2166), + [anon_sym_trait] = ACTIONS(2166), + [anon_sym_type] = ACTIONS(2166), + [anon_sym_union] = ACTIONS(2166), + [anon_sym_unsafe] = ACTIONS(2166), + [anon_sym_use] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_extern] = ACTIONS(2166), + [anon_sym_yield] = ACTIONS(2166), + [anon_sym_move] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2166), + [sym_integer_literal] = ACTIONS(2164), + [aux_sym_string_literal_token1] = ACTIONS(2164), + [sym_char_literal] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2166), + [sym_super] = ACTIONS(2166), + [sym_crate] = ACTIONS(2166), + [sym_metavariable] = ACTIONS(2164), + [sym__raw_string_literal_start] = ACTIONS(2164), + [sym_float_literal] = ACTIONS(2164), }, [STATE(560)] = { [sym_line_comment] = STATE(560), [sym_block_comment] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_macro_rules_BANG] = ACTIONS(2078), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2078), - [anon_sym_u8] = ACTIONS(2080), - [anon_sym_i8] = ACTIONS(2080), - [anon_sym_u16] = ACTIONS(2080), - [anon_sym_i16] = ACTIONS(2080), - [anon_sym_u32] = ACTIONS(2080), - [anon_sym_i32] = ACTIONS(2080), - [anon_sym_u64] = ACTIONS(2080), - [anon_sym_i64] = ACTIONS(2080), - [anon_sym_u128] = ACTIONS(2080), - [anon_sym_i128] = ACTIONS(2080), - [anon_sym_isize] = ACTIONS(2080), - [anon_sym_usize] = ACTIONS(2080), - [anon_sym_f32] = ACTIONS(2080), - [anon_sym_f64] = ACTIONS(2080), - [anon_sym_bool] = ACTIONS(2080), - [anon_sym_str] = ACTIONS(2080), - [anon_sym_char] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_AMP] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_DOT_DOT] = ACTIONS(2078), - [anon_sym_COLON_COLON] = ACTIONS(2078), - [anon_sym_POUND] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_fn] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_gen] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_impl] = ACTIONS(2080), - [anon_sym_let] = ACTIONS(2080), - [anon_sym_loop] = ACTIONS(2080), - [anon_sym_match] = ACTIONS(2080), - [anon_sym_mod] = ACTIONS(2080), - [anon_sym_pub] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_struct] = ACTIONS(2080), - [anon_sym_trait] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_union] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(2080), - [anon_sym_use] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_extern] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [anon_sym_move] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [sym_integer_literal] = ACTIONS(2078), - [aux_sym_string_literal_token1] = ACTIONS(2078), - [sym_char_literal] = ACTIONS(2078), - [anon_sym_true] = ACTIONS(2080), - [anon_sym_false] = ACTIONS(2080), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2080), - [sym_super] = ACTIONS(2080), - [sym_crate] = ACTIONS(2080), - [sym_metavariable] = ACTIONS(2078), - [sym__raw_string_literal_start] = ACTIONS(2078), - [sym_float_literal] = ACTIONS(2078), + [ts_builtin_sym_end] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2168), + [anon_sym_macro_rules_BANG] = ACTIONS(2168), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_LBRACE] = ACTIONS(2168), + [anon_sym_RBRACE] = ACTIONS(2168), + [anon_sym_STAR] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2170), + [anon_sym_i8] = ACTIONS(2170), + [anon_sym_u16] = ACTIONS(2170), + [anon_sym_i16] = ACTIONS(2170), + [anon_sym_u32] = ACTIONS(2170), + [anon_sym_i32] = ACTIONS(2170), + [anon_sym_u64] = ACTIONS(2170), + [anon_sym_i64] = ACTIONS(2170), + [anon_sym_u128] = ACTIONS(2170), + [anon_sym_i128] = ACTIONS(2170), + [anon_sym_isize] = ACTIONS(2170), + [anon_sym_usize] = ACTIONS(2170), + [anon_sym_f32] = ACTIONS(2170), + [anon_sym_f64] = ACTIONS(2170), + [anon_sym_bool] = ACTIONS(2170), + [anon_sym_str] = ACTIONS(2170), + [anon_sym_char] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2168), + [anon_sym_BANG] = ACTIONS(2168), + [anon_sym_AMP] = ACTIONS(2168), + [anon_sym_PIPE] = ACTIONS(2168), + [anon_sym_LT] = ACTIONS(2168), + [anon_sym_DOT_DOT] = ACTIONS(2168), + [anon_sym_COLON_COLON] = ACTIONS(2168), + [anon_sym_POUND] = ACTIONS(2168), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_async] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_default] = ACTIONS(2170), + [anon_sym_enum] = ACTIONS(2170), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_gen] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_impl] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_loop] = ACTIONS(2170), + [anon_sym_match] = ACTIONS(2170), + [anon_sym_mod] = ACTIONS(2170), + [anon_sym_pub] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_struct] = ACTIONS(2170), + [anon_sym_trait] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_union] = ACTIONS(2170), + [anon_sym_unsafe] = ACTIONS(2170), + [anon_sym_use] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_extern] = ACTIONS(2170), + [anon_sym_yield] = ACTIONS(2170), + [anon_sym_move] = ACTIONS(2170), + [anon_sym_try] = ACTIONS(2170), + [sym_integer_literal] = ACTIONS(2168), + [aux_sym_string_literal_token1] = ACTIONS(2168), + [sym_char_literal] = ACTIONS(2168), + [anon_sym_true] = ACTIONS(2170), + [anon_sym_false] = ACTIONS(2170), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2170), + [sym_super] = ACTIONS(2170), + [sym_crate] = ACTIONS(2170), + [sym_metavariable] = ACTIONS(2168), + [sym__raw_string_literal_start] = ACTIONS(2168), + [sym_float_literal] = ACTIONS(2168), }, [STATE(561)] = { [sym_line_comment] = STATE(561), [sym_block_comment] = STATE(561), - [ts_builtin_sym_end] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_macro_rules_BANG] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_u8] = ACTIONS(2084), - [anon_sym_i8] = ACTIONS(2084), - [anon_sym_u16] = ACTIONS(2084), - [anon_sym_i16] = ACTIONS(2084), - [anon_sym_u32] = ACTIONS(2084), - [anon_sym_i32] = ACTIONS(2084), - [anon_sym_u64] = ACTIONS(2084), - [anon_sym_i64] = ACTIONS(2084), - [anon_sym_u128] = ACTIONS(2084), - [anon_sym_i128] = ACTIONS(2084), - [anon_sym_isize] = ACTIONS(2084), - [anon_sym_usize] = ACTIONS(2084), - [anon_sym_f32] = ACTIONS(2084), - [anon_sym_f64] = ACTIONS(2084), - [anon_sym_bool] = ACTIONS(2084), - [anon_sym_str] = ACTIONS(2084), - [anon_sym_char] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_BANG] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_DOT_DOT] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(2082), - [anon_sym_SQUOTE] = ACTIONS(2084), - [anon_sym_async] = ACTIONS(2084), - [anon_sym_break] = ACTIONS(2084), - [anon_sym_const] = ACTIONS(2084), - [anon_sym_continue] = ACTIONS(2084), - [anon_sym_default] = ACTIONS(2084), - [anon_sym_enum] = ACTIONS(2084), - [anon_sym_fn] = ACTIONS(2084), - [anon_sym_for] = ACTIONS(2084), - [anon_sym_gen] = ACTIONS(2084), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_impl] = ACTIONS(2084), - [anon_sym_let] = ACTIONS(2084), - [anon_sym_loop] = ACTIONS(2084), - [anon_sym_match] = ACTIONS(2084), - [anon_sym_mod] = ACTIONS(2084), - [anon_sym_pub] = ACTIONS(2084), - [anon_sym_return] = ACTIONS(2084), - [anon_sym_static] = ACTIONS(2084), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_trait] = ACTIONS(2084), - [anon_sym_type] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2084), - [anon_sym_unsafe] = ACTIONS(2084), - [anon_sym_use] = ACTIONS(2084), - [anon_sym_while] = ACTIONS(2084), - [anon_sym_extern] = ACTIONS(2084), - [anon_sym_yield] = ACTIONS(2084), - [anon_sym_move] = ACTIONS(2084), - [anon_sym_try] = ACTIONS(2084), - [sym_integer_literal] = ACTIONS(2082), - [aux_sym_string_literal_token1] = ACTIONS(2082), - [sym_char_literal] = ACTIONS(2082), - [anon_sym_true] = ACTIONS(2084), - [anon_sym_false] = ACTIONS(2084), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2084), - [sym_super] = ACTIONS(2084), - [sym_crate] = ACTIONS(2084), - [sym_metavariable] = ACTIONS(2082), - [sym__raw_string_literal_start] = ACTIONS(2082), - [sym_float_literal] = ACTIONS(2082), + [ts_builtin_sym_end] = ACTIONS(2172), + [sym_identifier] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_macro_rules_BANG] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_STAR] = ACTIONS(2172), + [anon_sym_u8] = ACTIONS(2174), + [anon_sym_i8] = ACTIONS(2174), + [anon_sym_u16] = ACTIONS(2174), + [anon_sym_i16] = ACTIONS(2174), + [anon_sym_u32] = ACTIONS(2174), + [anon_sym_i32] = ACTIONS(2174), + [anon_sym_u64] = ACTIONS(2174), + [anon_sym_i64] = ACTIONS(2174), + [anon_sym_u128] = ACTIONS(2174), + [anon_sym_i128] = ACTIONS(2174), + [anon_sym_isize] = ACTIONS(2174), + [anon_sym_usize] = ACTIONS(2174), + [anon_sym_f32] = ACTIONS(2174), + [anon_sym_f64] = ACTIONS(2174), + [anon_sym_bool] = ACTIONS(2174), + [anon_sym_str] = ACTIONS(2174), + [anon_sym_char] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_AMP] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_DOT_DOT] = ACTIONS(2172), + [anon_sym_COLON_COLON] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2174), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_default] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2174), + [anon_sym_fn] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_gen] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_impl] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_loop] = ACTIONS(2174), + [anon_sym_match] = ACTIONS(2174), + [anon_sym_mod] = ACTIONS(2174), + [anon_sym_pub] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_struct] = ACTIONS(2174), + [anon_sym_trait] = ACTIONS(2174), + [anon_sym_type] = ACTIONS(2174), + [anon_sym_union] = ACTIONS(2174), + [anon_sym_unsafe] = ACTIONS(2174), + [anon_sym_use] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_extern] = ACTIONS(2174), + [anon_sym_yield] = ACTIONS(2174), + [anon_sym_move] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [sym_integer_literal] = ACTIONS(2172), + [aux_sym_string_literal_token1] = ACTIONS(2172), + [sym_char_literal] = ACTIONS(2172), + [anon_sym_true] = ACTIONS(2174), + [anon_sym_false] = ACTIONS(2174), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2174), + [sym_super] = ACTIONS(2174), + [sym_crate] = ACTIONS(2174), + [sym_metavariable] = ACTIONS(2172), + [sym__raw_string_literal_start] = ACTIONS(2172), + [sym_float_literal] = ACTIONS(2172), }, [STATE(562)] = { [sym_line_comment] = STATE(562), [sym_block_comment] = STATE(562), - [ts_builtin_sym_end] = ACTIONS(2086), - [sym_identifier] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2086), - [anon_sym_macro_rules_BANG] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2086), - [anon_sym_LBRACK] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_RBRACE] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2086), - [anon_sym_u8] = ACTIONS(2088), - [anon_sym_i8] = ACTIONS(2088), - [anon_sym_u16] = ACTIONS(2088), - [anon_sym_i16] = ACTIONS(2088), - [anon_sym_u32] = ACTIONS(2088), - [anon_sym_i32] = ACTIONS(2088), - [anon_sym_u64] = ACTIONS(2088), - [anon_sym_i64] = ACTIONS(2088), - [anon_sym_u128] = ACTIONS(2088), - [anon_sym_i128] = ACTIONS(2088), - [anon_sym_isize] = ACTIONS(2088), - [anon_sym_usize] = ACTIONS(2088), - [anon_sym_f32] = ACTIONS(2088), - [anon_sym_f64] = ACTIONS(2088), - [anon_sym_bool] = ACTIONS(2088), - [anon_sym_str] = ACTIONS(2088), - [anon_sym_char] = ACTIONS(2088), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_BANG] = ACTIONS(2086), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2086), - [anon_sym_LT] = ACTIONS(2086), - [anon_sym_DOT_DOT] = ACTIONS(2086), - [anon_sym_COLON_COLON] = ACTIONS(2086), - [anon_sym_POUND] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2088), - [anon_sym_async] = ACTIONS(2088), - [anon_sym_break] = ACTIONS(2088), - [anon_sym_const] = ACTIONS(2088), - [anon_sym_continue] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2088), - [anon_sym_enum] = ACTIONS(2088), - [anon_sym_fn] = ACTIONS(2088), - [anon_sym_for] = ACTIONS(2088), - [anon_sym_gen] = ACTIONS(2088), - [anon_sym_if] = ACTIONS(2088), - [anon_sym_impl] = ACTIONS(2088), - [anon_sym_let] = ACTIONS(2088), - [anon_sym_loop] = ACTIONS(2088), - [anon_sym_match] = ACTIONS(2088), - [anon_sym_mod] = ACTIONS(2088), - [anon_sym_pub] = ACTIONS(2088), - [anon_sym_return] = ACTIONS(2088), - [anon_sym_static] = ACTIONS(2088), - [anon_sym_struct] = ACTIONS(2088), - [anon_sym_trait] = ACTIONS(2088), - [anon_sym_type] = ACTIONS(2088), - [anon_sym_union] = ACTIONS(2088), - [anon_sym_unsafe] = ACTIONS(2088), - [anon_sym_use] = ACTIONS(2088), - [anon_sym_while] = ACTIONS(2088), - [anon_sym_extern] = ACTIONS(2088), - [anon_sym_yield] = ACTIONS(2088), - [anon_sym_move] = ACTIONS(2088), - [anon_sym_try] = ACTIONS(2088), - [sym_integer_literal] = ACTIONS(2086), - [aux_sym_string_literal_token1] = ACTIONS(2086), - [sym_char_literal] = ACTIONS(2086), - [anon_sym_true] = ACTIONS(2088), - [anon_sym_false] = ACTIONS(2088), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2088), - [sym_super] = ACTIONS(2088), - [sym_crate] = ACTIONS(2088), - [sym_metavariable] = ACTIONS(2086), - [sym__raw_string_literal_start] = ACTIONS(2086), - [sym_float_literal] = ACTIONS(2086), + [ts_builtin_sym_end] = ACTIONS(2176), + [sym_identifier] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_macro_rules_BANG] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_STAR] = ACTIONS(2176), + [anon_sym_u8] = ACTIONS(2178), + [anon_sym_i8] = ACTIONS(2178), + [anon_sym_u16] = ACTIONS(2178), + [anon_sym_i16] = ACTIONS(2178), + [anon_sym_u32] = ACTIONS(2178), + [anon_sym_i32] = ACTIONS(2178), + [anon_sym_u64] = ACTIONS(2178), + [anon_sym_i64] = ACTIONS(2178), + [anon_sym_u128] = ACTIONS(2178), + [anon_sym_i128] = ACTIONS(2178), + [anon_sym_isize] = ACTIONS(2178), + [anon_sym_usize] = ACTIONS(2178), + [anon_sym_f32] = ACTIONS(2178), + [anon_sym_f64] = ACTIONS(2178), + [anon_sym_bool] = ACTIONS(2178), + [anon_sym_str] = ACTIONS(2178), + [anon_sym_char] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2176), + [anon_sym_LT] = ACTIONS(2176), + [anon_sym_DOT_DOT] = ACTIONS(2176), + [anon_sym_COLON_COLON] = ACTIONS(2176), + [anon_sym_POUND] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [anon_sym_fn] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_gen] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_impl] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_loop] = ACTIONS(2178), + [anon_sym_match] = ACTIONS(2178), + [anon_sym_mod] = ACTIONS(2178), + [anon_sym_pub] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_struct] = ACTIONS(2178), + [anon_sym_trait] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_union] = ACTIONS(2178), + [anon_sym_unsafe] = ACTIONS(2178), + [anon_sym_use] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_extern] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_move] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [sym_integer_literal] = ACTIONS(2176), + [aux_sym_string_literal_token1] = ACTIONS(2176), + [sym_char_literal] = ACTIONS(2176), + [anon_sym_true] = ACTIONS(2178), + [anon_sym_false] = ACTIONS(2178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_crate] = ACTIONS(2178), + [sym_metavariable] = ACTIONS(2176), + [sym__raw_string_literal_start] = ACTIONS(2176), + [sym_float_literal] = ACTIONS(2176), }, [STATE(563)] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(2090), - [sym_identifier] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_macro_rules_BANG] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_LBRACK] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_u8] = ACTIONS(2092), - [anon_sym_i8] = ACTIONS(2092), - [anon_sym_u16] = ACTIONS(2092), - [anon_sym_i16] = ACTIONS(2092), - [anon_sym_u32] = ACTIONS(2092), - [anon_sym_i32] = ACTIONS(2092), - [anon_sym_u64] = ACTIONS(2092), - [anon_sym_i64] = ACTIONS(2092), - [anon_sym_u128] = ACTIONS(2092), - [anon_sym_i128] = ACTIONS(2092), - [anon_sym_isize] = ACTIONS(2092), - [anon_sym_usize] = ACTIONS(2092), - [anon_sym_f32] = ACTIONS(2092), - [anon_sym_f64] = ACTIONS(2092), - [anon_sym_bool] = ACTIONS(2092), - [anon_sym_str] = ACTIONS(2092), - [anon_sym_char] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2090), - [anon_sym_BANG] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_LT] = ACTIONS(2090), - [anon_sym_DOT_DOT] = ACTIONS(2090), - [anon_sym_COLON_COLON] = ACTIONS(2090), - [anon_sym_POUND] = ACTIONS(2090), - [anon_sym_SQUOTE] = ACTIONS(2092), - [anon_sym_async] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_const] = ACTIONS(2092), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_default] = ACTIONS(2092), - [anon_sym_enum] = ACTIONS(2092), - [anon_sym_fn] = ACTIONS(2092), - [anon_sym_for] = ACTIONS(2092), - [anon_sym_gen] = ACTIONS(2092), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_impl] = ACTIONS(2092), - [anon_sym_let] = ACTIONS(2092), - [anon_sym_loop] = ACTIONS(2092), - [anon_sym_match] = ACTIONS(2092), - [anon_sym_mod] = ACTIONS(2092), - [anon_sym_pub] = ACTIONS(2092), - [anon_sym_return] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2092), - [anon_sym_struct] = ACTIONS(2092), - [anon_sym_trait] = ACTIONS(2092), - [anon_sym_type] = ACTIONS(2092), - [anon_sym_union] = ACTIONS(2092), - [anon_sym_unsafe] = ACTIONS(2092), - [anon_sym_use] = ACTIONS(2092), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_extern] = ACTIONS(2092), - [anon_sym_yield] = ACTIONS(2092), - [anon_sym_move] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(2092), - [sym_integer_literal] = ACTIONS(2090), - [aux_sym_string_literal_token1] = ACTIONS(2090), - [sym_char_literal] = ACTIONS(2090), - [anon_sym_true] = ACTIONS(2092), - [anon_sym_false] = ACTIONS(2092), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2092), - [sym_super] = ACTIONS(2092), - [sym_crate] = ACTIONS(2092), - [sym_metavariable] = ACTIONS(2090), - [sym__raw_string_literal_start] = ACTIONS(2090), - [sym_float_literal] = ACTIONS(2090), + [ts_builtin_sym_end] = ACTIONS(2180), + [sym_identifier] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym_macro_rules_BANG] = ACTIONS(2180), + [anon_sym_LPAREN] = ACTIONS(2180), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_u8] = ACTIONS(2182), + [anon_sym_i8] = ACTIONS(2182), + [anon_sym_u16] = ACTIONS(2182), + [anon_sym_i16] = ACTIONS(2182), + [anon_sym_u32] = ACTIONS(2182), + [anon_sym_i32] = ACTIONS(2182), + [anon_sym_u64] = ACTIONS(2182), + [anon_sym_i64] = ACTIONS(2182), + [anon_sym_u128] = ACTIONS(2182), + [anon_sym_i128] = ACTIONS(2182), + [anon_sym_isize] = ACTIONS(2182), + [anon_sym_usize] = ACTIONS(2182), + [anon_sym_f32] = ACTIONS(2182), + [anon_sym_f64] = ACTIONS(2182), + [anon_sym_bool] = ACTIONS(2182), + [anon_sym_str] = ACTIONS(2182), + [anon_sym_char] = ACTIONS(2182), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2180), + [anon_sym_PIPE] = ACTIONS(2180), + [anon_sym_LT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_COLON_COLON] = ACTIONS(2180), + [anon_sym_POUND] = ACTIONS(2180), + [anon_sym_SQUOTE] = ACTIONS(2182), + [anon_sym_async] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_default] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), + [anon_sym_fn] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_gen] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_impl] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_loop] = ACTIONS(2182), + [anon_sym_match] = ACTIONS(2182), + [anon_sym_mod] = ACTIONS(2182), + [anon_sym_pub] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_struct] = ACTIONS(2182), + [anon_sym_trait] = ACTIONS(2182), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_union] = ACTIONS(2182), + [anon_sym_unsafe] = ACTIONS(2182), + [anon_sym_use] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym_yield] = ACTIONS(2182), + [anon_sym_move] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [sym_integer_literal] = ACTIONS(2180), + [aux_sym_string_literal_token1] = ACTIONS(2180), + [sym_char_literal] = ACTIONS(2180), + [anon_sym_true] = ACTIONS(2182), + [anon_sym_false] = ACTIONS(2182), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2182), + [sym_super] = ACTIONS(2182), + [sym_crate] = ACTIONS(2182), + [sym_metavariable] = ACTIONS(2180), + [sym__raw_string_literal_start] = ACTIONS(2180), + [sym_float_literal] = ACTIONS(2180), }, [STATE(564)] = { [sym_line_comment] = STATE(564), [sym_block_comment] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(2094), - [sym_identifier] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2094), - [anon_sym_macro_rules_BANG] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_u8] = ACTIONS(2096), - [anon_sym_i8] = ACTIONS(2096), - [anon_sym_u16] = ACTIONS(2096), - [anon_sym_i16] = ACTIONS(2096), - [anon_sym_u32] = ACTIONS(2096), - [anon_sym_i32] = ACTIONS(2096), - [anon_sym_u64] = ACTIONS(2096), - [anon_sym_i64] = ACTIONS(2096), - [anon_sym_u128] = ACTIONS(2096), - [anon_sym_i128] = ACTIONS(2096), - [anon_sym_isize] = ACTIONS(2096), - [anon_sym_usize] = ACTIONS(2096), - [anon_sym_f32] = ACTIONS(2096), - [anon_sym_f64] = ACTIONS(2096), - [anon_sym_bool] = ACTIONS(2096), - [anon_sym_str] = ACTIONS(2096), - [anon_sym_char] = ACTIONS(2096), - [anon_sym_DASH] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(2094), - [anon_sym_AMP] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2094), - [anon_sym_LT] = ACTIONS(2094), - [anon_sym_DOT_DOT] = ACTIONS(2094), - [anon_sym_COLON_COLON] = ACTIONS(2094), - [anon_sym_POUND] = ACTIONS(2094), - [anon_sym_SQUOTE] = ACTIONS(2096), - [anon_sym_async] = ACTIONS(2096), - [anon_sym_break] = ACTIONS(2096), - [anon_sym_const] = ACTIONS(2096), - [anon_sym_continue] = ACTIONS(2096), - [anon_sym_default] = ACTIONS(2096), - [anon_sym_enum] = ACTIONS(2096), - [anon_sym_fn] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_gen] = ACTIONS(2096), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_impl] = ACTIONS(2096), - [anon_sym_let] = ACTIONS(2096), - [anon_sym_loop] = ACTIONS(2096), - [anon_sym_match] = ACTIONS(2096), - [anon_sym_mod] = ACTIONS(2096), - [anon_sym_pub] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2096), - [anon_sym_static] = ACTIONS(2096), - [anon_sym_struct] = ACTIONS(2096), - [anon_sym_trait] = ACTIONS(2096), - [anon_sym_type] = ACTIONS(2096), - [anon_sym_union] = ACTIONS(2096), - [anon_sym_unsafe] = ACTIONS(2096), - [anon_sym_use] = ACTIONS(2096), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_extern] = ACTIONS(2096), - [anon_sym_yield] = ACTIONS(2096), - [anon_sym_move] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2096), - [sym_integer_literal] = ACTIONS(2094), - [aux_sym_string_literal_token1] = ACTIONS(2094), - [sym_char_literal] = ACTIONS(2094), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2096), - [sym_super] = ACTIONS(2096), - [sym_crate] = ACTIONS(2096), - [sym_metavariable] = ACTIONS(2094), - [sym__raw_string_literal_start] = ACTIONS(2094), - [sym_float_literal] = ACTIONS(2094), + [ts_builtin_sym_end] = ACTIONS(2184), + [sym_identifier] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_macro_rules_BANG] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_u8] = ACTIONS(2186), + [anon_sym_i8] = ACTIONS(2186), + [anon_sym_u16] = ACTIONS(2186), + [anon_sym_i16] = ACTIONS(2186), + [anon_sym_u32] = ACTIONS(2186), + [anon_sym_i32] = ACTIONS(2186), + [anon_sym_u64] = ACTIONS(2186), + [anon_sym_i64] = ACTIONS(2186), + [anon_sym_u128] = ACTIONS(2186), + [anon_sym_i128] = ACTIONS(2186), + [anon_sym_isize] = ACTIONS(2186), + [anon_sym_usize] = ACTIONS(2186), + [anon_sym_f32] = ACTIONS(2186), + [anon_sym_f64] = ACTIONS(2186), + [anon_sym_bool] = ACTIONS(2186), + [anon_sym_str] = ACTIONS(2186), + [anon_sym_char] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_PIPE] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_DOT_DOT] = ACTIONS(2184), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_POUND] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2186), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_fn] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_gen] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_impl] = ACTIONS(2186), + [anon_sym_let] = ACTIONS(2186), + [anon_sym_loop] = ACTIONS(2186), + [anon_sym_match] = ACTIONS(2186), + [anon_sym_mod] = ACTIONS(2186), + [anon_sym_pub] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_trait] = ACTIONS(2186), + [anon_sym_type] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_unsafe] = ACTIONS(2186), + [anon_sym_use] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym_yield] = ACTIONS(2186), + [anon_sym_move] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [sym_integer_literal] = ACTIONS(2184), + [aux_sym_string_literal_token1] = ACTIONS(2184), + [sym_char_literal] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(2186), + [anon_sym_false] = ACTIONS(2186), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2186), + [sym_super] = ACTIONS(2186), + [sym_crate] = ACTIONS(2186), + [sym_metavariable] = ACTIONS(2184), + [sym__raw_string_literal_start] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), }, [STATE(565)] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(2098), - [sym_identifier] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_macro_rules_BANG] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_u8] = ACTIONS(2100), - [anon_sym_i8] = ACTIONS(2100), - [anon_sym_u16] = ACTIONS(2100), - [anon_sym_i16] = ACTIONS(2100), - [anon_sym_u32] = ACTIONS(2100), - [anon_sym_i32] = ACTIONS(2100), - [anon_sym_u64] = ACTIONS(2100), - [anon_sym_i64] = ACTIONS(2100), - [anon_sym_u128] = ACTIONS(2100), - [anon_sym_i128] = ACTIONS(2100), - [anon_sym_isize] = ACTIONS(2100), - [anon_sym_usize] = ACTIONS(2100), - [anon_sym_f32] = ACTIONS(2100), - [anon_sym_f64] = ACTIONS(2100), - [anon_sym_bool] = ACTIONS(2100), - [anon_sym_str] = ACTIONS(2100), - [anon_sym_char] = ACTIONS(2100), - [anon_sym_DASH] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_COLON_COLON] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2098), - [anon_sym_SQUOTE] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(2100), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_const] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2100), - [anon_sym_default] = ACTIONS(2100), - [anon_sym_enum] = ACTIONS(2100), - [anon_sym_fn] = ACTIONS(2100), - [anon_sym_for] = ACTIONS(2100), - [anon_sym_gen] = ACTIONS(2100), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_impl] = ACTIONS(2100), - [anon_sym_let] = ACTIONS(2100), - [anon_sym_loop] = ACTIONS(2100), - [anon_sym_match] = ACTIONS(2100), - [anon_sym_mod] = ACTIONS(2100), - [anon_sym_pub] = ACTIONS(2100), - [anon_sym_return] = ACTIONS(2100), - [anon_sym_static] = ACTIONS(2100), - [anon_sym_struct] = ACTIONS(2100), - [anon_sym_trait] = ACTIONS(2100), - [anon_sym_type] = ACTIONS(2100), - [anon_sym_union] = ACTIONS(2100), - [anon_sym_unsafe] = ACTIONS(2100), - [anon_sym_use] = ACTIONS(2100), - [anon_sym_while] = ACTIONS(2100), - [anon_sym_extern] = ACTIONS(2100), - [anon_sym_yield] = ACTIONS(2100), - [anon_sym_move] = ACTIONS(2100), - [anon_sym_try] = ACTIONS(2100), - [sym_integer_literal] = ACTIONS(2098), - [aux_sym_string_literal_token1] = ACTIONS(2098), - [sym_char_literal] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2100), - [anon_sym_false] = ACTIONS(2100), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2100), - [sym_super] = ACTIONS(2100), - [sym_crate] = ACTIONS(2100), - [sym_metavariable] = ACTIONS(2098), - [sym__raw_string_literal_start] = ACTIONS(2098), - [sym_float_literal] = ACTIONS(2098), + [ts_builtin_sym_end] = ACTIONS(2188), + [sym_identifier] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_macro_rules_BANG] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(2188), + [anon_sym_u8] = ACTIONS(2190), + [anon_sym_i8] = ACTIONS(2190), + [anon_sym_u16] = ACTIONS(2190), + [anon_sym_i16] = ACTIONS(2190), + [anon_sym_u32] = ACTIONS(2190), + [anon_sym_i32] = ACTIONS(2190), + [anon_sym_u64] = ACTIONS(2190), + [anon_sym_i64] = ACTIONS(2190), + [anon_sym_u128] = ACTIONS(2190), + [anon_sym_i128] = ACTIONS(2190), + [anon_sym_isize] = ACTIONS(2190), + [anon_sym_usize] = ACTIONS(2190), + [anon_sym_f32] = ACTIONS(2190), + [anon_sym_f64] = ACTIONS(2190), + [anon_sym_bool] = ACTIONS(2190), + [anon_sym_str] = ACTIONS(2190), + [anon_sym_char] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2188), + [anon_sym_PIPE] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_DOT_DOT] = ACTIONS(2188), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_POUND] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2190), + [anon_sym_async] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_default] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2190), + [anon_sym_fn] = ACTIONS(2190), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_gen] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2190), + [anon_sym_impl] = ACTIONS(2190), + [anon_sym_let] = ACTIONS(2190), + [anon_sym_loop] = ACTIONS(2190), + [anon_sym_match] = ACTIONS(2190), + [anon_sym_mod] = ACTIONS(2190), + [anon_sym_pub] = ACTIONS(2190), + [anon_sym_return] = ACTIONS(2190), + [anon_sym_static] = ACTIONS(2190), + [anon_sym_struct] = ACTIONS(2190), + [anon_sym_trait] = ACTIONS(2190), + [anon_sym_type] = ACTIONS(2190), + [anon_sym_union] = ACTIONS(2190), + [anon_sym_unsafe] = ACTIONS(2190), + [anon_sym_use] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym_yield] = ACTIONS(2190), + [anon_sym_move] = ACTIONS(2190), + [anon_sym_try] = ACTIONS(2190), + [sym_integer_literal] = ACTIONS(2188), + [aux_sym_string_literal_token1] = ACTIONS(2188), + [sym_char_literal] = ACTIONS(2188), + [anon_sym_true] = ACTIONS(2190), + [anon_sym_false] = ACTIONS(2190), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2190), + [sym_super] = ACTIONS(2190), + [sym_crate] = ACTIONS(2190), + [sym_metavariable] = ACTIONS(2188), + [sym__raw_string_literal_start] = ACTIONS(2188), + [sym_float_literal] = ACTIONS(2188), }, [STATE(566)] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(2102), - [sym_identifier] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2102), - [anon_sym_macro_rules_BANG] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_LBRACK] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2102), - [anon_sym_RBRACE] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_u8] = ACTIONS(2104), - [anon_sym_i8] = ACTIONS(2104), - [anon_sym_u16] = ACTIONS(2104), - [anon_sym_i16] = ACTIONS(2104), - [anon_sym_u32] = ACTIONS(2104), - [anon_sym_i32] = ACTIONS(2104), - [anon_sym_u64] = ACTIONS(2104), - [anon_sym_i64] = ACTIONS(2104), - [anon_sym_u128] = ACTIONS(2104), - [anon_sym_i128] = ACTIONS(2104), - [anon_sym_isize] = ACTIONS(2104), - [anon_sym_usize] = ACTIONS(2104), - [anon_sym_f32] = ACTIONS(2104), - [anon_sym_f64] = ACTIONS(2104), - [anon_sym_bool] = ACTIONS(2104), - [anon_sym_str] = ACTIONS(2104), - [anon_sym_char] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2102), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2102), - [anon_sym_PIPE] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_DOT_DOT] = ACTIONS(2102), - [anon_sym_COLON_COLON] = ACTIONS(2102), - [anon_sym_POUND] = ACTIONS(2102), - [anon_sym_SQUOTE] = ACTIONS(2104), - [anon_sym_async] = ACTIONS(2104), - [anon_sym_break] = ACTIONS(2104), - [anon_sym_const] = ACTIONS(2104), - [anon_sym_continue] = ACTIONS(2104), - [anon_sym_default] = ACTIONS(2104), - [anon_sym_enum] = ACTIONS(2104), - [anon_sym_fn] = ACTIONS(2104), - [anon_sym_for] = ACTIONS(2104), - [anon_sym_gen] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_impl] = ACTIONS(2104), - [anon_sym_let] = ACTIONS(2104), - [anon_sym_loop] = ACTIONS(2104), - [anon_sym_match] = ACTIONS(2104), - [anon_sym_mod] = ACTIONS(2104), - [anon_sym_pub] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_static] = ACTIONS(2104), - [anon_sym_struct] = ACTIONS(2104), - [anon_sym_trait] = ACTIONS(2104), - [anon_sym_type] = ACTIONS(2104), - [anon_sym_union] = ACTIONS(2104), - [anon_sym_unsafe] = ACTIONS(2104), - [anon_sym_use] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2104), - [anon_sym_extern] = ACTIONS(2104), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_move] = ACTIONS(2104), - [anon_sym_try] = ACTIONS(2104), - [sym_integer_literal] = ACTIONS(2102), - [aux_sym_string_literal_token1] = ACTIONS(2102), - [sym_char_literal] = ACTIONS(2102), - [anon_sym_true] = ACTIONS(2104), - [anon_sym_false] = ACTIONS(2104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2104), - [sym_super] = ACTIONS(2104), - [sym_crate] = ACTIONS(2104), - [sym_metavariable] = ACTIONS(2102), - [sym__raw_string_literal_start] = ACTIONS(2102), - [sym_float_literal] = ACTIONS(2102), + [ts_builtin_sym_end] = ACTIONS(2192), + [sym_identifier] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_macro_rules_BANG] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_u8] = ACTIONS(2194), + [anon_sym_i8] = ACTIONS(2194), + [anon_sym_u16] = ACTIONS(2194), + [anon_sym_i16] = ACTIONS(2194), + [anon_sym_u32] = ACTIONS(2194), + [anon_sym_i32] = ACTIONS(2194), + [anon_sym_u64] = ACTIONS(2194), + [anon_sym_i64] = ACTIONS(2194), + [anon_sym_u128] = ACTIONS(2194), + [anon_sym_i128] = ACTIONS(2194), + [anon_sym_isize] = ACTIONS(2194), + [anon_sym_usize] = ACTIONS(2194), + [anon_sym_f32] = ACTIONS(2194), + [anon_sym_f64] = ACTIONS(2194), + [anon_sym_bool] = ACTIONS(2194), + [anon_sym_str] = ACTIONS(2194), + [anon_sym_char] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_DOT_DOT] = ACTIONS(2192), + [anon_sym_COLON_COLON] = ACTIONS(2192), + [anon_sym_POUND] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2194), + [anon_sym_async] = ACTIONS(2194), + [anon_sym_break] = ACTIONS(2194), + [anon_sym_const] = ACTIONS(2194), + [anon_sym_continue] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2194), + [anon_sym_enum] = ACTIONS(2194), + [anon_sym_fn] = ACTIONS(2194), + [anon_sym_for] = ACTIONS(2194), + [anon_sym_gen] = ACTIONS(2194), + [anon_sym_if] = ACTIONS(2194), + [anon_sym_impl] = ACTIONS(2194), + [anon_sym_let] = ACTIONS(2194), + [anon_sym_loop] = ACTIONS(2194), + [anon_sym_match] = ACTIONS(2194), + [anon_sym_mod] = ACTIONS(2194), + [anon_sym_pub] = ACTIONS(2194), + [anon_sym_return] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_struct] = ACTIONS(2194), + [anon_sym_trait] = ACTIONS(2194), + [anon_sym_type] = ACTIONS(2194), + [anon_sym_union] = ACTIONS(2194), + [anon_sym_unsafe] = ACTIONS(2194), + [anon_sym_use] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(2194), + [anon_sym_yield] = ACTIONS(2194), + [anon_sym_move] = ACTIONS(2194), + [anon_sym_try] = ACTIONS(2194), + [sym_integer_literal] = ACTIONS(2192), + [aux_sym_string_literal_token1] = ACTIONS(2192), + [sym_char_literal] = ACTIONS(2192), + [anon_sym_true] = ACTIONS(2194), + [anon_sym_false] = ACTIONS(2194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2194), + [sym_super] = ACTIONS(2194), + [sym_crate] = ACTIONS(2194), + [sym_metavariable] = ACTIONS(2192), + [sym__raw_string_literal_start] = ACTIONS(2192), + [sym_float_literal] = ACTIONS(2192), }, [STATE(567)] = { [sym_line_comment] = STATE(567), [sym_block_comment] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2106), - [anon_sym_macro_rules_BANG] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_u8] = ACTIONS(2108), - [anon_sym_i8] = ACTIONS(2108), - [anon_sym_u16] = ACTIONS(2108), - [anon_sym_i16] = ACTIONS(2108), - [anon_sym_u32] = ACTIONS(2108), - [anon_sym_i32] = ACTIONS(2108), - [anon_sym_u64] = ACTIONS(2108), - [anon_sym_i64] = ACTIONS(2108), - [anon_sym_u128] = ACTIONS(2108), - [anon_sym_i128] = ACTIONS(2108), - [anon_sym_isize] = ACTIONS(2108), - [anon_sym_usize] = ACTIONS(2108), - [anon_sym_f32] = ACTIONS(2108), - [anon_sym_f64] = ACTIONS(2108), - [anon_sym_bool] = ACTIONS(2108), - [anon_sym_str] = ACTIONS(2108), - [anon_sym_char] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_BANG] = ACTIONS(2106), - [anon_sym_AMP] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2106), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_COLON_COLON] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(2108), - [anon_sym_async] = ACTIONS(2108), - [anon_sym_break] = ACTIONS(2108), - [anon_sym_const] = ACTIONS(2108), - [anon_sym_continue] = ACTIONS(2108), - [anon_sym_default] = ACTIONS(2108), - [anon_sym_enum] = ACTIONS(2108), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_for] = ACTIONS(2108), - [anon_sym_gen] = ACTIONS(2108), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_impl] = ACTIONS(2108), - [anon_sym_let] = ACTIONS(2108), - [anon_sym_loop] = ACTIONS(2108), - [anon_sym_match] = ACTIONS(2108), - [anon_sym_mod] = ACTIONS(2108), - [anon_sym_pub] = ACTIONS(2108), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_static] = ACTIONS(2108), - [anon_sym_struct] = ACTIONS(2108), - [anon_sym_trait] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_union] = ACTIONS(2108), - [anon_sym_unsafe] = ACTIONS(2108), - [anon_sym_use] = ACTIONS(2108), - [anon_sym_while] = ACTIONS(2108), - [anon_sym_extern] = ACTIONS(2108), - [anon_sym_yield] = ACTIONS(2108), - [anon_sym_move] = ACTIONS(2108), - [anon_sym_try] = ACTIONS(2108), - [sym_integer_literal] = ACTIONS(2106), - [aux_sym_string_literal_token1] = ACTIONS(2106), - [sym_char_literal] = ACTIONS(2106), - [anon_sym_true] = ACTIONS(2108), - [anon_sym_false] = ACTIONS(2108), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2108), - [sym_super] = ACTIONS(2108), - [sym_crate] = ACTIONS(2108), - [sym_metavariable] = ACTIONS(2106), - [sym__raw_string_literal_start] = ACTIONS(2106), - [sym_float_literal] = ACTIONS(2106), + [ts_builtin_sym_end] = ACTIONS(2196), + [sym_identifier] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_macro_rules_BANG] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_u8] = ACTIONS(2198), + [anon_sym_i8] = ACTIONS(2198), + [anon_sym_u16] = ACTIONS(2198), + [anon_sym_i16] = ACTIONS(2198), + [anon_sym_u32] = ACTIONS(2198), + [anon_sym_i32] = ACTIONS(2198), + [anon_sym_u64] = ACTIONS(2198), + [anon_sym_i64] = ACTIONS(2198), + [anon_sym_u128] = ACTIONS(2198), + [anon_sym_i128] = ACTIONS(2198), + [anon_sym_isize] = ACTIONS(2198), + [anon_sym_usize] = ACTIONS(2198), + [anon_sym_f32] = ACTIONS(2198), + [anon_sym_f64] = ACTIONS(2198), + [anon_sym_bool] = ACTIONS(2198), + [anon_sym_str] = ACTIONS(2198), + [anon_sym_char] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_DOT_DOT] = ACTIONS(2196), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2198), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_default] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [anon_sym_fn] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_gen] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_impl] = ACTIONS(2198), + [anon_sym_let] = ACTIONS(2198), + [anon_sym_loop] = ACTIONS(2198), + [anon_sym_match] = ACTIONS(2198), + [anon_sym_mod] = ACTIONS(2198), + [anon_sym_pub] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(2198), + [anon_sym_trait] = ACTIONS(2198), + [anon_sym_type] = ACTIONS(2198), + [anon_sym_union] = ACTIONS(2198), + [anon_sym_unsafe] = ACTIONS(2198), + [anon_sym_use] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_extern] = ACTIONS(2198), + [anon_sym_yield] = ACTIONS(2198), + [anon_sym_move] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [sym_integer_literal] = ACTIONS(2196), + [aux_sym_string_literal_token1] = ACTIONS(2196), + [sym_char_literal] = ACTIONS(2196), + [anon_sym_true] = ACTIONS(2198), + [anon_sym_false] = ACTIONS(2198), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2198), + [sym_super] = ACTIONS(2198), + [sym_crate] = ACTIONS(2198), + [sym_metavariable] = ACTIONS(2196), + [sym__raw_string_literal_start] = ACTIONS(2196), + [sym_float_literal] = ACTIONS(2196), }, [STATE(568)] = { [sym_line_comment] = STATE(568), [sym_block_comment] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(2110), - [sym_identifier] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2110), - [anon_sym_macro_rules_BANG] = ACTIONS(2110), - [anon_sym_LPAREN] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_RBRACE] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2110), - [anon_sym_u8] = ACTIONS(2112), - [anon_sym_i8] = ACTIONS(2112), - [anon_sym_u16] = ACTIONS(2112), - [anon_sym_i16] = ACTIONS(2112), - [anon_sym_u32] = ACTIONS(2112), - [anon_sym_i32] = ACTIONS(2112), - [anon_sym_u64] = ACTIONS(2112), - [anon_sym_i64] = ACTIONS(2112), - [anon_sym_u128] = ACTIONS(2112), - [anon_sym_i128] = ACTIONS(2112), - [anon_sym_isize] = ACTIONS(2112), - [anon_sym_usize] = ACTIONS(2112), - [anon_sym_f32] = ACTIONS(2112), - [anon_sym_f64] = ACTIONS(2112), - [anon_sym_bool] = ACTIONS(2112), - [anon_sym_str] = ACTIONS(2112), - [anon_sym_char] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_BANG] = ACTIONS(2110), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2110), - [anon_sym_DOT_DOT] = ACTIONS(2110), - [anon_sym_COLON_COLON] = ACTIONS(2110), - [anon_sym_POUND] = ACTIONS(2110), - [anon_sym_SQUOTE] = ACTIONS(2112), - [anon_sym_async] = ACTIONS(2112), - [anon_sym_break] = ACTIONS(2112), - [anon_sym_const] = ACTIONS(2112), - [anon_sym_continue] = ACTIONS(2112), - [anon_sym_default] = ACTIONS(2112), - [anon_sym_enum] = ACTIONS(2112), - [anon_sym_fn] = ACTIONS(2112), - [anon_sym_for] = ACTIONS(2112), - [anon_sym_gen] = ACTIONS(2112), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_impl] = ACTIONS(2112), - [anon_sym_let] = ACTIONS(2112), - [anon_sym_loop] = ACTIONS(2112), - [anon_sym_match] = ACTIONS(2112), - [anon_sym_mod] = ACTIONS(2112), - [anon_sym_pub] = ACTIONS(2112), - [anon_sym_return] = ACTIONS(2112), - [anon_sym_static] = ACTIONS(2112), - [anon_sym_struct] = ACTIONS(2112), - [anon_sym_trait] = ACTIONS(2112), - [anon_sym_type] = ACTIONS(2112), - [anon_sym_union] = ACTIONS(2112), - [anon_sym_unsafe] = ACTIONS(2112), - [anon_sym_use] = ACTIONS(2112), - [anon_sym_while] = ACTIONS(2112), - [anon_sym_extern] = ACTIONS(2112), - [anon_sym_yield] = ACTIONS(2112), - [anon_sym_move] = ACTIONS(2112), - [anon_sym_try] = ACTIONS(2112), - [sym_integer_literal] = ACTIONS(2110), - [aux_sym_string_literal_token1] = ACTIONS(2110), - [sym_char_literal] = ACTIONS(2110), - [anon_sym_true] = ACTIONS(2112), - [anon_sym_false] = ACTIONS(2112), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2112), - [sym_super] = ACTIONS(2112), - [sym_crate] = ACTIONS(2112), - [sym_metavariable] = ACTIONS(2110), - [sym__raw_string_literal_start] = ACTIONS(2110), - [sym_float_literal] = ACTIONS(2110), + [ts_builtin_sym_end] = ACTIONS(2200), + [sym_identifier] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_macro_rules_BANG] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_u8] = ACTIONS(2202), + [anon_sym_i8] = ACTIONS(2202), + [anon_sym_u16] = ACTIONS(2202), + [anon_sym_i16] = ACTIONS(2202), + [anon_sym_u32] = ACTIONS(2202), + [anon_sym_i32] = ACTIONS(2202), + [anon_sym_u64] = ACTIONS(2202), + [anon_sym_i64] = ACTIONS(2202), + [anon_sym_u128] = ACTIONS(2202), + [anon_sym_i128] = ACTIONS(2202), + [anon_sym_isize] = ACTIONS(2202), + [anon_sym_usize] = ACTIONS(2202), + [anon_sym_f32] = ACTIONS(2202), + [anon_sym_f64] = ACTIONS(2202), + [anon_sym_bool] = ACTIONS(2202), + [anon_sym_str] = ACTIONS(2202), + [anon_sym_char] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_DOT_DOT] = ACTIONS(2200), + [anon_sym_COLON_COLON] = ACTIONS(2200), + [anon_sym_POUND] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2202), + [anon_sym_async] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_default] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_fn] = ACTIONS(2202), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_gen] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_impl] = ACTIONS(2202), + [anon_sym_let] = ACTIONS(2202), + [anon_sym_loop] = ACTIONS(2202), + [anon_sym_match] = ACTIONS(2202), + [anon_sym_mod] = ACTIONS(2202), + [anon_sym_pub] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_trait] = ACTIONS(2202), + [anon_sym_type] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [anon_sym_unsafe] = ACTIONS(2202), + [anon_sym_use] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym_yield] = ACTIONS(2202), + [anon_sym_move] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2202), + [sym_integer_literal] = ACTIONS(2200), + [aux_sym_string_literal_token1] = ACTIONS(2200), + [sym_char_literal] = ACTIONS(2200), + [anon_sym_true] = ACTIONS(2202), + [anon_sym_false] = ACTIONS(2202), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2202), + [sym_super] = ACTIONS(2202), + [sym_crate] = ACTIONS(2202), + [sym_metavariable] = ACTIONS(2200), + [sym__raw_string_literal_start] = ACTIONS(2200), + [sym_float_literal] = ACTIONS(2200), }, [STATE(569)] = { [sym_line_comment] = STATE(569), [sym_block_comment] = STATE(569), - [ts_builtin_sym_end] = ACTIONS(2114), - [sym_identifier] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_macro_rules_BANG] = ACTIONS(2114), - [anon_sym_LPAREN] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2114), - [anon_sym_RBRACE] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2114), - [anon_sym_u8] = ACTIONS(2116), - [anon_sym_i8] = ACTIONS(2116), - [anon_sym_u16] = ACTIONS(2116), - [anon_sym_i16] = ACTIONS(2116), - [anon_sym_u32] = ACTIONS(2116), - [anon_sym_i32] = ACTIONS(2116), - [anon_sym_u64] = ACTIONS(2116), - [anon_sym_i64] = ACTIONS(2116), - [anon_sym_u128] = ACTIONS(2116), - [anon_sym_i128] = ACTIONS(2116), - [anon_sym_isize] = ACTIONS(2116), - [anon_sym_usize] = ACTIONS(2116), - [anon_sym_f32] = ACTIONS(2116), - [anon_sym_f64] = ACTIONS(2116), - [anon_sym_bool] = ACTIONS(2116), - [anon_sym_str] = ACTIONS(2116), - [anon_sym_char] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_BANG] = ACTIONS(2114), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_DOT_DOT] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(2114), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_async] = ACTIONS(2116), - [anon_sym_break] = ACTIONS(2116), - [anon_sym_const] = ACTIONS(2116), - [anon_sym_continue] = ACTIONS(2116), - [anon_sym_default] = ACTIONS(2116), - [anon_sym_enum] = ACTIONS(2116), - [anon_sym_fn] = ACTIONS(2116), - [anon_sym_for] = ACTIONS(2116), - [anon_sym_gen] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2116), - [anon_sym_impl] = ACTIONS(2116), - [anon_sym_let] = ACTIONS(2116), - [anon_sym_loop] = ACTIONS(2116), - [anon_sym_match] = ACTIONS(2116), - [anon_sym_mod] = ACTIONS(2116), - [anon_sym_pub] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(2116), - [anon_sym_static] = ACTIONS(2116), - [anon_sym_struct] = ACTIONS(2116), - [anon_sym_trait] = ACTIONS(2116), - [anon_sym_type] = ACTIONS(2116), - [anon_sym_union] = ACTIONS(2116), - [anon_sym_unsafe] = ACTIONS(2116), - [anon_sym_use] = ACTIONS(2116), - [anon_sym_while] = ACTIONS(2116), - [anon_sym_extern] = ACTIONS(2116), - [anon_sym_yield] = ACTIONS(2116), - [anon_sym_move] = ACTIONS(2116), - [anon_sym_try] = ACTIONS(2116), - [sym_integer_literal] = ACTIONS(2114), - [aux_sym_string_literal_token1] = ACTIONS(2114), - [sym_char_literal] = ACTIONS(2114), - [anon_sym_true] = ACTIONS(2116), - [anon_sym_false] = ACTIONS(2116), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2116), - [sym_super] = ACTIONS(2116), - [sym_crate] = ACTIONS(2116), - [sym_metavariable] = ACTIONS(2114), - [sym__raw_string_literal_start] = ACTIONS(2114), - [sym_float_literal] = ACTIONS(2114), + [ts_builtin_sym_end] = ACTIONS(2204), + [sym_identifier] = ACTIONS(2206), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_macro_rules_BANG] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_u8] = ACTIONS(2206), + [anon_sym_i8] = ACTIONS(2206), + [anon_sym_u16] = ACTIONS(2206), + [anon_sym_i16] = ACTIONS(2206), + [anon_sym_u32] = ACTIONS(2206), + [anon_sym_i32] = ACTIONS(2206), + [anon_sym_u64] = ACTIONS(2206), + [anon_sym_i64] = ACTIONS(2206), + [anon_sym_u128] = ACTIONS(2206), + [anon_sym_i128] = ACTIONS(2206), + [anon_sym_isize] = ACTIONS(2206), + [anon_sym_usize] = ACTIONS(2206), + [anon_sym_f32] = ACTIONS(2206), + [anon_sym_f64] = ACTIONS(2206), + [anon_sym_bool] = ACTIONS(2206), + [anon_sym_str] = ACTIONS(2206), + [anon_sym_char] = ACTIONS(2206), + [anon_sym_DASH] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(2204), + [anon_sym_LT] = ACTIONS(2204), + [anon_sym_DOT_DOT] = ACTIONS(2204), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_POUND] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_gen] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym_yield] = ACTIONS(2206), + [anon_sym_move] = ACTIONS(2206), + [anon_sym_try] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2204), + [aux_sym_string_literal_token1] = ACTIONS(2204), + [sym_char_literal] = ACTIONS(2204), + [anon_sym_true] = ACTIONS(2206), + [anon_sym_false] = ACTIONS(2206), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2204), + [sym__raw_string_literal_start] = ACTIONS(2204), + [sym_float_literal] = ACTIONS(2204), }, [STATE(570)] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(2118), - [sym_identifier] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2118), - [anon_sym_macro_rules_BANG] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_LBRACK] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2118), - [anon_sym_u8] = ACTIONS(2120), - [anon_sym_i8] = ACTIONS(2120), - [anon_sym_u16] = ACTIONS(2120), - [anon_sym_i16] = ACTIONS(2120), - [anon_sym_u32] = ACTIONS(2120), - [anon_sym_i32] = ACTIONS(2120), - [anon_sym_u64] = ACTIONS(2120), - [anon_sym_i64] = ACTIONS(2120), - [anon_sym_u128] = ACTIONS(2120), - [anon_sym_i128] = ACTIONS(2120), - [anon_sym_isize] = ACTIONS(2120), - [anon_sym_usize] = ACTIONS(2120), - [anon_sym_f32] = ACTIONS(2120), - [anon_sym_f64] = ACTIONS(2120), - [anon_sym_bool] = ACTIONS(2120), - [anon_sym_str] = ACTIONS(2120), - [anon_sym_char] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_BANG] = ACTIONS(2118), - [anon_sym_AMP] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2118), - [anon_sym_DOT_DOT] = ACTIONS(2118), - [anon_sym_COLON_COLON] = ACTIONS(2118), - [anon_sym_POUND] = ACTIONS(2118), - [anon_sym_SQUOTE] = ACTIONS(2120), - [anon_sym_async] = ACTIONS(2120), - [anon_sym_break] = ACTIONS(2120), - [anon_sym_const] = ACTIONS(2120), - [anon_sym_continue] = ACTIONS(2120), - [anon_sym_default] = ACTIONS(2120), - [anon_sym_enum] = ACTIONS(2120), - [anon_sym_fn] = ACTIONS(2120), - [anon_sym_for] = ACTIONS(2120), - [anon_sym_gen] = ACTIONS(2120), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_impl] = ACTIONS(2120), - [anon_sym_let] = ACTIONS(2120), - [anon_sym_loop] = ACTIONS(2120), - [anon_sym_match] = ACTIONS(2120), - [anon_sym_mod] = ACTIONS(2120), - [anon_sym_pub] = ACTIONS(2120), - [anon_sym_return] = ACTIONS(2120), - [anon_sym_static] = ACTIONS(2120), - [anon_sym_struct] = ACTIONS(2120), - [anon_sym_trait] = ACTIONS(2120), - [anon_sym_type] = ACTIONS(2120), - [anon_sym_union] = ACTIONS(2120), - [anon_sym_unsafe] = ACTIONS(2120), - [anon_sym_use] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2120), - [anon_sym_extern] = ACTIONS(2120), - [anon_sym_yield] = ACTIONS(2120), - [anon_sym_move] = ACTIONS(2120), - [anon_sym_try] = ACTIONS(2120), - [sym_integer_literal] = ACTIONS(2118), - [aux_sym_string_literal_token1] = ACTIONS(2118), - [sym_char_literal] = ACTIONS(2118), - [anon_sym_true] = ACTIONS(2120), - [anon_sym_false] = ACTIONS(2120), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2120), - [sym_super] = ACTIONS(2120), - [sym_crate] = ACTIONS(2120), - [sym_metavariable] = ACTIONS(2118), - [sym__raw_string_literal_start] = ACTIONS(2118), - [sym_float_literal] = ACTIONS(2118), + [ts_builtin_sym_end] = ACTIONS(2208), + [sym_identifier] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_macro_rules_BANG] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_u8] = ACTIONS(2210), + [anon_sym_i8] = ACTIONS(2210), + [anon_sym_u16] = ACTIONS(2210), + [anon_sym_i16] = ACTIONS(2210), + [anon_sym_u32] = ACTIONS(2210), + [anon_sym_i32] = ACTIONS(2210), + [anon_sym_u64] = ACTIONS(2210), + [anon_sym_i64] = ACTIONS(2210), + [anon_sym_u128] = ACTIONS(2210), + [anon_sym_i128] = ACTIONS(2210), + [anon_sym_isize] = ACTIONS(2210), + [anon_sym_usize] = ACTIONS(2210), + [anon_sym_f32] = ACTIONS(2210), + [anon_sym_f64] = ACTIONS(2210), + [anon_sym_bool] = ACTIONS(2210), + [anon_sym_str] = ACTIONS(2210), + [anon_sym_char] = ACTIONS(2210), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_DOT_DOT] = ACTIONS(2208), + [anon_sym_COLON_COLON] = ACTIONS(2208), + [anon_sym_POUND] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2210), + [anon_sym_async] = ACTIONS(2210), + [anon_sym_break] = ACTIONS(2210), + [anon_sym_const] = ACTIONS(2210), + [anon_sym_continue] = ACTIONS(2210), + [anon_sym_default] = ACTIONS(2210), + [anon_sym_enum] = ACTIONS(2210), + [anon_sym_fn] = ACTIONS(2210), + [anon_sym_for] = ACTIONS(2210), + [anon_sym_gen] = ACTIONS(2210), + [anon_sym_if] = ACTIONS(2210), + [anon_sym_impl] = ACTIONS(2210), + [anon_sym_let] = ACTIONS(2210), + [anon_sym_loop] = ACTIONS(2210), + [anon_sym_match] = ACTIONS(2210), + [anon_sym_mod] = ACTIONS(2210), + [anon_sym_pub] = ACTIONS(2210), + [anon_sym_return] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2210), + [anon_sym_struct] = ACTIONS(2210), + [anon_sym_trait] = ACTIONS(2210), + [anon_sym_type] = ACTIONS(2210), + [anon_sym_union] = ACTIONS(2210), + [anon_sym_unsafe] = ACTIONS(2210), + [anon_sym_use] = ACTIONS(2210), + [anon_sym_while] = ACTIONS(2210), + [anon_sym_extern] = ACTIONS(2210), + [anon_sym_yield] = ACTIONS(2210), + [anon_sym_move] = ACTIONS(2210), + [anon_sym_try] = ACTIONS(2210), + [sym_integer_literal] = ACTIONS(2208), + [aux_sym_string_literal_token1] = ACTIONS(2208), + [sym_char_literal] = ACTIONS(2208), + [anon_sym_true] = ACTIONS(2210), + [anon_sym_false] = ACTIONS(2210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2210), + [sym_super] = ACTIONS(2210), + [sym_crate] = ACTIONS(2210), + [sym_metavariable] = ACTIONS(2208), + [sym__raw_string_literal_start] = ACTIONS(2208), + [sym_float_literal] = ACTIONS(2208), }, [STATE(571)] = { [sym_line_comment] = STATE(571), [sym_block_comment] = STATE(571), - [ts_builtin_sym_end] = ACTIONS(2122), - [sym_identifier] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_macro_rules_BANG] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_u8] = ACTIONS(2124), - [anon_sym_i8] = ACTIONS(2124), - [anon_sym_u16] = ACTIONS(2124), - [anon_sym_i16] = ACTIONS(2124), - [anon_sym_u32] = ACTIONS(2124), - [anon_sym_i32] = ACTIONS(2124), - [anon_sym_u64] = ACTIONS(2124), - [anon_sym_i64] = ACTIONS(2124), - [anon_sym_u128] = ACTIONS(2124), - [anon_sym_i128] = ACTIONS(2124), - [anon_sym_isize] = ACTIONS(2124), - [anon_sym_usize] = ACTIONS(2124), - [anon_sym_f32] = ACTIONS(2124), - [anon_sym_f64] = ACTIONS(2124), - [anon_sym_bool] = ACTIONS(2124), - [anon_sym_str] = ACTIONS(2124), - [anon_sym_char] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_DOT_DOT] = ACTIONS(2122), - [anon_sym_COLON_COLON] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_async] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_default] = ACTIONS(2124), - [anon_sym_enum] = ACTIONS(2124), - [anon_sym_fn] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2124), - [anon_sym_gen] = ACTIONS(2124), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_impl] = ACTIONS(2124), - [anon_sym_let] = ACTIONS(2124), - [anon_sym_loop] = ACTIONS(2124), - [anon_sym_match] = ACTIONS(2124), - [anon_sym_mod] = ACTIONS(2124), - [anon_sym_pub] = ACTIONS(2124), - [anon_sym_return] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2124), - [anon_sym_struct] = ACTIONS(2124), - [anon_sym_trait] = ACTIONS(2124), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2124), - [anon_sym_unsafe] = ACTIONS(2124), - [anon_sym_use] = ACTIONS(2124), - [anon_sym_while] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(2124), - [anon_sym_yield] = ACTIONS(2124), - [anon_sym_move] = ACTIONS(2124), - [anon_sym_try] = ACTIONS(2124), - [sym_integer_literal] = ACTIONS(2122), - [aux_sym_string_literal_token1] = ACTIONS(2122), - [sym_char_literal] = ACTIONS(2122), - [anon_sym_true] = ACTIONS(2124), - [anon_sym_false] = ACTIONS(2124), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2124), - [sym_super] = ACTIONS(2124), - [sym_crate] = ACTIONS(2124), - [sym_metavariable] = ACTIONS(2122), - [sym__raw_string_literal_start] = ACTIONS(2122), - [sym_float_literal] = ACTIONS(2122), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_macro_rules_BANG] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2212), + [anon_sym_u8] = ACTIONS(2214), + [anon_sym_i8] = ACTIONS(2214), + [anon_sym_u16] = ACTIONS(2214), + [anon_sym_i16] = ACTIONS(2214), + [anon_sym_u32] = ACTIONS(2214), + [anon_sym_i32] = ACTIONS(2214), + [anon_sym_u64] = ACTIONS(2214), + [anon_sym_i64] = ACTIONS(2214), + [anon_sym_u128] = ACTIONS(2214), + [anon_sym_i128] = ACTIONS(2214), + [anon_sym_isize] = ACTIONS(2214), + [anon_sym_usize] = ACTIONS(2214), + [anon_sym_f32] = ACTIONS(2214), + [anon_sym_f64] = ACTIONS(2214), + [anon_sym_bool] = ACTIONS(2214), + [anon_sym_str] = ACTIONS(2214), + [anon_sym_char] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_AMP] = ACTIONS(2212), + [anon_sym_PIPE] = ACTIONS(2212), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_DOT_DOT] = ACTIONS(2212), + [anon_sym_COLON_COLON] = ACTIONS(2212), + [anon_sym_POUND] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_async] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_default] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [anon_sym_fn] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_gen] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_impl] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_loop] = ACTIONS(2214), + [anon_sym_match] = ACTIONS(2214), + [anon_sym_mod] = ACTIONS(2214), + [anon_sym_pub] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_struct] = ACTIONS(2214), + [anon_sym_trait] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2214), + [anon_sym_union] = ACTIONS(2214), + [anon_sym_unsafe] = ACTIONS(2214), + [anon_sym_use] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_extern] = ACTIONS(2214), + [anon_sym_yield] = ACTIONS(2214), + [anon_sym_move] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [sym_integer_literal] = ACTIONS(2212), + [aux_sym_string_literal_token1] = ACTIONS(2212), + [sym_char_literal] = ACTIONS(2212), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = ACTIONS(2214), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2214), + [sym_super] = ACTIONS(2214), + [sym_crate] = ACTIONS(2214), + [sym_metavariable] = ACTIONS(2212), + [sym__raw_string_literal_start] = ACTIONS(2212), + [sym_float_literal] = ACTIONS(2212), }, [STATE(572)] = { [sym_line_comment] = STATE(572), [sym_block_comment] = STATE(572), - [ts_builtin_sym_end] = ACTIONS(2126), - [sym_identifier] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_macro_rules_BANG] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_u8] = ACTIONS(2128), - [anon_sym_i8] = ACTIONS(2128), - [anon_sym_u16] = ACTIONS(2128), - [anon_sym_i16] = ACTIONS(2128), - [anon_sym_u32] = ACTIONS(2128), - [anon_sym_i32] = ACTIONS(2128), - [anon_sym_u64] = ACTIONS(2128), - [anon_sym_i64] = ACTIONS(2128), - [anon_sym_u128] = ACTIONS(2128), - [anon_sym_i128] = ACTIONS(2128), - [anon_sym_isize] = ACTIONS(2128), - [anon_sym_usize] = ACTIONS(2128), - [anon_sym_f32] = ACTIONS(2128), - [anon_sym_f64] = ACTIONS(2128), - [anon_sym_bool] = ACTIONS(2128), - [anon_sym_str] = ACTIONS(2128), - [anon_sym_char] = ACTIONS(2128), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_DOT_DOT] = ACTIONS(2126), - [anon_sym_COLON_COLON] = ACTIONS(2126), - [anon_sym_POUND] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2128), - [anon_sym_async] = ACTIONS(2128), - [anon_sym_break] = ACTIONS(2128), - [anon_sym_const] = ACTIONS(2128), - [anon_sym_continue] = ACTIONS(2128), - [anon_sym_default] = ACTIONS(2128), - [anon_sym_enum] = ACTIONS(2128), - [anon_sym_fn] = ACTIONS(2128), - [anon_sym_for] = ACTIONS(2128), - [anon_sym_gen] = ACTIONS(2128), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_impl] = ACTIONS(2128), - [anon_sym_let] = ACTIONS(2128), - [anon_sym_loop] = ACTIONS(2128), - [anon_sym_match] = ACTIONS(2128), - [anon_sym_mod] = ACTIONS(2128), - [anon_sym_pub] = ACTIONS(2128), - [anon_sym_return] = ACTIONS(2128), - [anon_sym_static] = ACTIONS(2128), - [anon_sym_struct] = ACTIONS(2128), - [anon_sym_trait] = ACTIONS(2128), - [anon_sym_type] = ACTIONS(2128), - [anon_sym_union] = ACTIONS(2128), - [anon_sym_unsafe] = ACTIONS(2128), - [anon_sym_use] = ACTIONS(2128), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_extern] = ACTIONS(2128), - [anon_sym_yield] = ACTIONS(2128), - [anon_sym_move] = ACTIONS(2128), - [anon_sym_try] = ACTIONS(2128), - [sym_integer_literal] = ACTIONS(2126), - [aux_sym_string_literal_token1] = ACTIONS(2126), - [sym_char_literal] = ACTIONS(2126), - [anon_sym_true] = ACTIONS(2128), - [anon_sym_false] = ACTIONS(2128), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2128), - [sym_super] = ACTIONS(2128), - [sym_crate] = ACTIONS(2128), - [sym_metavariable] = ACTIONS(2126), - [sym__raw_string_literal_start] = ACTIONS(2126), - [sym_float_literal] = ACTIONS(2126), + [ts_builtin_sym_end] = ACTIONS(2216), + [sym_identifier] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_macro_rules_BANG] = ACTIONS(2216), + [anon_sym_LPAREN] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(2216), + [anon_sym_RBRACE] = ACTIONS(2216), + [anon_sym_STAR] = ACTIONS(2216), + [anon_sym_u8] = ACTIONS(2218), + [anon_sym_i8] = ACTIONS(2218), + [anon_sym_u16] = ACTIONS(2218), + [anon_sym_i16] = ACTIONS(2218), + [anon_sym_u32] = ACTIONS(2218), + [anon_sym_i32] = ACTIONS(2218), + [anon_sym_u64] = ACTIONS(2218), + [anon_sym_i64] = ACTIONS(2218), + [anon_sym_u128] = ACTIONS(2218), + [anon_sym_i128] = ACTIONS(2218), + [anon_sym_isize] = ACTIONS(2218), + [anon_sym_usize] = ACTIONS(2218), + [anon_sym_f32] = ACTIONS(2218), + [anon_sym_f64] = ACTIONS(2218), + [anon_sym_bool] = ACTIONS(2218), + [anon_sym_str] = ACTIONS(2218), + [anon_sym_char] = ACTIONS(2218), + [anon_sym_DASH] = ACTIONS(2216), + [anon_sym_BANG] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2216), + [anon_sym_DOT_DOT] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_POUND] = ACTIONS(2216), + [anon_sym_SQUOTE] = ACTIONS(2218), + [anon_sym_async] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_default] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_fn] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_gen] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_impl] = ACTIONS(2218), + [anon_sym_let] = ACTIONS(2218), + [anon_sym_loop] = ACTIONS(2218), + [anon_sym_match] = ACTIONS(2218), + [anon_sym_mod] = ACTIONS(2218), + [anon_sym_pub] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_trait] = ACTIONS(2218), + [anon_sym_type] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [anon_sym_unsafe] = ACTIONS(2218), + [anon_sym_use] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym_yield] = ACTIONS(2218), + [anon_sym_move] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [sym_integer_literal] = ACTIONS(2216), + [aux_sym_string_literal_token1] = ACTIONS(2216), + [sym_char_literal] = ACTIONS(2216), + [anon_sym_true] = ACTIONS(2218), + [anon_sym_false] = ACTIONS(2218), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2218), + [sym_super] = ACTIONS(2218), + [sym_crate] = ACTIONS(2218), + [sym_metavariable] = ACTIONS(2216), + [sym__raw_string_literal_start] = ACTIONS(2216), + [sym_float_literal] = ACTIONS(2216), }, [STATE(573)] = { [sym_line_comment] = STATE(573), [sym_block_comment] = STATE(573), - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2130), - [anon_sym_macro_rules_BANG] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2130), - [anon_sym_LBRACK] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_RBRACE] = ACTIONS(2130), - [anon_sym_STAR] = ACTIONS(2130), - [anon_sym_u8] = ACTIONS(2132), - [anon_sym_i8] = ACTIONS(2132), - [anon_sym_u16] = ACTIONS(2132), - [anon_sym_i16] = ACTIONS(2132), - [anon_sym_u32] = ACTIONS(2132), - [anon_sym_i32] = ACTIONS(2132), - [anon_sym_u64] = ACTIONS(2132), - [anon_sym_i64] = ACTIONS(2132), - [anon_sym_u128] = ACTIONS(2132), - [anon_sym_i128] = ACTIONS(2132), - [anon_sym_isize] = ACTIONS(2132), - [anon_sym_usize] = ACTIONS(2132), - [anon_sym_f32] = ACTIONS(2132), - [anon_sym_f64] = ACTIONS(2132), - [anon_sym_bool] = ACTIONS(2132), - [anon_sym_str] = ACTIONS(2132), - [anon_sym_char] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2130), - [anon_sym_BANG] = ACTIONS(2130), - [anon_sym_AMP] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(2130), - [anon_sym_LT] = ACTIONS(2130), - [anon_sym_DOT_DOT] = ACTIONS(2130), - [anon_sym_COLON_COLON] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(2130), - [anon_sym_SQUOTE] = ACTIONS(2132), - [anon_sym_async] = ACTIONS(2132), - [anon_sym_break] = ACTIONS(2132), - [anon_sym_const] = ACTIONS(2132), - [anon_sym_continue] = ACTIONS(2132), - [anon_sym_default] = ACTIONS(2132), - [anon_sym_enum] = ACTIONS(2132), - [anon_sym_fn] = ACTIONS(2132), - [anon_sym_for] = ACTIONS(2132), - [anon_sym_gen] = ACTIONS(2132), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_impl] = ACTIONS(2132), - [anon_sym_let] = ACTIONS(2132), - [anon_sym_loop] = ACTIONS(2132), - [anon_sym_match] = ACTIONS(2132), - [anon_sym_mod] = ACTIONS(2132), - [anon_sym_pub] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(2132), - [anon_sym_static] = ACTIONS(2132), - [anon_sym_struct] = ACTIONS(2132), - [anon_sym_trait] = ACTIONS(2132), - [anon_sym_type] = ACTIONS(2132), - [anon_sym_union] = ACTIONS(2132), - [anon_sym_unsafe] = ACTIONS(2132), - [anon_sym_use] = ACTIONS(2132), - [anon_sym_while] = ACTIONS(2132), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_yield] = ACTIONS(2132), - [anon_sym_move] = ACTIONS(2132), - [anon_sym_try] = ACTIONS(2132), - [sym_integer_literal] = ACTIONS(2130), - [aux_sym_string_literal_token1] = ACTIONS(2130), - [sym_char_literal] = ACTIONS(2130), - [anon_sym_true] = ACTIONS(2132), - [anon_sym_false] = ACTIONS(2132), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2132), - [sym_super] = ACTIONS(2132), - [sym_crate] = ACTIONS(2132), - [sym_metavariable] = ACTIONS(2130), - [sym__raw_string_literal_start] = ACTIONS(2130), - [sym_float_literal] = ACTIONS(2130), + [ts_builtin_sym_end] = ACTIONS(2220), + [sym_identifier] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym_macro_rules_BANG] = ACTIONS(2220), + [anon_sym_LPAREN] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_RBRACE] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_u8] = ACTIONS(2222), + [anon_sym_i8] = ACTIONS(2222), + [anon_sym_u16] = ACTIONS(2222), + [anon_sym_i16] = ACTIONS(2222), + [anon_sym_u32] = ACTIONS(2222), + [anon_sym_i32] = ACTIONS(2222), + [anon_sym_u64] = ACTIONS(2222), + [anon_sym_i64] = ACTIONS(2222), + [anon_sym_u128] = ACTIONS(2222), + [anon_sym_i128] = ACTIONS(2222), + [anon_sym_isize] = ACTIONS(2222), + [anon_sym_usize] = ACTIONS(2222), + [anon_sym_f32] = ACTIONS(2222), + [anon_sym_f64] = ACTIONS(2222), + [anon_sym_bool] = ACTIONS(2222), + [anon_sym_str] = ACTIONS(2222), + [anon_sym_char] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_DOT_DOT] = ACTIONS(2220), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_POUND] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [anon_sym_fn] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_gen] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_impl] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_loop] = ACTIONS(2222), + [anon_sym_match] = ACTIONS(2222), + [anon_sym_mod] = ACTIONS(2222), + [anon_sym_pub] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2222), + [anon_sym_trait] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_union] = ACTIONS(2222), + [anon_sym_unsafe] = ACTIONS(2222), + [anon_sym_use] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_extern] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_move] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [sym_integer_literal] = ACTIONS(2220), + [aux_sym_string_literal_token1] = ACTIONS(2220), + [sym_char_literal] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2222), + [anon_sym_false] = ACTIONS(2222), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_crate] = ACTIONS(2222), + [sym_metavariable] = ACTIONS(2220), + [sym__raw_string_literal_start] = ACTIONS(2220), + [sym_float_literal] = ACTIONS(2220), }, [STATE(574)] = { [sym_line_comment] = STATE(574), [sym_block_comment] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(2134), - [sym_identifier] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_macro_rules_BANG] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2134), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2134), - [anon_sym_u8] = ACTIONS(2136), - [anon_sym_i8] = ACTIONS(2136), - [anon_sym_u16] = ACTIONS(2136), - [anon_sym_i16] = ACTIONS(2136), - [anon_sym_u32] = ACTIONS(2136), - [anon_sym_i32] = ACTIONS(2136), - [anon_sym_u64] = ACTIONS(2136), - [anon_sym_i64] = ACTIONS(2136), - [anon_sym_u128] = ACTIONS(2136), - [anon_sym_i128] = ACTIONS(2136), - [anon_sym_isize] = ACTIONS(2136), - [anon_sym_usize] = ACTIONS(2136), - [anon_sym_f32] = ACTIONS(2136), - [anon_sym_f64] = ACTIONS(2136), - [anon_sym_bool] = ACTIONS(2136), - [anon_sym_str] = ACTIONS(2136), - [anon_sym_char] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_BANG] = ACTIONS(2134), - [anon_sym_AMP] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_DOT_DOT] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(2134), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_async] = ACTIONS(2136), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_const] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), - [anon_sym_default] = ACTIONS(2136), - [anon_sym_enum] = ACTIONS(2136), - [anon_sym_fn] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_gen] = ACTIONS(2136), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_impl] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2136), - [anon_sym_loop] = ACTIONS(2136), - [anon_sym_match] = ACTIONS(2136), - [anon_sym_mod] = ACTIONS(2136), - [anon_sym_pub] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_struct] = ACTIONS(2136), - [anon_sym_trait] = ACTIONS(2136), - [anon_sym_type] = ACTIONS(2136), - [anon_sym_union] = ACTIONS(2136), - [anon_sym_unsafe] = ACTIONS(2136), - [anon_sym_use] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2136), - [anon_sym_yield] = ACTIONS(2136), - [anon_sym_move] = ACTIONS(2136), - [anon_sym_try] = ACTIONS(2136), - [sym_integer_literal] = ACTIONS(2134), - [aux_sym_string_literal_token1] = ACTIONS(2134), - [sym_char_literal] = ACTIONS(2134), - [anon_sym_true] = ACTIONS(2136), - [anon_sym_false] = ACTIONS(2136), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2136), - [sym_super] = ACTIONS(2136), - [sym_crate] = ACTIONS(2136), - [sym_metavariable] = ACTIONS(2134), - [sym__raw_string_literal_start] = ACTIONS(2134), - [sym_float_literal] = ACTIONS(2134), + [ts_builtin_sym_end] = ACTIONS(2224), + [sym_identifier] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_macro_rules_BANG] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_u8] = ACTIONS(2226), + [anon_sym_i8] = ACTIONS(2226), + [anon_sym_u16] = ACTIONS(2226), + [anon_sym_i16] = ACTIONS(2226), + [anon_sym_u32] = ACTIONS(2226), + [anon_sym_i32] = ACTIONS(2226), + [anon_sym_u64] = ACTIONS(2226), + [anon_sym_i64] = ACTIONS(2226), + [anon_sym_u128] = ACTIONS(2226), + [anon_sym_i128] = ACTIONS(2226), + [anon_sym_isize] = ACTIONS(2226), + [anon_sym_usize] = ACTIONS(2226), + [anon_sym_f32] = ACTIONS(2226), + [anon_sym_f64] = ACTIONS(2226), + [anon_sym_bool] = ACTIONS(2226), + [anon_sym_str] = ACTIONS(2226), + [anon_sym_char] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_DOT_DOT] = ACTIONS(2224), + [anon_sym_COLON_COLON] = ACTIONS(2224), + [anon_sym_POUND] = ACTIONS(2224), + [anon_sym_SQUOTE] = ACTIONS(2226), + [anon_sym_async] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [anon_sym_fn] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_gen] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_impl] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_loop] = ACTIONS(2226), + [anon_sym_match] = ACTIONS(2226), + [anon_sym_mod] = ACTIONS(2226), + [anon_sym_pub] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_struct] = ACTIONS(2226), + [anon_sym_trait] = ACTIONS(2226), + [anon_sym_type] = ACTIONS(2226), + [anon_sym_union] = ACTIONS(2226), + [anon_sym_unsafe] = ACTIONS(2226), + [anon_sym_use] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_extern] = ACTIONS(2226), + [anon_sym_yield] = ACTIONS(2226), + [anon_sym_move] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [sym_integer_literal] = ACTIONS(2224), + [aux_sym_string_literal_token1] = ACTIONS(2224), + [sym_char_literal] = ACTIONS(2224), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2226), + [sym_super] = ACTIONS(2226), + [sym_crate] = ACTIONS(2226), + [sym_metavariable] = ACTIONS(2224), + [sym__raw_string_literal_start] = ACTIONS(2224), + [sym_float_literal] = ACTIONS(2224), }, [STATE(575)] = { [sym_line_comment] = STATE(575), [sym_block_comment] = STATE(575), - [ts_builtin_sym_end] = ACTIONS(2138), - [sym_identifier] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_macro_rules_BANG] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2138), - [anon_sym_u8] = ACTIONS(2140), - [anon_sym_i8] = ACTIONS(2140), - [anon_sym_u16] = ACTIONS(2140), - [anon_sym_i16] = ACTIONS(2140), - [anon_sym_u32] = ACTIONS(2140), - [anon_sym_i32] = ACTIONS(2140), - [anon_sym_u64] = ACTIONS(2140), - [anon_sym_i64] = ACTIONS(2140), - [anon_sym_u128] = ACTIONS(2140), - [anon_sym_i128] = ACTIONS(2140), - [anon_sym_isize] = ACTIONS(2140), - [anon_sym_usize] = ACTIONS(2140), - [anon_sym_f32] = ACTIONS(2140), - [anon_sym_f64] = ACTIONS(2140), - [anon_sym_bool] = ACTIONS(2140), - [anon_sym_str] = ACTIONS(2140), - [anon_sym_char] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_AMP] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_DOT_DOT] = ACTIONS(2138), - [anon_sym_COLON_COLON] = ACTIONS(2138), - [anon_sym_POUND] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [anon_sym_fn] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_gen] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_impl] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_loop] = ACTIONS(2140), - [anon_sym_match] = ACTIONS(2140), - [anon_sym_mod] = ACTIONS(2140), - [anon_sym_pub] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_struct] = ACTIONS(2140), - [anon_sym_trait] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_union] = ACTIONS(2140), - [anon_sym_unsafe] = ACTIONS(2140), - [anon_sym_use] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_move] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [sym_integer_literal] = ACTIONS(2138), - [aux_sym_string_literal_token1] = ACTIONS(2138), - [sym_char_literal] = ACTIONS(2138), - [anon_sym_true] = ACTIONS(2140), - [anon_sym_false] = ACTIONS(2140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_crate] = ACTIONS(2140), - [sym_metavariable] = ACTIONS(2138), - [sym__raw_string_literal_start] = ACTIONS(2138), - [sym_float_literal] = ACTIONS(2138), + [ts_builtin_sym_end] = ACTIONS(2228), + [sym_identifier] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_macro_rules_BANG] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_u8] = ACTIONS(2230), + [anon_sym_i8] = ACTIONS(2230), + [anon_sym_u16] = ACTIONS(2230), + [anon_sym_i16] = ACTIONS(2230), + [anon_sym_u32] = ACTIONS(2230), + [anon_sym_i32] = ACTIONS(2230), + [anon_sym_u64] = ACTIONS(2230), + [anon_sym_i64] = ACTIONS(2230), + [anon_sym_u128] = ACTIONS(2230), + [anon_sym_i128] = ACTIONS(2230), + [anon_sym_isize] = ACTIONS(2230), + [anon_sym_usize] = ACTIONS(2230), + [anon_sym_f32] = ACTIONS(2230), + [anon_sym_f64] = ACTIONS(2230), + [anon_sym_bool] = ACTIONS(2230), + [anon_sym_str] = ACTIONS(2230), + [anon_sym_char] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_LT] = ACTIONS(2228), + [anon_sym_DOT_DOT] = ACTIONS(2228), + [anon_sym_COLON_COLON] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(2228), + [anon_sym_SQUOTE] = ACTIONS(2230), + [anon_sym_async] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_enum] = ACTIONS(2230), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_gen] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_impl] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_loop] = ACTIONS(2230), + [anon_sym_match] = ACTIONS(2230), + [anon_sym_mod] = ACTIONS(2230), + [anon_sym_pub] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_static] = ACTIONS(2230), + [anon_sym_struct] = ACTIONS(2230), + [anon_sym_trait] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2230), + [anon_sym_union] = ACTIONS(2230), + [anon_sym_unsafe] = ACTIONS(2230), + [anon_sym_use] = ACTIONS(2230), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_extern] = ACTIONS(2230), + [anon_sym_yield] = ACTIONS(2230), + [anon_sym_move] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2230), + [sym_integer_literal] = ACTIONS(2228), + [aux_sym_string_literal_token1] = ACTIONS(2228), + [sym_char_literal] = ACTIONS(2228), + [anon_sym_true] = ACTIONS(2230), + [anon_sym_false] = ACTIONS(2230), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2230), + [sym_super] = ACTIONS(2230), + [sym_crate] = ACTIONS(2230), + [sym_metavariable] = ACTIONS(2228), + [sym__raw_string_literal_start] = ACTIONS(2228), + [sym_float_literal] = ACTIONS(2228), }, [STATE(576)] = { [sym_line_comment] = STATE(576), [sym_block_comment] = STATE(576), - [ts_builtin_sym_end] = ACTIONS(2142), - [sym_identifier] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym_macro_rules_BANG] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_u8] = ACTIONS(2144), - [anon_sym_i8] = ACTIONS(2144), - [anon_sym_u16] = ACTIONS(2144), - [anon_sym_i16] = ACTIONS(2144), - [anon_sym_u32] = ACTIONS(2144), - [anon_sym_i32] = ACTIONS(2144), - [anon_sym_u64] = ACTIONS(2144), - [anon_sym_i64] = ACTIONS(2144), - [anon_sym_u128] = ACTIONS(2144), - [anon_sym_i128] = ACTIONS(2144), - [anon_sym_isize] = ACTIONS(2144), - [anon_sym_usize] = ACTIONS(2144), - [anon_sym_f32] = ACTIONS(2144), - [anon_sym_f64] = ACTIONS(2144), - [anon_sym_bool] = ACTIONS(2144), - [anon_sym_str] = ACTIONS(2144), - [anon_sym_char] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_DOT_DOT] = ACTIONS(2142), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_gen] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_yield] = ACTIONS(2144), - [anon_sym_move] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2142), - [aux_sym_string_literal_token1] = ACTIONS(2142), - [sym_char_literal] = ACTIONS(2142), - [anon_sym_true] = ACTIONS(2144), - [anon_sym_false] = ACTIONS(2144), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2142), - [sym__raw_string_literal_start] = ACTIONS(2142), - [sym_float_literal] = ACTIONS(2142), + [ts_builtin_sym_end] = ACTIONS(2232), + [sym_identifier] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_macro_rules_BANG] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_u8] = ACTIONS(2234), + [anon_sym_i8] = ACTIONS(2234), + [anon_sym_u16] = ACTIONS(2234), + [anon_sym_i16] = ACTIONS(2234), + [anon_sym_u32] = ACTIONS(2234), + [anon_sym_i32] = ACTIONS(2234), + [anon_sym_u64] = ACTIONS(2234), + [anon_sym_i64] = ACTIONS(2234), + [anon_sym_u128] = ACTIONS(2234), + [anon_sym_i128] = ACTIONS(2234), + [anon_sym_isize] = ACTIONS(2234), + [anon_sym_usize] = ACTIONS(2234), + [anon_sym_f32] = ACTIONS(2234), + [anon_sym_f64] = ACTIONS(2234), + [anon_sym_bool] = ACTIONS(2234), + [anon_sym_str] = ACTIONS(2234), + [anon_sym_char] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_DOT_DOT] = ACTIONS(2232), + [anon_sym_COLON_COLON] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2232), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_async] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_default] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [anon_sym_fn] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_gen] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_impl] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_loop] = ACTIONS(2234), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_mod] = ACTIONS(2234), + [anon_sym_pub] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2234), + [anon_sym_struct] = ACTIONS(2234), + [anon_sym_trait] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_union] = ACTIONS(2234), + [anon_sym_unsafe] = ACTIONS(2234), + [anon_sym_use] = ACTIONS(2234), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_extern] = ACTIONS(2234), + [anon_sym_yield] = ACTIONS(2234), + [anon_sym_move] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2234), + [sym_integer_literal] = ACTIONS(2232), + [aux_sym_string_literal_token1] = ACTIONS(2232), + [sym_char_literal] = ACTIONS(2232), + [anon_sym_true] = ACTIONS(2234), + [anon_sym_false] = ACTIONS(2234), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2234), + [sym_super] = ACTIONS(2234), + [sym_crate] = ACTIONS(2234), + [sym_metavariable] = ACTIONS(2232), + [sym__raw_string_literal_start] = ACTIONS(2232), + [sym_float_literal] = ACTIONS(2232), }, [STATE(577)] = { [sym_line_comment] = STATE(577), [sym_block_comment] = STATE(577), - [ts_builtin_sym_end] = ACTIONS(2146), - [sym_identifier] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_macro_rules_BANG] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_u8] = ACTIONS(2148), - [anon_sym_i8] = ACTIONS(2148), - [anon_sym_u16] = ACTIONS(2148), - [anon_sym_i16] = ACTIONS(2148), - [anon_sym_u32] = ACTIONS(2148), - [anon_sym_i32] = ACTIONS(2148), - [anon_sym_u64] = ACTIONS(2148), - [anon_sym_i64] = ACTIONS(2148), - [anon_sym_u128] = ACTIONS(2148), - [anon_sym_i128] = ACTIONS(2148), - [anon_sym_isize] = ACTIONS(2148), - [anon_sym_usize] = ACTIONS(2148), - [anon_sym_f32] = ACTIONS(2148), - [anon_sym_f64] = ACTIONS(2148), - [anon_sym_bool] = ACTIONS(2148), - [anon_sym_str] = ACTIONS(2148), - [anon_sym_char] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2146), - [anon_sym_PIPE] = ACTIONS(2146), - [anon_sym_LT] = ACTIONS(2146), - [anon_sym_DOT_DOT] = ACTIONS(2146), - [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_POUND] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2148), - [anon_sym_async] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_default] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_fn] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2148), - [anon_sym_gen] = ACTIONS(2148), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_impl] = ACTIONS(2148), - [anon_sym_let] = ACTIONS(2148), - [anon_sym_loop] = ACTIONS(2148), - [anon_sym_match] = ACTIONS(2148), - [anon_sym_mod] = ACTIONS(2148), - [anon_sym_pub] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_trait] = ACTIONS(2148), - [anon_sym_type] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [anon_sym_unsafe] = ACTIONS(2148), - [anon_sym_use] = ACTIONS(2148), - [anon_sym_while] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym_yield] = ACTIONS(2148), - [anon_sym_move] = ACTIONS(2148), - [anon_sym_try] = ACTIONS(2148), - [sym_integer_literal] = ACTIONS(2146), - [aux_sym_string_literal_token1] = ACTIONS(2146), - [sym_char_literal] = ACTIONS(2146), - [anon_sym_true] = ACTIONS(2148), - [anon_sym_false] = ACTIONS(2148), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2148), - [sym_super] = ACTIONS(2148), - [sym_crate] = ACTIONS(2148), - [sym_metavariable] = ACTIONS(2146), - [sym__raw_string_literal_start] = ACTIONS(2146), - [sym_float_literal] = ACTIONS(2146), + [ts_builtin_sym_end] = ACTIONS(2236), + [sym_identifier] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2236), + [anon_sym_macro_rules_BANG] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(2236), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_u8] = ACTIONS(2238), + [anon_sym_i8] = ACTIONS(2238), + [anon_sym_u16] = ACTIONS(2238), + [anon_sym_i16] = ACTIONS(2238), + [anon_sym_u32] = ACTIONS(2238), + [anon_sym_i32] = ACTIONS(2238), + [anon_sym_u64] = ACTIONS(2238), + [anon_sym_i64] = ACTIONS(2238), + [anon_sym_u128] = ACTIONS(2238), + [anon_sym_i128] = ACTIONS(2238), + [anon_sym_isize] = ACTIONS(2238), + [anon_sym_usize] = ACTIONS(2238), + [anon_sym_f32] = ACTIONS(2238), + [anon_sym_f64] = ACTIONS(2238), + [anon_sym_bool] = ACTIONS(2238), + [anon_sym_str] = ACTIONS(2238), + [anon_sym_char] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2236), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_DOT_DOT] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_POUND] = ACTIONS(2236), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_async] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [anon_sym_fn] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_gen] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_impl] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2238), + [anon_sym_loop] = ACTIONS(2238), + [anon_sym_match] = ACTIONS(2238), + [anon_sym_mod] = ACTIONS(2238), + [anon_sym_pub] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_struct] = ACTIONS(2238), + [anon_sym_trait] = ACTIONS(2238), + [anon_sym_type] = ACTIONS(2238), + [anon_sym_union] = ACTIONS(2238), + [anon_sym_unsafe] = ACTIONS(2238), + [anon_sym_use] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_extern] = ACTIONS(2238), + [anon_sym_yield] = ACTIONS(2238), + [anon_sym_move] = ACTIONS(2238), + [anon_sym_try] = ACTIONS(2238), + [sym_integer_literal] = ACTIONS(2236), + [aux_sym_string_literal_token1] = ACTIONS(2236), + [sym_char_literal] = ACTIONS(2236), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2238), + [sym_super] = ACTIONS(2238), + [sym_crate] = ACTIONS(2238), + [sym_metavariable] = ACTIONS(2236), + [sym__raw_string_literal_start] = ACTIONS(2236), + [sym_float_literal] = ACTIONS(2236), }, [STATE(578)] = { [sym_line_comment] = STATE(578), [sym_block_comment] = STATE(578), - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_macro_rules_BANG] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2150), - [anon_sym_u8] = ACTIONS(2152), - [anon_sym_i8] = ACTIONS(2152), - [anon_sym_u16] = ACTIONS(2152), - [anon_sym_i16] = ACTIONS(2152), - [anon_sym_u32] = ACTIONS(2152), - [anon_sym_i32] = ACTIONS(2152), - [anon_sym_u64] = ACTIONS(2152), - [anon_sym_i64] = ACTIONS(2152), - [anon_sym_u128] = ACTIONS(2152), - [anon_sym_i128] = ACTIONS(2152), - [anon_sym_isize] = ACTIONS(2152), - [anon_sym_usize] = ACTIONS(2152), - [anon_sym_f32] = ACTIONS(2152), - [anon_sym_f64] = ACTIONS(2152), - [anon_sym_bool] = ACTIONS(2152), - [anon_sym_str] = ACTIONS(2152), - [anon_sym_char] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_BANG] = ACTIONS(2150), - [anon_sym_AMP] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_DOT_DOT] = ACTIONS(2150), - [anon_sym_COLON_COLON] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [anon_sym_fn] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_gen] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_impl] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_loop] = ACTIONS(2152), - [anon_sym_match] = ACTIONS(2152), - [anon_sym_mod] = ACTIONS(2152), - [anon_sym_pub] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_struct] = ACTIONS(2152), - [anon_sym_trait] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_union] = ACTIONS(2152), - [anon_sym_unsafe] = ACTIONS(2152), - [anon_sym_use] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_extern] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_move] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [sym_integer_literal] = ACTIONS(2150), - [aux_sym_string_literal_token1] = ACTIONS(2150), - [sym_char_literal] = ACTIONS(2150), - [anon_sym_true] = ACTIONS(2152), - [anon_sym_false] = ACTIONS(2152), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_crate] = ACTIONS(2152), - [sym_metavariable] = ACTIONS(2150), - [sym__raw_string_literal_start] = ACTIONS(2150), - [sym_float_literal] = ACTIONS(2150), + [ts_builtin_sym_end] = ACTIONS(2240), + [sym_identifier] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2240), + [anon_sym_macro_rules_BANG] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_u8] = ACTIONS(2242), + [anon_sym_i8] = ACTIONS(2242), + [anon_sym_u16] = ACTIONS(2242), + [anon_sym_i16] = ACTIONS(2242), + [anon_sym_u32] = ACTIONS(2242), + [anon_sym_i32] = ACTIONS(2242), + [anon_sym_u64] = ACTIONS(2242), + [anon_sym_i64] = ACTIONS(2242), + [anon_sym_u128] = ACTIONS(2242), + [anon_sym_i128] = ACTIONS(2242), + [anon_sym_isize] = ACTIONS(2242), + [anon_sym_usize] = ACTIONS(2242), + [anon_sym_f32] = ACTIONS(2242), + [anon_sym_f64] = ACTIONS(2242), + [anon_sym_bool] = ACTIONS(2242), + [anon_sym_str] = ACTIONS(2242), + [anon_sym_char] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_LT] = ACTIONS(2240), + [anon_sym_DOT_DOT] = ACTIONS(2240), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(2240), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_const] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_default] = ACTIONS(2242), + [anon_sym_enum] = ACTIONS(2242), + [anon_sym_fn] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_gen] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_impl] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_loop] = ACTIONS(2242), + [anon_sym_match] = ACTIONS(2242), + [anon_sym_mod] = ACTIONS(2242), + [anon_sym_pub] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2242), + [anon_sym_struct] = ACTIONS(2242), + [anon_sym_trait] = ACTIONS(2242), + [anon_sym_type] = ACTIONS(2242), + [anon_sym_union] = ACTIONS(2242), + [anon_sym_unsafe] = ACTIONS(2242), + [anon_sym_use] = ACTIONS(2242), + [anon_sym_while] = ACTIONS(2242), + [anon_sym_extern] = ACTIONS(2242), + [anon_sym_yield] = ACTIONS(2242), + [anon_sym_move] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2242), + [sym_integer_literal] = ACTIONS(2240), + [aux_sym_string_literal_token1] = ACTIONS(2240), + [sym_char_literal] = ACTIONS(2240), + [anon_sym_true] = ACTIONS(2242), + [anon_sym_false] = ACTIONS(2242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2242), + [sym_super] = ACTIONS(2242), + [sym_crate] = ACTIONS(2242), + [sym_metavariable] = ACTIONS(2240), + [sym__raw_string_literal_start] = ACTIONS(2240), + [sym_float_literal] = ACTIONS(2240), }, [STATE(579)] = { [sym_line_comment] = STATE(579), [sym_block_comment] = STATE(579), - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2154), - [anon_sym_macro_rules_BANG] = ACTIONS(2154), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_STAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2154), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_DOT_DOT] = ACTIONS(2154), - [anon_sym_COLON_COLON] = ACTIONS(2154), - [anon_sym_POUND] = ACTIONS(2154), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_async] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [anon_sym_fn] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_gen] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_impl] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_loop] = ACTIONS(2156), - [anon_sym_match] = ACTIONS(2156), - [anon_sym_mod] = ACTIONS(2156), - [anon_sym_pub] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_struct] = ACTIONS(2156), - [anon_sym_trait] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_union] = ACTIONS(2156), - [anon_sym_unsafe] = ACTIONS(2156), - [anon_sym_use] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_yield] = ACTIONS(2156), - [anon_sym_move] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [sym_integer_literal] = ACTIONS(2154), - [aux_sym_string_literal_token1] = ACTIONS(2154), - [sym_char_literal] = ACTIONS(2154), - [anon_sym_true] = ACTIONS(2156), - [anon_sym_false] = ACTIONS(2156), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2156), - [sym_super] = ACTIONS(2156), - [sym_crate] = ACTIONS(2156), - [sym_metavariable] = ACTIONS(2154), - [sym__raw_string_literal_start] = ACTIONS(2154), - [sym_float_literal] = ACTIONS(2154), - }, - [STATE(580)] = { - [sym_line_comment] = STATE(580), - [sym_block_comment] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(2158), - [sym_identifier] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_macro_rules_BANG] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_u8] = ACTIONS(2160), - [anon_sym_i8] = ACTIONS(2160), - [anon_sym_u16] = ACTIONS(2160), - [anon_sym_i16] = ACTIONS(2160), - [anon_sym_u32] = ACTIONS(2160), - [anon_sym_i32] = ACTIONS(2160), - [anon_sym_u64] = ACTIONS(2160), - [anon_sym_i64] = ACTIONS(2160), - [anon_sym_u128] = ACTIONS(2160), - [anon_sym_i128] = ACTIONS(2160), - [anon_sym_isize] = ACTIONS(2160), - [anon_sym_usize] = ACTIONS(2160), - [anon_sym_f32] = ACTIONS(2160), - [anon_sym_f64] = ACTIONS(2160), - [anon_sym_bool] = ACTIONS(2160), - [anon_sym_str] = ACTIONS(2160), - [anon_sym_char] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_DOT_DOT] = ACTIONS(2158), - [anon_sym_COLON_COLON] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [anon_sym_fn] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_gen] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_impl] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_loop] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2160), - [anon_sym_mod] = ACTIONS(2160), - [anon_sym_pub] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(2160), - [anon_sym_trait] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_union] = ACTIONS(2160), - [anon_sym_unsafe] = ACTIONS(2160), - [anon_sym_use] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_move] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(2158), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(2160), - [anon_sym_false] = ACTIONS(2160), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_crate] = ACTIONS(2160), - [sym_metavariable] = ACTIONS(2158), - [sym__raw_string_literal_start] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), - }, - [STATE(581)] = { - [sym_line_comment] = STATE(581), - [sym_block_comment] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_macro_rules_BANG] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_u8] = ACTIONS(2164), - [anon_sym_i8] = ACTIONS(2164), - [anon_sym_u16] = ACTIONS(2164), - [anon_sym_i16] = ACTIONS(2164), - [anon_sym_u32] = ACTIONS(2164), - [anon_sym_i32] = ACTIONS(2164), - [anon_sym_u64] = ACTIONS(2164), - [anon_sym_i64] = ACTIONS(2164), - [anon_sym_u128] = ACTIONS(2164), - [anon_sym_i128] = ACTIONS(2164), - [anon_sym_isize] = ACTIONS(2164), - [anon_sym_usize] = ACTIONS(2164), - [anon_sym_f32] = ACTIONS(2164), - [anon_sym_f64] = ACTIONS(2164), - [anon_sym_bool] = ACTIONS(2164), - [anon_sym_str] = ACTIONS(2164), - [anon_sym_char] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_BANG] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_DOT_DOT] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_default] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [anon_sym_fn] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_gen] = ACTIONS(2164), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_impl] = ACTIONS(2164), - [anon_sym_let] = ACTIONS(2164), - [anon_sym_loop] = ACTIONS(2164), - [anon_sym_match] = ACTIONS(2164), - [anon_sym_mod] = ACTIONS(2164), - [anon_sym_pub] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_struct] = ACTIONS(2164), - [anon_sym_trait] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_union] = ACTIONS(2164), - [anon_sym_unsafe] = ACTIONS(2164), - [anon_sym_use] = ACTIONS(2164), - [anon_sym_while] = ACTIONS(2164), - [anon_sym_extern] = ACTIONS(2164), - [anon_sym_yield] = ACTIONS(2164), - [anon_sym_move] = ACTIONS(2164), - [anon_sym_try] = ACTIONS(2164), - [sym_integer_literal] = ACTIONS(2162), - [aux_sym_string_literal_token1] = ACTIONS(2162), - [sym_char_literal] = ACTIONS(2162), - [anon_sym_true] = ACTIONS(2164), - [anon_sym_false] = ACTIONS(2164), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2164), - [sym_super] = ACTIONS(2164), - [sym_crate] = ACTIONS(2164), - [sym_metavariable] = ACTIONS(2162), - [sym__raw_string_literal_start] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - }, - [STATE(582)] = { - [sym_line_comment] = STATE(582), - [sym_block_comment] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_macro_rules_BANG] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_u8] = ACTIONS(2168), - [anon_sym_i8] = ACTIONS(2168), - [anon_sym_u16] = ACTIONS(2168), - [anon_sym_i16] = ACTIONS(2168), - [anon_sym_u32] = ACTIONS(2168), - [anon_sym_i32] = ACTIONS(2168), - [anon_sym_u64] = ACTIONS(2168), - [anon_sym_i64] = ACTIONS(2168), - [anon_sym_u128] = ACTIONS(2168), - [anon_sym_i128] = ACTIONS(2168), - [anon_sym_isize] = ACTIONS(2168), - [anon_sym_usize] = ACTIONS(2168), - [anon_sym_f32] = ACTIONS(2168), - [anon_sym_f64] = ACTIONS(2168), - [anon_sym_bool] = ACTIONS(2168), - [anon_sym_str] = ACTIONS(2168), - [anon_sym_char] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_DOT_DOT] = ACTIONS(2166), - [anon_sym_COLON_COLON] = ACTIONS(2166), - [anon_sym_POUND] = ACTIONS(2166), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_async] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_const] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_default] = ACTIONS(2168), - [anon_sym_enum] = ACTIONS(2168), - [anon_sym_fn] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_gen] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_impl] = ACTIONS(2168), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_loop] = ACTIONS(2168), - [anon_sym_match] = ACTIONS(2168), - [anon_sym_mod] = ACTIONS(2168), - [anon_sym_pub] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_struct] = ACTIONS(2168), - [anon_sym_trait] = ACTIONS(2168), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_union] = ACTIONS(2168), - [anon_sym_unsafe] = ACTIONS(2168), - [anon_sym_use] = ACTIONS(2168), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_extern] = ACTIONS(2168), - [anon_sym_yield] = ACTIONS(2168), - [anon_sym_move] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [sym_integer_literal] = ACTIONS(2166), - [aux_sym_string_literal_token1] = ACTIONS(2166), - [sym_char_literal] = ACTIONS(2166), - [anon_sym_true] = ACTIONS(2168), - [anon_sym_false] = ACTIONS(2168), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2168), - [sym_super] = ACTIONS(2168), - [sym_crate] = ACTIONS(2168), - [sym_metavariable] = ACTIONS(2166), - [sym__raw_string_literal_start] = ACTIONS(2166), - [sym_float_literal] = ACTIONS(2166), - }, - [STATE(583)] = { - [sym_line_comment] = STATE(583), - [sym_block_comment] = STATE(583), - [ts_builtin_sym_end] = ACTIONS(2170), - [sym_identifier] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_macro_rules_BANG] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(2170), - [anon_sym_LBRACK] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2170), - [anon_sym_STAR] = ACTIONS(2170), - [anon_sym_u8] = ACTIONS(2172), - [anon_sym_i8] = ACTIONS(2172), - [anon_sym_u16] = ACTIONS(2172), - [anon_sym_i16] = ACTIONS(2172), - [anon_sym_u32] = ACTIONS(2172), - [anon_sym_i32] = ACTIONS(2172), - [anon_sym_u64] = ACTIONS(2172), - [anon_sym_i64] = ACTIONS(2172), - [anon_sym_u128] = ACTIONS(2172), - [anon_sym_i128] = ACTIONS(2172), - [anon_sym_isize] = ACTIONS(2172), - [anon_sym_usize] = ACTIONS(2172), - [anon_sym_f32] = ACTIONS(2172), - [anon_sym_f64] = ACTIONS(2172), - [anon_sym_bool] = ACTIONS(2172), - [anon_sym_str] = ACTIONS(2172), - [anon_sym_char] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2170), - [anon_sym_BANG] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(2170), - [anon_sym_DOT_DOT] = ACTIONS(2170), - [anon_sym_COLON_COLON] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(2170), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_default] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), - [anon_sym_fn] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_gen] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_impl] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_loop] = ACTIONS(2172), - [anon_sym_match] = ACTIONS(2172), - [anon_sym_mod] = ACTIONS(2172), - [anon_sym_pub] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_struct] = ACTIONS(2172), - [anon_sym_trait] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_union] = ACTIONS(2172), - [anon_sym_unsafe] = ACTIONS(2172), - [anon_sym_use] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [anon_sym_extern] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2172), - [anon_sym_move] = ACTIONS(2172), - [anon_sym_try] = ACTIONS(2172), - [sym_integer_literal] = ACTIONS(2170), - [aux_sym_string_literal_token1] = ACTIONS(2170), - [sym_char_literal] = ACTIONS(2170), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_crate] = ACTIONS(2172), - [sym_metavariable] = ACTIONS(2170), - [sym__raw_string_literal_start] = ACTIONS(2170), - [sym_float_literal] = ACTIONS(2170), - }, - [STATE(584)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(584), - [sym_block_comment] = STATE(584), - [aux_sym_declaration_list_repeat1] = STATE(664), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2180), - [anon_sym_u8] = ACTIONS(2182), - [anon_sym_i8] = ACTIONS(2182), - [anon_sym_u16] = ACTIONS(2182), - [anon_sym_i16] = ACTIONS(2182), - [anon_sym_u32] = ACTIONS(2182), - [anon_sym_i32] = ACTIONS(2182), - [anon_sym_u64] = ACTIONS(2182), - [anon_sym_i64] = ACTIONS(2182), - [anon_sym_u128] = ACTIONS(2182), - [anon_sym_i128] = ACTIONS(2182), - [anon_sym_isize] = ACTIONS(2182), - [anon_sym_usize] = ACTIONS(2182), - [anon_sym_f32] = ACTIONS(2182), - [anon_sym_f64] = ACTIONS(2182), - [anon_sym_bool] = ACTIONS(2182), - [anon_sym_str] = ACTIONS(2182), - [anon_sym_char] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2194), - [anon_sym_gen] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2198), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2202), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2206), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), - }, - [STATE(585)] = { - [sym_line_comment] = STATE(585), - [sym_block_comment] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2226), - [sym_identifier] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_macro_rules_BANG] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_u8] = ACTIONS(2228), - [anon_sym_i8] = ACTIONS(2228), - [anon_sym_u16] = ACTIONS(2228), - [anon_sym_i16] = ACTIONS(2228), - [anon_sym_u32] = ACTIONS(2228), - [anon_sym_i32] = ACTIONS(2228), - [anon_sym_u64] = ACTIONS(2228), - [anon_sym_i64] = ACTIONS(2228), - [anon_sym_u128] = ACTIONS(2228), - [anon_sym_i128] = ACTIONS(2228), - [anon_sym_isize] = ACTIONS(2228), - [anon_sym_usize] = ACTIONS(2228), - [anon_sym_f32] = ACTIONS(2228), - [anon_sym_f64] = ACTIONS(2228), - [anon_sym_bool] = ACTIONS(2228), - [anon_sym_str] = ACTIONS(2228), - [anon_sym_char] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2226), - [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2226), - [anon_sym_DOT_DOT] = ACTIONS(2226), - [anon_sym_COLON_COLON] = ACTIONS(2226), - [anon_sym_POUND] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [anon_sym_fn] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_gen] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_impl] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_loop] = ACTIONS(2228), - [anon_sym_match] = ACTIONS(2228), - [anon_sym_mod] = ACTIONS(2228), - [anon_sym_pub] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_struct] = ACTIONS(2228), - [anon_sym_trait] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_union] = ACTIONS(2228), - [anon_sym_unsafe] = ACTIONS(2228), - [anon_sym_use] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_extern] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_move] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [sym_integer_literal] = ACTIONS(2226), - [aux_sym_string_literal_token1] = ACTIONS(2226), - [sym_char_literal] = ACTIONS(2226), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_crate] = ACTIONS(2228), - [sym_metavariable] = ACTIONS(2226), - [sym__raw_string_literal_start] = ACTIONS(2226), - [sym_float_literal] = ACTIONS(2226), - }, - [STATE(586)] = { - [sym_line_comment] = STATE(586), - [sym_block_comment] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(2230), - [sym_identifier] = ACTIONS(2232), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_macro_rules_BANG] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_u8] = ACTIONS(2232), - [anon_sym_i8] = ACTIONS(2232), - [anon_sym_u16] = ACTIONS(2232), - [anon_sym_i16] = ACTIONS(2232), - [anon_sym_u32] = ACTIONS(2232), - [anon_sym_i32] = ACTIONS(2232), - [anon_sym_u64] = ACTIONS(2232), - [anon_sym_i64] = ACTIONS(2232), - [anon_sym_u128] = ACTIONS(2232), - [anon_sym_i128] = ACTIONS(2232), - [anon_sym_isize] = ACTIONS(2232), - [anon_sym_usize] = ACTIONS(2232), - [anon_sym_f32] = ACTIONS(2232), - [anon_sym_f64] = ACTIONS(2232), - [anon_sym_bool] = ACTIONS(2232), - [anon_sym_str] = ACTIONS(2232), - [anon_sym_char] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_DOT_DOT] = ACTIONS(2230), - [anon_sym_COLON_COLON] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2232), - [anon_sym_async] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_const] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_default] = ACTIONS(2232), - [anon_sym_enum] = ACTIONS(2232), - [anon_sym_fn] = ACTIONS(2232), - [anon_sym_for] = ACTIONS(2232), - [anon_sym_gen] = ACTIONS(2232), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_impl] = ACTIONS(2232), - [anon_sym_let] = ACTIONS(2232), - [anon_sym_loop] = ACTIONS(2232), - [anon_sym_match] = ACTIONS(2232), - [anon_sym_mod] = ACTIONS(2232), - [anon_sym_pub] = ACTIONS(2232), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_static] = ACTIONS(2232), - [anon_sym_struct] = ACTIONS(2232), - [anon_sym_trait] = ACTIONS(2232), - [anon_sym_type] = ACTIONS(2232), - [anon_sym_union] = ACTIONS(2232), - [anon_sym_unsafe] = ACTIONS(2232), - [anon_sym_use] = ACTIONS(2232), - [anon_sym_while] = ACTIONS(2232), - [anon_sym_extern] = ACTIONS(2232), - [anon_sym_yield] = ACTIONS(2232), - [anon_sym_move] = ACTIONS(2232), - [anon_sym_try] = ACTIONS(2232), - [sym_integer_literal] = ACTIONS(2230), - [aux_sym_string_literal_token1] = ACTIONS(2230), - [sym_char_literal] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2232), - [sym_super] = ACTIONS(2232), - [sym_crate] = ACTIONS(2232), - [sym_metavariable] = ACTIONS(2230), - [sym__raw_string_literal_start] = ACTIONS(2230), - [sym_float_literal] = ACTIONS(2230), - }, - [STATE(587)] = { - [sym_line_comment] = STATE(587), - [sym_block_comment] = STATE(587), - [ts_builtin_sym_end] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2236), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_macro_rules_BANG] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2234), - [anon_sym_u8] = ACTIONS(2236), - [anon_sym_i8] = ACTIONS(2236), - [anon_sym_u16] = ACTIONS(2236), - [anon_sym_i16] = ACTIONS(2236), - [anon_sym_u32] = ACTIONS(2236), - [anon_sym_i32] = ACTIONS(2236), - [anon_sym_u64] = ACTIONS(2236), - [anon_sym_i64] = ACTIONS(2236), - [anon_sym_u128] = ACTIONS(2236), - [anon_sym_i128] = ACTIONS(2236), - [anon_sym_isize] = ACTIONS(2236), - [anon_sym_usize] = ACTIONS(2236), - [anon_sym_f32] = ACTIONS(2236), - [anon_sym_f64] = ACTIONS(2236), - [anon_sym_bool] = ACTIONS(2236), - [anon_sym_str] = ACTIONS(2236), - [anon_sym_char] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2234), - [anon_sym_AMP] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_DOT_DOT] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(2234), - [anon_sym_SQUOTE] = ACTIONS(2236), - [anon_sym_async] = ACTIONS(2236), - [anon_sym_break] = ACTIONS(2236), - [anon_sym_const] = ACTIONS(2236), - [anon_sym_continue] = ACTIONS(2236), - [anon_sym_default] = ACTIONS(2236), - [anon_sym_enum] = ACTIONS(2236), - [anon_sym_fn] = ACTIONS(2236), - [anon_sym_for] = ACTIONS(2236), - [anon_sym_gen] = ACTIONS(2236), - [anon_sym_if] = ACTIONS(2236), - [anon_sym_impl] = ACTIONS(2236), - [anon_sym_let] = ACTIONS(2236), - [anon_sym_loop] = ACTIONS(2236), - [anon_sym_match] = ACTIONS(2236), - [anon_sym_mod] = ACTIONS(2236), - [anon_sym_pub] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(2236), - [anon_sym_static] = ACTIONS(2236), - [anon_sym_struct] = ACTIONS(2236), - [anon_sym_trait] = ACTIONS(2236), - [anon_sym_type] = ACTIONS(2236), - [anon_sym_union] = ACTIONS(2236), - [anon_sym_unsafe] = ACTIONS(2236), - [anon_sym_use] = ACTIONS(2236), - [anon_sym_while] = ACTIONS(2236), - [anon_sym_extern] = ACTIONS(2236), - [anon_sym_yield] = ACTIONS(2236), - [anon_sym_move] = ACTIONS(2236), - [anon_sym_try] = ACTIONS(2236), - [sym_integer_literal] = ACTIONS(2234), - [aux_sym_string_literal_token1] = ACTIONS(2234), - [sym_char_literal] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2236), - [anon_sym_false] = ACTIONS(2236), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2236), - [sym_super] = ACTIONS(2236), - [sym_crate] = ACTIONS(2236), - [sym_metavariable] = ACTIONS(2234), - [sym__raw_string_literal_start] = ACTIONS(2234), - [sym_float_literal] = ACTIONS(2234), - }, - [STATE(588)] = { - [sym_line_comment] = STATE(588), - [sym_block_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(2238), - [sym_identifier] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_macro_rules_BANG] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_u8] = ACTIONS(2240), - [anon_sym_i8] = ACTIONS(2240), - [anon_sym_u16] = ACTIONS(2240), - [anon_sym_i16] = ACTIONS(2240), - [anon_sym_u32] = ACTIONS(2240), - [anon_sym_i32] = ACTIONS(2240), - [anon_sym_u64] = ACTIONS(2240), - [anon_sym_i64] = ACTIONS(2240), - [anon_sym_u128] = ACTIONS(2240), - [anon_sym_i128] = ACTIONS(2240), - [anon_sym_isize] = ACTIONS(2240), - [anon_sym_usize] = ACTIONS(2240), - [anon_sym_f32] = ACTIONS(2240), - [anon_sym_f64] = ACTIONS(2240), - [anon_sym_bool] = ACTIONS(2240), - [anon_sym_str] = ACTIONS(2240), - [anon_sym_char] = ACTIONS(2240), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_DOT_DOT] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2240), - [anon_sym_async] = ACTIONS(2240), - [anon_sym_break] = ACTIONS(2240), - [anon_sym_const] = ACTIONS(2240), - [anon_sym_continue] = ACTIONS(2240), - [anon_sym_default] = ACTIONS(2240), - [anon_sym_enum] = ACTIONS(2240), - [anon_sym_fn] = ACTIONS(2240), - [anon_sym_for] = ACTIONS(2240), - [anon_sym_gen] = ACTIONS(2240), - [anon_sym_if] = ACTIONS(2240), - [anon_sym_impl] = ACTIONS(2240), - [anon_sym_let] = ACTIONS(2240), - [anon_sym_loop] = ACTIONS(2240), - [anon_sym_match] = ACTIONS(2240), - [anon_sym_mod] = ACTIONS(2240), - [anon_sym_pub] = ACTIONS(2240), - [anon_sym_return] = ACTIONS(2240), - [anon_sym_static] = ACTIONS(2240), - [anon_sym_struct] = ACTIONS(2240), - [anon_sym_trait] = ACTIONS(2240), - [anon_sym_type] = ACTIONS(2240), - [anon_sym_union] = ACTIONS(2240), - [anon_sym_unsafe] = ACTIONS(2240), - [anon_sym_use] = ACTIONS(2240), - [anon_sym_while] = ACTIONS(2240), - [anon_sym_extern] = ACTIONS(2240), - [anon_sym_yield] = ACTIONS(2240), - [anon_sym_move] = ACTIONS(2240), - [anon_sym_try] = ACTIONS(2240), - [sym_integer_literal] = ACTIONS(2238), - [aux_sym_string_literal_token1] = ACTIONS(2238), - [sym_char_literal] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2240), - [anon_sym_false] = ACTIONS(2240), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2240), - [sym_super] = ACTIONS(2240), - [sym_crate] = ACTIONS(2240), - [sym_metavariable] = ACTIONS(2238), - [sym__raw_string_literal_start] = ACTIONS(2238), - [sym_float_literal] = ACTIONS(2238), - }, - [STATE(589)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(589), - [sym_block_comment] = STATE(589), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(590)] = { - [sym_line_comment] = STATE(590), - [sym_block_comment] = STATE(590), [ts_builtin_sym_end] = ACTIONS(2244), [sym_identifier] = ACTIONS(2246), [anon_sym_SEMI] = ACTIONS(2244), @@ -79256,9 +80172,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2244), [sym_float_literal] = ACTIONS(2244), }, - [STATE(591)] = { - [sym_line_comment] = STATE(591), - [sym_block_comment] = STATE(591), + [STATE(580)] = { + [sym_line_comment] = STATE(580), + [sym_block_comment] = STATE(580), [ts_builtin_sym_end] = ACTIONS(2248), [sym_identifier] = ACTIONS(2250), [anon_sym_SEMI] = ACTIONS(2248), @@ -79337,9 +80253,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2248), [sym_float_literal] = ACTIONS(2248), }, - [STATE(592)] = { - [sym_line_comment] = STATE(592), - [sym_block_comment] = STATE(592), + [STATE(581)] = { + [sym_line_comment] = STATE(581), + [sym_block_comment] = STATE(581), [ts_builtin_sym_end] = ACTIONS(2252), [sym_identifier] = ACTIONS(2254), [anon_sym_SEMI] = ACTIONS(2252), @@ -79418,9 +80334,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2252), [sym_float_literal] = ACTIONS(2252), }, - [STATE(593)] = { - [sym_line_comment] = STATE(593), - [sym_block_comment] = STATE(593), + [STATE(582)] = { + [sym_line_comment] = STATE(582), + [sym_block_comment] = STATE(582), [ts_builtin_sym_end] = ACTIONS(2256), [sym_identifier] = ACTIONS(2258), [anon_sym_SEMI] = ACTIONS(2256), @@ -79499,9 +80415,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2256), [sym_float_literal] = ACTIONS(2256), }, - [STATE(594)] = { - [sym_line_comment] = STATE(594), - [sym_block_comment] = STATE(594), + [STATE(583)] = { + [sym_line_comment] = STATE(583), + [sym_block_comment] = STATE(583), [ts_builtin_sym_end] = ACTIONS(2260), [sym_identifier] = ACTIONS(2262), [anon_sym_SEMI] = ACTIONS(2260), @@ -79580,9 +80496,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2260), [sym_float_literal] = ACTIONS(2260), }, - [STATE(595)] = { - [sym_line_comment] = STATE(595), - [sym_block_comment] = STATE(595), + [STATE(584)] = { + [sym_line_comment] = STATE(584), + [sym_block_comment] = STATE(584), [ts_builtin_sym_end] = ACTIONS(2264), [sym_identifier] = ACTIONS(2266), [anon_sym_SEMI] = ACTIONS(2264), @@ -79661,9 +80577,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2264), [sym_float_literal] = ACTIONS(2264), }, - [STATE(596)] = { - [sym_line_comment] = STATE(596), - [sym_block_comment] = STATE(596), + [STATE(585)] = { + [sym_line_comment] = STATE(585), + [sym_block_comment] = STATE(585), [ts_builtin_sym_end] = ACTIONS(2268), [sym_identifier] = ACTIONS(2270), [anon_sym_SEMI] = ACTIONS(2268), @@ -79742,9 +80658,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2268), [sym_float_literal] = ACTIONS(2268), }, - [STATE(597)] = { - [sym_line_comment] = STATE(597), - [sym_block_comment] = STATE(597), + [STATE(586)] = { + [sym_line_comment] = STATE(586), + [sym_block_comment] = STATE(586), [ts_builtin_sym_end] = ACTIONS(2272), [sym_identifier] = ACTIONS(2274), [anon_sym_SEMI] = ACTIONS(2272), @@ -79823,9 +80739,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2272), [sym_float_literal] = ACTIONS(2272), }, - [STATE(598)] = { - [sym_line_comment] = STATE(598), - [sym_block_comment] = STATE(598), + [STATE(587)] = { + [sym_line_comment] = STATE(587), + [sym_block_comment] = STATE(587), [ts_builtin_sym_end] = ACTIONS(2276), [sym_identifier] = ACTIONS(2278), [anon_sym_SEMI] = ACTIONS(2276), @@ -79904,9 +80820,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2276), [sym_float_literal] = ACTIONS(2276), }, - [STATE(599)] = { - [sym_line_comment] = STATE(599), - [sym_block_comment] = STATE(599), + [STATE(588)] = { + [sym_line_comment] = STATE(588), + [sym_block_comment] = STATE(588), [ts_builtin_sym_end] = ACTIONS(2280), [sym_identifier] = ACTIONS(2282), [anon_sym_SEMI] = ACTIONS(2280), @@ -79985,9 +80901,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2280), [sym_float_literal] = ACTIONS(2280), }, - [STATE(600)] = { - [sym_line_comment] = STATE(600), - [sym_block_comment] = STATE(600), + [STATE(589)] = { + [sym_line_comment] = STATE(589), + [sym_block_comment] = STATE(589), [ts_builtin_sym_end] = ACTIONS(2284), [sym_identifier] = ACTIONS(2286), [anon_sym_SEMI] = ACTIONS(2284), @@ -80066,9 +80982,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2284), [sym_float_literal] = ACTIONS(2284), }, - [STATE(601)] = { - [sym_line_comment] = STATE(601), - [sym_block_comment] = STATE(601), + [STATE(590)] = { + [sym_line_comment] = STATE(590), + [sym_block_comment] = STATE(590), [ts_builtin_sym_end] = ACTIONS(2288), [sym_identifier] = ACTIONS(2290), [anon_sym_SEMI] = ACTIONS(2288), @@ -80147,9 +81063,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2288), [sym_float_literal] = ACTIONS(2288), }, - [STATE(602)] = { - [sym_line_comment] = STATE(602), - [sym_block_comment] = STATE(602), + [STATE(591)] = { + [sym_line_comment] = STATE(591), + [sym_block_comment] = STATE(591), [ts_builtin_sym_end] = ACTIONS(2292), [sym_identifier] = ACTIONS(2294), [anon_sym_SEMI] = ACTIONS(2292), @@ -80228,9 +81144,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2292), [sym_float_literal] = ACTIONS(2292), }, - [STATE(603)] = { - [sym_line_comment] = STATE(603), - [sym_block_comment] = STATE(603), + [STATE(592)] = { + [sym_line_comment] = STATE(592), + [sym_block_comment] = STATE(592), [ts_builtin_sym_end] = ACTIONS(2296), [sym_identifier] = ACTIONS(2298), [anon_sym_SEMI] = ACTIONS(2296), @@ -80309,9 +81225,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2296), [sym_float_literal] = ACTIONS(2296), }, - [STATE(604)] = { - [sym_line_comment] = STATE(604), - [sym_block_comment] = STATE(604), + [STATE(593)] = { + [sym_line_comment] = STATE(593), + [sym_block_comment] = STATE(593), [ts_builtin_sym_end] = ACTIONS(2300), [sym_identifier] = ACTIONS(2302), [anon_sym_SEMI] = ACTIONS(2300), @@ -80390,9 +81306,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2300), [sym_float_literal] = ACTIONS(2300), }, - [STATE(605)] = { - [sym_line_comment] = STATE(605), - [sym_block_comment] = STATE(605), + [STATE(594)] = { + [sym_line_comment] = STATE(594), + [sym_block_comment] = STATE(594), [ts_builtin_sym_end] = ACTIONS(2304), [sym_identifier] = ACTIONS(2306), [anon_sym_SEMI] = ACTIONS(2304), @@ -80471,9 +81387,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2304), [sym_float_literal] = ACTIONS(2304), }, - [STATE(606)] = { - [sym_line_comment] = STATE(606), - [sym_block_comment] = STATE(606), + [STATE(595)] = { + [sym_line_comment] = STATE(595), + [sym_block_comment] = STATE(595), [ts_builtin_sym_end] = ACTIONS(2308), [sym_identifier] = ACTIONS(2310), [anon_sym_SEMI] = ACTIONS(2308), @@ -80552,9 +81468,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2308), [sym_float_literal] = ACTIONS(2308), }, - [STATE(607)] = { - [sym_line_comment] = STATE(607), - [sym_block_comment] = STATE(607), + [STATE(596)] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), [ts_builtin_sym_end] = ACTIONS(2312), [sym_identifier] = ACTIONS(2314), [anon_sym_SEMI] = ACTIONS(2312), @@ -80633,9 +81549,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2312), [sym_float_literal] = ACTIONS(2312), }, - [STATE(608)] = { - [sym_line_comment] = STATE(608), - [sym_block_comment] = STATE(608), + [STATE(597)] = { + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), [ts_builtin_sym_end] = ACTIONS(2316), [sym_identifier] = ACTIONS(2318), [anon_sym_SEMI] = ACTIONS(2316), @@ -80714,9 +81630,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2316), [sym_float_literal] = ACTIONS(2316), }, - [STATE(609)] = { - [sym_line_comment] = STATE(609), - [sym_block_comment] = STATE(609), + [STATE(598)] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), [ts_builtin_sym_end] = ACTIONS(2320), [sym_identifier] = ACTIONS(2322), [anon_sym_SEMI] = ACTIONS(2320), @@ -80795,9 +81711,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2320), [sym_float_literal] = ACTIONS(2320), }, - [STATE(610)] = { - [sym_line_comment] = STATE(610), - [sym_block_comment] = STATE(610), + [STATE(599)] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), [ts_builtin_sym_end] = ACTIONS(2324), [sym_identifier] = ACTIONS(2326), [anon_sym_SEMI] = ACTIONS(2324), @@ -80876,9 +81792,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2324), [sym_float_literal] = ACTIONS(2324), }, - [STATE(611)] = { - [sym_line_comment] = STATE(611), - [sym_block_comment] = STATE(611), + [STATE(600)] = { + [sym_line_comment] = STATE(600), + [sym_block_comment] = STATE(600), [ts_builtin_sym_end] = ACTIONS(2328), [sym_identifier] = ACTIONS(2330), [anon_sym_SEMI] = ACTIONS(2328), @@ -80957,9 +81873,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2328), [sym_float_literal] = ACTIONS(2328), }, - [STATE(612)] = { - [sym_line_comment] = STATE(612), - [sym_block_comment] = STATE(612), + [STATE(601)] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), [ts_builtin_sym_end] = ACTIONS(2332), [sym_identifier] = ACTIONS(2334), [anon_sym_SEMI] = ACTIONS(2332), @@ -81038,9 +81954,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2332), [sym_float_literal] = ACTIONS(2332), }, - [STATE(613)] = { - [sym_line_comment] = STATE(613), - [sym_block_comment] = STATE(613), + [STATE(602)] = { + [sym_line_comment] = STATE(602), + [sym_block_comment] = STATE(602), [ts_builtin_sym_end] = ACTIONS(2336), [sym_identifier] = ACTIONS(2338), [anon_sym_SEMI] = ACTIONS(2336), @@ -81119,9 +82035,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2336), [sym_float_literal] = ACTIONS(2336), }, - [STATE(614)] = { - [sym_line_comment] = STATE(614), - [sym_block_comment] = STATE(614), + [STATE(603)] = { + [sym_line_comment] = STATE(603), + [sym_block_comment] = STATE(603), [ts_builtin_sym_end] = ACTIONS(2340), [sym_identifier] = ACTIONS(2342), [anon_sym_SEMI] = ACTIONS(2340), @@ -81200,9 +82116,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2340), [sym_float_literal] = ACTIONS(2340), }, - [STATE(615)] = { - [sym_line_comment] = STATE(615), - [sym_block_comment] = STATE(615), + [STATE(604)] = { + [sym_line_comment] = STATE(604), + [sym_block_comment] = STATE(604), [ts_builtin_sym_end] = ACTIONS(2344), [sym_identifier] = ACTIONS(2346), [anon_sym_SEMI] = ACTIONS(2344), @@ -81281,9 +82197,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2344), [sym_float_literal] = ACTIONS(2344), }, - [STATE(616)] = { - [sym_line_comment] = STATE(616), - [sym_block_comment] = STATE(616), + [STATE(605)] = { + [sym_line_comment] = STATE(605), + [sym_block_comment] = STATE(605), [ts_builtin_sym_end] = ACTIONS(2348), [sym_identifier] = ACTIONS(2350), [anon_sym_SEMI] = ACTIONS(2348), @@ -81362,9 +82278,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2348), [sym_float_literal] = ACTIONS(2348), }, - [STATE(617)] = { - [sym_line_comment] = STATE(617), - [sym_block_comment] = STATE(617), + [STATE(606)] = { + [sym_line_comment] = STATE(606), + [sym_block_comment] = STATE(606), [ts_builtin_sym_end] = ACTIONS(2352), [sym_identifier] = ACTIONS(2354), [anon_sym_SEMI] = ACTIONS(2352), @@ -81443,9 +82359,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2352), [sym_float_literal] = ACTIONS(2352), }, - [STATE(618)] = { - [sym_line_comment] = STATE(618), - [sym_block_comment] = STATE(618), + [STATE(607)] = { + [sym_line_comment] = STATE(607), + [sym_block_comment] = STATE(607), [ts_builtin_sym_end] = ACTIONS(2356), [sym_identifier] = ACTIONS(2358), [anon_sym_SEMI] = ACTIONS(2356), @@ -81524,9 +82440,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2356), [sym_float_literal] = ACTIONS(2356), }, - [STATE(619)] = { - [sym_line_comment] = STATE(619), - [sym_block_comment] = STATE(619), + [STATE(608)] = { + [sym_line_comment] = STATE(608), + [sym_block_comment] = STATE(608), [ts_builtin_sym_end] = ACTIONS(2360), [sym_identifier] = ACTIONS(2362), [anon_sym_SEMI] = ACTIONS(2360), @@ -81605,9 +82521,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2360), [sym_float_literal] = ACTIONS(2360), }, - [STATE(620)] = { - [sym_line_comment] = STATE(620), - [sym_block_comment] = STATE(620), + [STATE(609)] = { + [sym_line_comment] = STATE(609), + [sym_block_comment] = STATE(609), [ts_builtin_sym_end] = ACTIONS(2364), [sym_identifier] = ACTIONS(2366), [anon_sym_SEMI] = ACTIONS(2364), @@ -81686,9 +82602,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2364), [sym_float_literal] = ACTIONS(2364), }, - [STATE(621)] = { - [sym_line_comment] = STATE(621), - [sym_block_comment] = STATE(621), + [STATE(610)] = { + [sym_line_comment] = STATE(610), + [sym_block_comment] = STATE(610), [ts_builtin_sym_end] = ACTIONS(2368), [sym_identifier] = ACTIONS(2370), [anon_sym_SEMI] = ACTIONS(2368), @@ -81767,9 +82683,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2368), [sym_float_literal] = ACTIONS(2368), }, - [STATE(622)] = { - [sym_line_comment] = STATE(622), - [sym_block_comment] = STATE(622), + [STATE(611)] = { + [sym_line_comment] = STATE(611), + [sym_block_comment] = STATE(611), [ts_builtin_sym_end] = ACTIONS(2372), [sym_identifier] = ACTIONS(2374), [anon_sym_SEMI] = ACTIONS(2372), @@ -81848,9 +82764,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2372), [sym_float_literal] = ACTIONS(2372), }, - [STATE(623)] = { - [sym_line_comment] = STATE(623), - [sym_block_comment] = STATE(623), + [STATE(612)] = { + [sym_line_comment] = STATE(612), + [sym_block_comment] = STATE(612), [ts_builtin_sym_end] = ACTIONS(2376), [sym_identifier] = ACTIONS(2378), [anon_sym_SEMI] = ACTIONS(2376), @@ -81929,9 +82845,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2376), [sym_float_literal] = ACTIONS(2376), }, - [STATE(624)] = { - [sym_line_comment] = STATE(624), - [sym_block_comment] = STATE(624), + [STATE(613)] = { + [sym_line_comment] = STATE(613), + [sym_block_comment] = STATE(613), [ts_builtin_sym_end] = ACTIONS(2380), [sym_identifier] = ACTIONS(2382), [anon_sym_SEMI] = ACTIONS(2380), @@ -82010,9 +82926,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2380), [sym_float_literal] = ACTIONS(2380), }, - [STATE(625)] = { - [sym_line_comment] = STATE(625), - [sym_block_comment] = STATE(625), + [STATE(614)] = { + [sym_line_comment] = STATE(614), + [sym_block_comment] = STATE(614), [ts_builtin_sym_end] = ACTIONS(2384), [sym_identifier] = ACTIONS(2386), [anon_sym_SEMI] = ACTIONS(2384), @@ -82091,9 +83007,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2384), [sym_float_literal] = ACTIONS(2384), }, - [STATE(626)] = { - [sym_line_comment] = STATE(626), - [sym_block_comment] = STATE(626), + [STATE(615)] = { + [sym_line_comment] = STATE(615), + [sym_block_comment] = STATE(615), [ts_builtin_sym_end] = ACTIONS(2388), [sym_identifier] = ACTIONS(2390), [anon_sym_SEMI] = ACTIONS(2388), @@ -82172,90 +83088,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2388), [sym_float_literal] = ACTIONS(2388), }, - [STATE(627)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_pattern] = STATE(3705), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(627), - [sym_block_comment] = STATE(627), - [aux_sym_match_arm_repeat1] = STATE(1064), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(628)] = { - [sym_line_comment] = STATE(628), - [sym_block_comment] = STATE(628), + [STATE(616)] = { + [sym_line_comment] = STATE(616), + [sym_block_comment] = STATE(616), [ts_builtin_sym_end] = ACTIONS(2392), [sym_identifier] = ACTIONS(2394), [anon_sym_SEMI] = ACTIONS(2392), @@ -82334,9 +83169,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2392), [sym_float_literal] = ACTIONS(2392), }, - [STATE(629)] = { - [sym_line_comment] = STATE(629), - [sym_block_comment] = STATE(629), + [STATE(617)] = { + [sym_line_comment] = STATE(617), + [sym_block_comment] = STATE(617), [ts_builtin_sym_end] = ACTIONS(2396), [sym_identifier] = ACTIONS(2398), [anon_sym_SEMI] = ACTIONS(2396), @@ -82415,9 +83250,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2396), [sym_float_literal] = ACTIONS(2396), }, - [STATE(630)] = { - [sym_line_comment] = STATE(630), - [sym_block_comment] = STATE(630), + [STATE(618)] = { + [sym_line_comment] = STATE(618), + [sym_block_comment] = STATE(618), [ts_builtin_sym_end] = ACTIONS(2400), [sym_identifier] = ACTIONS(2402), [anon_sym_SEMI] = ACTIONS(2400), @@ -82496,90 +83331,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2400), [sym_float_literal] = ACTIONS(2400), }, - [STATE(631)] = { - [sym_line_comment] = STATE(631), - [sym_block_comment] = STATE(631), - [ts_builtin_sym_end] = ACTIONS(1427), - [sym_identifier] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_macro_rules_BANG] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_u8] = ACTIONS(1429), - [anon_sym_i8] = ACTIONS(1429), - [anon_sym_u16] = ACTIONS(1429), - [anon_sym_i16] = ACTIONS(1429), - [anon_sym_u32] = ACTIONS(1429), - [anon_sym_i32] = ACTIONS(1429), - [anon_sym_u64] = ACTIONS(1429), - [anon_sym_i64] = ACTIONS(1429), - [anon_sym_u128] = ACTIONS(1429), - [anon_sym_i128] = ACTIONS(1429), - [anon_sym_isize] = ACTIONS(1429), - [anon_sym_usize] = ACTIONS(1429), - [anon_sym_f32] = ACTIONS(1429), - [anon_sym_f64] = ACTIONS(1429), - [anon_sym_bool] = ACTIONS(1429), - [anon_sym_str] = ACTIONS(1429), - [anon_sym_char] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_POUND] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_async] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_gen] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_impl] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(1429), - [anon_sym_loop] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1429), - [anon_sym_pub] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_trait] = ACTIONS(1429), - [anon_sym_type] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_unsafe] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym_yield] = ACTIONS(1429), - [anon_sym_move] = ACTIONS(1429), - [anon_sym_try] = ACTIONS(1429), - [sym_integer_literal] = ACTIONS(1427), - [aux_sym_string_literal_token1] = ACTIONS(1427), - [sym_char_literal] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1429), - [sym_super] = ACTIONS(1429), - [sym_crate] = ACTIONS(1429), - [sym_metavariable] = ACTIONS(1427), - [sym__raw_string_literal_start] = ACTIONS(1427), - [sym_float_literal] = ACTIONS(1427), - }, - [STATE(632)] = { - [sym_line_comment] = STATE(632), - [sym_block_comment] = STATE(632), + [STATE(619)] = { + [sym_line_comment] = STATE(619), + [sym_block_comment] = STATE(619), [ts_builtin_sym_end] = ACTIONS(2404), [sym_identifier] = ACTIONS(2406), [anon_sym_SEMI] = ACTIONS(2404), @@ -82658,9 +83412,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2404), [sym_float_literal] = ACTIONS(2404), }, - [STATE(633)] = { - [sym_line_comment] = STATE(633), - [sym_block_comment] = STATE(633), + [STATE(620)] = { + [sym_line_comment] = STATE(620), + [sym_block_comment] = STATE(620), [ts_builtin_sym_end] = ACTIONS(2408), [sym_identifier] = ACTIONS(2410), [anon_sym_SEMI] = ACTIONS(2408), @@ -82739,9 +83493,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2408), [sym_float_literal] = ACTIONS(2408), }, - [STATE(634)] = { - [sym_line_comment] = STATE(634), - [sym_block_comment] = STATE(634), + [STATE(621)] = { + [sym_line_comment] = STATE(621), + [sym_block_comment] = STATE(621), [ts_builtin_sym_end] = ACTIONS(2412), [sym_identifier] = ACTIONS(2414), [anon_sym_SEMI] = ACTIONS(2412), @@ -82820,9 +83574,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2412), [sym_float_literal] = ACTIONS(2412), }, - [STATE(635)] = { - [sym_line_comment] = STATE(635), - [sym_block_comment] = STATE(635), + [STATE(622)] = { + [sym_line_comment] = STATE(622), + [sym_block_comment] = STATE(622), [ts_builtin_sym_end] = ACTIONS(2416), [sym_identifier] = ACTIONS(2418), [anon_sym_SEMI] = ACTIONS(2416), @@ -82901,9 +83655,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2416), [sym_float_literal] = ACTIONS(2416), }, - [STATE(636)] = { - [sym_line_comment] = STATE(636), - [sym_block_comment] = STATE(636), + [STATE(623)] = { + [sym_line_comment] = STATE(623), + [sym_block_comment] = STATE(623), [ts_builtin_sym_end] = ACTIONS(2420), [sym_identifier] = ACTIONS(2422), [anon_sym_SEMI] = ACTIONS(2420), @@ -82982,9 +83736,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2420), [sym_float_literal] = ACTIONS(2420), }, - [STATE(637)] = { - [sym_line_comment] = STATE(637), - [sym_block_comment] = STATE(637), + [STATE(624)] = { + [sym_line_comment] = STATE(624), + [sym_block_comment] = STATE(624), [ts_builtin_sym_end] = ACTIONS(2424), [sym_identifier] = ACTIONS(2426), [anon_sym_SEMI] = ACTIONS(2424), @@ -83063,9 +83817,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2424), [sym_float_literal] = ACTIONS(2424), }, - [STATE(638)] = { - [sym_line_comment] = STATE(638), - [sym_block_comment] = STATE(638), + [STATE(625)] = { + [sym_line_comment] = STATE(625), + [sym_block_comment] = STATE(625), [ts_builtin_sym_end] = ACTIONS(2428), [sym_identifier] = ACTIONS(2430), [anon_sym_SEMI] = ACTIONS(2428), @@ -83144,9 +83898,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2428), [sym_float_literal] = ACTIONS(2428), }, - [STATE(639)] = { - [sym_line_comment] = STATE(639), - [sym_block_comment] = STATE(639), + [STATE(626)] = { + [sym_line_comment] = STATE(626), + [sym_block_comment] = STATE(626), [ts_builtin_sym_end] = ACTIONS(2432), [sym_identifier] = ACTIONS(2434), [anon_sym_SEMI] = ACTIONS(2432), @@ -83225,9 +83979,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2432), [sym_float_literal] = ACTIONS(2432), }, - [STATE(640)] = { - [sym_line_comment] = STATE(640), - [sym_block_comment] = STATE(640), + [STATE(627)] = { + [sym_line_comment] = STATE(627), + [sym_block_comment] = STATE(627), [ts_builtin_sym_end] = ACTIONS(2436), [sym_identifier] = ACTIONS(2438), [anon_sym_SEMI] = ACTIONS(2436), @@ -83306,9 +84060,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2436), [sym_float_literal] = ACTIONS(2436), }, - [STATE(641)] = { - [sym_line_comment] = STATE(641), - [sym_block_comment] = STATE(641), + [STATE(628)] = { + [sym_line_comment] = STATE(628), + [sym_block_comment] = STATE(628), [ts_builtin_sym_end] = ACTIONS(2440), [sym_identifier] = ACTIONS(2442), [anon_sym_SEMI] = ACTIONS(2440), @@ -83387,9 +84141,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2440), [sym_float_literal] = ACTIONS(2440), }, - [STATE(642)] = { - [sym_line_comment] = STATE(642), - [sym_block_comment] = STATE(642), + [STATE(629)] = { + [sym_line_comment] = STATE(629), + [sym_block_comment] = STATE(629), [ts_builtin_sym_end] = ACTIONS(2444), [sym_identifier] = ACTIONS(2446), [anon_sym_SEMI] = ACTIONS(2444), @@ -83468,9 +84222,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2444), [sym_float_literal] = ACTIONS(2444), }, - [STATE(643)] = { - [sym_line_comment] = STATE(643), - [sym_block_comment] = STATE(643), + [STATE(630)] = { + [sym_line_comment] = STATE(630), + [sym_block_comment] = STATE(630), [ts_builtin_sym_end] = ACTIONS(2448), [sym_identifier] = ACTIONS(2450), [anon_sym_SEMI] = ACTIONS(2448), @@ -83549,90 +84303,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2448), [sym_float_literal] = ACTIONS(2448), }, - [STATE(644)] = { - [sym_line_comment] = STATE(644), - [sym_block_comment] = STATE(644), - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_macro_rules_BANG] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_u8] = ACTIONS(1437), - [anon_sym_i8] = ACTIONS(1437), - [anon_sym_u16] = ACTIONS(1437), - [anon_sym_i16] = ACTIONS(1437), - [anon_sym_u32] = ACTIONS(1437), - [anon_sym_i32] = ACTIONS(1437), - [anon_sym_u64] = ACTIONS(1437), - [anon_sym_i64] = ACTIONS(1437), - [anon_sym_u128] = ACTIONS(1437), - [anon_sym_i128] = ACTIONS(1437), - [anon_sym_isize] = ACTIONS(1437), - [anon_sym_usize] = ACTIONS(1437), - [anon_sym_f32] = ACTIONS(1437), - [anon_sym_f64] = ACTIONS(1437), - [anon_sym_bool] = ACTIONS(1437), - [anon_sym_str] = ACTIONS(1437), - [anon_sym_char] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(1435), - [anon_sym_COLON_COLON] = ACTIONS(1435), - [anon_sym_POUND] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_async] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_fn] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_gen] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_impl] = ACTIONS(1437), - [anon_sym_let] = ACTIONS(1437), - [anon_sym_loop] = ACTIONS(1437), - [anon_sym_match] = ACTIONS(1437), - [anon_sym_mod] = ACTIONS(1437), - [anon_sym_pub] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1437), - [anon_sym_trait] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1437), - [anon_sym_unsafe] = ACTIONS(1437), - [anon_sym_use] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_extern] = ACTIONS(1437), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_move] = ACTIONS(1437), - [anon_sym_try] = ACTIONS(1437), - [sym_integer_literal] = ACTIONS(1435), - [aux_sym_string_literal_token1] = ACTIONS(1435), - [sym_char_literal] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1437), - [anon_sym_false] = ACTIONS(1437), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1437), - [sym_super] = ACTIONS(1437), - [sym_crate] = ACTIONS(1437), - [sym_metavariable] = ACTIONS(1435), - [sym__raw_string_literal_start] = ACTIONS(1435), - [sym_float_literal] = ACTIONS(1435), - }, - [STATE(645)] = { - [sym_line_comment] = STATE(645), - [sym_block_comment] = STATE(645), + [STATE(631)] = { + [sym_line_comment] = STATE(631), + [sym_block_comment] = STATE(631), [ts_builtin_sym_end] = ACTIONS(2452), [sym_identifier] = ACTIONS(2454), [anon_sym_SEMI] = ACTIONS(2452), @@ -83711,9 +84384,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2452), [sym_float_literal] = ACTIONS(2452), }, - [STATE(646)] = { - [sym_line_comment] = STATE(646), - [sym_block_comment] = STATE(646), + [STATE(632)] = { + [sym_line_comment] = STATE(632), + [sym_block_comment] = STATE(632), [ts_builtin_sym_end] = ACTIONS(2456), [sym_identifier] = ACTIONS(2458), [anon_sym_SEMI] = ACTIONS(2456), @@ -83792,90 +84465,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2456), [sym_float_literal] = ACTIONS(2456), }, - [STATE(647)] = { - [sym_line_comment] = STATE(647), - [sym_block_comment] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(1431), - [sym_identifier] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_macro_rules_BANG] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1433), - [anon_sym_i8] = ACTIONS(1433), - [anon_sym_u16] = ACTIONS(1433), - [anon_sym_i16] = ACTIONS(1433), - [anon_sym_u32] = ACTIONS(1433), - [anon_sym_i32] = ACTIONS(1433), - [anon_sym_u64] = ACTIONS(1433), - [anon_sym_i64] = ACTIONS(1433), - [anon_sym_u128] = ACTIONS(1433), - [anon_sym_i128] = ACTIONS(1433), - [anon_sym_isize] = ACTIONS(1433), - [anon_sym_usize] = ACTIONS(1433), - [anon_sym_f32] = ACTIONS(1433), - [anon_sym_f64] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_str] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1431), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_POUND] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_async] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_gen] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_impl] = ACTIONS(1433), - [anon_sym_let] = ACTIONS(1433), - [anon_sym_loop] = ACTIONS(1433), - [anon_sym_match] = ACTIONS(1433), - [anon_sym_mod] = ACTIONS(1433), - [anon_sym_pub] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_trait] = ACTIONS(1433), - [anon_sym_type] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_unsafe] = ACTIONS(1433), - [anon_sym_use] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym_yield] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1433), - [anon_sym_try] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [aux_sym_string_literal_token1] = ACTIONS(1431), - [sym_char_literal] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1433), - [sym_super] = ACTIONS(1433), - [sym_crate] = ACTIONS(1433), - [sym_metavariable] = ACTIONS(1431), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1431), - }, - [STATE(648)] = { - [sym_line_comment] = STATE(648), - [sym_block_comment] = STATE(648), + [STATE(633)] = { + [sym_line_comment] = STATE(633), + [sym_block_comment] = STATE(633), [ts_builtin_sym_end] = ACTIONS(2460), [sym_identifier] = ACTIONS(2462), [anon_sym_SEMI] = ACTIONS(2460), @@ -83954,171 +84546,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2460), [sym_float_literal] = ACTIONS(2460), }, - [STATE(649)] = { - [sym_line_comment] = STATE(649), - [sym_block_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(1419), - [sym_identifier] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1419), - [anon_sym_macro_rules_BANG] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_u8] = ACTIONS(1421), - [anon_sym_i8] = ACTIONS(1421), - [anon_sym_u16] = ACTIONS(1421), - [anon_sym_i16] = ACTIONS(1421), - [anon_sym_u32] = ACTIONS(1421), - [anon_sym_i32] = ACTIONS(1421), - [anon_sym_u64] = ACTIONS(1421), - [anon_sym_i64] = ACTIONS(1421), - [anon_sym_u128] = ACTIONS(1421), - [anon_sym_i128] = ACTIONS(1421), - [anon_sym_isize] = ACTIONS(1421), - [anon_sym_usize] = ACTIONS(1421), - [anon_sym_f32] = ACTIONS(1421), - [anon_sym_f64] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_str] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_enum] = ACTIONS(1421), - [anon_sym_fn] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_gen] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_impl] = ACTIONS(1421), - [anon_sym_let] = ACTIONS(1421), - [anon_sym_loop] = ACTIONS(1421), - [anon_sym_match] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_pub] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1421), - [anon_sym_trait] = ACTIONS(1421), - [anon_sym_type] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_unsafe] = ACTIONS(1421), - [anon_sym_use] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_extern] = ACTIONS(1421), - [anon_sym_yield] = ACTIONS(1421), - [anon_sym_move] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1421), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1419), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1421), - [sym_super] = ACTIONS(1421), - [sym_crate] = ACTIONS(1421), - [sym_metavariable] = ACTIONS(1419), - [sym__raw_string_literal_start] = ACTIONS(1419), - [sym_float_literal] = ACTIONS(1419), - }, - [STATE(650)] = { - [sym_line_comment] = STATE(650), - [sym_block_comment] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1423), - [sym_identifier] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_macro_rules_BANG] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_u8] = ACTIONS(1425), - [anon_sym_i8] = ACTIONS(1425), - [anon_sym_u16] = ACTIONS(1425), - [anon_sym_i16] = ACTIONS(1425), - [anon_sym_u32] = ACTIONS(1425), - [anon_sym_i32] = ACTIONS(1425), - [anon_sym_u64] = ACTIONS(1425), - [anon_sym_i64] = ACTIONS(1425), - [anon_sym_u128] = ACTIONS(1425), - [anon_sym_i128] = ACTIONS(1425), - [anon_sym_isize] = ACTIONS(1425), - [anon_sym_usize] = ACTIONS(1425), - [anon_sym_f32] = ACTIONS(1425), - [anon_sym_f64] = ACTIONS(1425), - [anon_sym_bool] = ACTIONS(1425), - [anon_sym_str] = ACTIONS(1425), - [anon_sym_char] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1423), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_POUND] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_async] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - [anon_sym_fn] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_gen] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_impl] = ACTIONS(1425), - [anon_sym_let] = ACTIONS(1425), - [anon_sym_loop] = ACTIONS(1425), - [anon_sym_match] = ACTIONS(1425), - [anon_sym_mod] = ACTIONS(1425), - [anon_sym_pub] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_struct] = ACTIONS(1425), - [anon_sym_trait] = ACTIONS(1425), - [anon_sym_type] = ACTIONS(1425), - [anon_sym_union] = ACTIONS(1425), - [anon_sym_unsafe] = ACTIONS(1425), - [anon_sym_use] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_extern] = ACTIONS(1425), - [anon_sym_yield] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1425), - [anon_sym_try] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1423), - [aux_sym_string_literal_token1] = ACTIONS(1423), - [sym_char_literal] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1425), - [sym_super] = ACTIONS(1425), - [sym_crate] = ACTIONS(1425), - [sym_metavariable] = ACTIONS(1423), - [sym__raw_string_literal_start] = ACTIONS(1423), - [sym_float_literal] = ACTIONS(1423), - }, - [STATE(651)] = { - [sym_line_comment] = STATE(651), - [sym_block_comment] = STATE(651), + [STATE(634)] = { + [sym_line_comment] = STATE(634), + [sym_block_comment] = STATE(634), [ts_builtin_sym_end] = ACTIONS(2464), [sym_identifier] = ACTIONS(2466), [anon_sym_SEMI] = ACTIONS(2464), @@ -84197,9 +84627,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2464), [sym_float_literal] = ACTIONS(2464), }, - [STATE(652)] = { - [sym_line_comment] = STATE(652), - [sym_block_comment] = STATE(652), + [STATE(635)] = { + [sym_line_comment] = STATE(635), + [sym_block_comment] = STATE(635), [ts_builtin_sym_end] = ACTIONS(2468), [sym_identifier] = ACTIONS(2470), [anon_sym_SEMI] = ACTIONS(2468), @@ -84278,9 +84708,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2468), [sym_float_literal] = ACTIONS(2468), }, - [STATE(653)] = { - [sym_line_comment] = STATE(653), - [sym_block_comment] = STATE(653), + [STATE(636)] = { + [sym_line_comment] = STATE(636), + [sym_block_comment] = STATE(636), [ts_builtin_sym_end] = ACTIONS(2472), [sym_identifier] = ACTIONS(2474), [anon_sym_SEMI] = ACTIONS(2472), @@ -84359,9 +84789,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2472), [sym_float_literal] = ACTIONS(2472), }, - [STATE(654)] = { - [sym_line_comment] = STATE(654), - [sym_block_comment] = STATE(654), + [STATE(637)] = { + [sym_line_comment] = STATE(637), + [sym_block_comment] = STATE(637), [ts_builtin_sym_end] = ACTIONS(2476), [sym_identifier] = ACTIONS(2478), [anon_sym_SEMI] = ACTIONS(2476), @@ -84440,9 +84870,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2476), [sym_float_literal] = ACTIONS(2476), }, - [STATE(655)] = { - [sym_line_comment] = STATE(655), - [sym_block_comment] = STATE(655), + [STATE(638)] = { + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), [ts_builtin_sym_end] = ACTIONS(2480), [sym_identifier] = ACTIONS(2482), [anon_sym_SEMI] = ACTIONS(2480), @@ -84521,9 +84951,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2480), [sym_float_literal] = ACTIONS(2480), }, - [STATE(656)] = { - [sym_line_comment] = STATE(656), - [sym_block_comment] = STATE(656), + [STATE(639)] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), [ts_builtin_sym_end] = ACTIONS(2484), [sym_identifier] = ACTIONS(2486), [anon_sym_SEMI] = ACTIONS(2484), @@ -84602,9 +85032,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2484), [sym_float_literal] = ACTIONS(2484), }, - [STATE(657)] = { - [sym_line_comment] = STATE(657), - [sym_block_comment] = STATE(657), + [STATE(640)] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), [ts_builtin_sym_end] = ACTIONS(2488), [sym_identifier] = ACTIONS(2490), [anon_sym_SEMI] = ACTIONS(2488), @@ -84683,9 +85113,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2488), [sym_float_literal] = ACTIONS(2488), }, - [STATE(658)] = { - [sym_line_comment] = STATE(658), - [sym_block_comment] = STATE(658), + [STATE(641)] = { + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), [ts_builtin_sym_end] = ACTIONS(2492), [sym_identifier] = ACTIONS(2494), [anon_sym_SEMI] = ACTIONS(2492), @@ -84764,9 +85194,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2492), [sym_float_literal] = ACTIONS(2492), }, - [STATE(659)] = { - [sym_line_comment] = STATE(659), - [sym_block_comment] = STATE(659), + [STATE(642)] = { + [sym_line_comment] = STATE(642), + [sym_block_comment] = STATE(642), [ts_builtin_sym_end] = ACTIONS(2496), [sym_identifier] = ACTIONS(2498), [anon_sym_SEMI] = ACTIONS(2496), @@ -84845,9 +85275,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2496), [sym_float_literal] = ACTIONS(2496), }, - [STATE(660)] = { - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), + [STATE(643)] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), [ts_builtin_sym_end] = ACTIONS(2500), [sym_identifier] = ACTIONS(2502), [anon_sym_SEMI] = ACTIONS(2500), @@ -84926,9 +85356,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2500), [sym_float_literal] = ACTIONS(2500), }, - [STATE(661)] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), + [STATE(644)] = { + [sym_line_comment] = STATE(644), + [sym_block_comment] = STATE(644), [ts_builtin_sym_end] = ACTIONS(2504), [sym_identifier] = ACTIONS(2506), [anon_sym_SEMI] = ACTIONS(2504), @@ -85007,9 +85437,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2504), [sym_float_literal] = ACTIONS(2504), }, - [STATE(662)] = { - [sym_line_comment] = STATE(662), - [sym_block_comment] = STATE(662), + [STATE(645)] = { + [sym_line_comment] = STATE(645), + [sym_block_comment] = STATE(645), [ts_builtin_sym_end] = ACTIONS(2508), [sym_identifier] = ACTIONS(2510), [anon_sym_SEMI] = ACTIONS(2508), @@ -85088,9 +85518,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2508), [sym_float_literal] = ACTIONS(2508), }, - [STATE(663)] = { - [sym_line_comment] = STATE(663), - [sym_block_comment] = STATE(663), + [STATE(646)] = { + [sym_line_comment] = STATE(646), + [sym_block_comment] = STATE(646), [ts_builtin_sym_end] = ACTIONS(2512), [sym_identifier] = ACTIONS(2514), [anon_sym_SEMI] = ACTIONS(2512), @@ -85169,738 +85599,657 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2512), [sym_float_literal] = ACTIONS(2512), }, - [STATE(664)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(664), - [sym_block_comment] = STATE(664), - [aux_sym_declaration_list_repeat1] = STATE(747), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), + [STATE(647)] = { + [sym_line_comment] = STATE(647), + [sym_block_comment] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(2516), + [sym_identifier] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2516), + [anon_sym_macro_rules_BANG] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2516), [anon_sym_RBRACE] = ACTIONS(2516), - [anon_sym_u8] = ACTIONS(2182), - [anon_sym_i8] = ACTIONS(2182), - [anon_sym_u16] = ACTIONS(2182), - [anon_sym_i16] = ACTIONS(2182), - [anon_sym_u32] = ACTIONS(2182), - [anon_sym_i32] = ACTIONS(2182), - [anon_sym_u64] = ACTIONS(2182), - [anon_sym_i64] = ACTIONS(2182), - [anon_sym_u128] = ACTIONS(2182), - [anon_sym_i128] = ACTIONS(2182), - [anon_sym_isize] = ACTIONS(2182), - [anon_sym_usize] = ACTIONS(2182), - [anon_sym_f32] = ACTIONS(2182), - [anon_sym_f64] = ACTIONS(2182), - [anon_sym_bool] = ACTIONS(2182), - [anon_sym_str] = ACTIONS(2182), - [anon_sym_char] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2194), - [anon_sym_gen] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2198), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2202), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2206), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), - }, - [STATE(665)] = { - [sym_line_comment] = STATE(665), - [sym_block_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_macro_rules_BANG] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_u8] = ACTIONS(2520), - [anon_sym_i8] = ACTIONS(2520), - [anon_sym_u16] = ACTIONS(2520), - [anon_sym_i16] = ACTIONS(2520), - [anon_sym_u32] = ACTIONS(2520), - [anon_sym_i32] = ACTIONS(2520), - [anon_sym_u64] = ACTIONS(2520), - [anon_sym_i64] = ACTIONS(2520), - [anon_sym_u128] = ACTIONS(2520), - [anon_sym_i128] = ACTIONS(2520), - [anon_sym_isize] = ACTIONS(2520), - [anon_sym_usize] = ACTIONS(2520), - [anon_sym_f32] = ACTIONS(2520), - [anon_sym_f64] = ACTIONS(2520), - [anon_sym_bool] = ACTIONS(2520), - [anon_sym_str] = ACTIONS(2520), - [anon_sym_char] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2518), - [anon_sym_POUND] = ACTIONS(2518), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_async] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), - [anon_sym_fn] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_gen] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_impl] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_loop] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_mod] = ACTIONS(2520), - [anon_sym_pub] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(2520), - [anon_sym_trait] = ACTIONS(2520), - [anon_sym_type] = ACTIONS(2520), - [anon_sym_union] = ACTIONS(2520), - [anon_sym_unsafe] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_move] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [sym_integer_literal] = ACTIONS(2518), - [aux_sym_string_literal_token1] = ACTIONS(2518), - [sym_char_literal] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(2520), - [anon_sym_false] = ACTIONS(2520), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2520), - [sym_super] = ACTIONS(2520), - [sym_crate] = ACTIONS(2520), - [sym_metavariable] = ACTIONS(2518), - [sym__raw_string_literal_start] = ACTIONS(2518), - [sym_float_literal] = ACTIONS(2518), + [anon_sym_STAR] = ACTIONS(2516), + [anon_sym_u8] = ACTIONS(2518), + [anon_sym_i8] = ACTIONS(2518), + [anon_sym_u16] = ACTIONS(2518), + [anon_sym_i16] = ACTIONS(2518), + [anon_sym_u32] = ACTIONS(2518), + [anon_sym_i32] = ACTIONS(2518), + [anon_sym_u64] = ACTIONS(2518), + [anon_sym_i64] = ACTIONS(2518), + [anon_sym_u128] = ACTIONS(2518), + [anon_sym_i128] = ACTIONS(2518), + [anon_sym_isize] = ACTIONS(2518), + [anon_sym_usize] = ACTIONS(2518), + [anon_sym_f32] = ACTIONS(2518), + [anon_sym_f64] = ACTIONS(2518), + [anon_sym_bool] = ACTIONS(2518), + [anon_sym_str] = ACTIONS(2518), + [anon_sym_char] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_BANG] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2516), + [anon_sym_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2516), + [anon_sym_COLON_COLON] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(2516), + [anon_sym_SQUOTE] = ACTIONS(2518), + [anon_sym_async] = ACTIONS(2518), + [anon_sym_break] = ACTIONS(2518), + [anon_sym_const] = ACTIONS(2518), + [anon_sym_continue] = ACTIONS(2518), + [anon_sym_default] = ACTIONS(2518), + [anon_sym_enum] = ACTIONS(2518), + [anon_sym_fn] = ACTIONS(2518), + [anon_sym_for] = ACTIONS(2518), + [anon_sym_gen] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2518), + [anon_sym_impl] = ACTIONS(2518), + [anon_sym_let] = ACTIONS(2518), + [anon_sym_loop] = ACTIONS(2518), + [anon_sym_match] = ACTIONS(2518), + [anon_sym_mod] = ACTIONS(2518), + [anon_sym_pub] = ACTIONS(2518), + [anon_sym_return] = ACTIONS(2518), + [anon_sym_static] = ACTIONS(2518), + [anon_sym_struct] = ACTIONS(2518), + [anon_sym_trait] = ACTIONS(2518), + [anon_sym_type] = ACTIONS(2518), + [anon_sym_union] = ACTIONS(2518), + [anon_sym_unsafe] = ACTIONS(2518), + [anon_sym_use] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2518), + [anon_sym_extern] = ACTIONS(2518), + [anon_sym_yield] = ACTIONS(2518), + [anon_sym_move] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2518), + [sym_integer_literal] = ACTIONS(2516), + [aux_sym_string_literal_token1] = ACTIONS(2516), + [sym_char_literal] = ACTIONS(2516), + [anon_sym_true] = ACTIONS(2518), + [anon_sym_false] = ACTIONS(2518), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2518), + [sym_super] = ACTIONS(2518), + [sym_crate] = ACTIONS(2518), + [sym_metavariable] = ACTIONS(2516), + [sym__raw_string_literal_start] = ACTIONS(2516), + [sym_float_literal] = ACTIONS(2516), }, - [STATE(666)] = { - [sym_line_comment] = STATE(666), - [sym_block_comment] = STATE(666), - [ts_builtin_sym_end] = ACTIONS(2522), - [sym_identifier] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2522), - [anon_sym_macro_rules_BANG] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_RBRACE] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_u8] = ACTIONS(2524), - [anon_sym_i8] = ACTIONS(2524), - [anon_sym_u16] = ACTIONS(2524), - [anon_sym_i16] = ACTIONS(2524), - [anon_sym_u32] = ACTIONS(2524), - [anon_sym_i32] = ACTIONS(2524), - [anon_sym_u64] = ACTIONS(2524), - [anon_sym_i64] = ACTIONS(2524), - [anon_sym_u128] = ACTIONS(2524), - [anon_sym_i128] = ACTIONS(2524), - [anon_sym_isize] = ACTIONS(2524), - [anon_sym_usize] = ACTIONS(2524), - [anon_sym_f32] = ACTIONS(2524), - [anon_sym_f64] = ACTIONS(2524), - [anon_sym_bool] = ACTIONS(2524), - [anon_sym_str] = ACTIONS(2524), - [anon_sym_char] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_DOT_DOT] = ACTIONS(2522), - [anon_sym_COLON_COLON] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(2522), - [anon_sym_SQUOTE] = ACTIONS(2524), - [anon_sym_async] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_const] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_default] = ACTIONS(2524), - [anon_sym_enum] = ACTIONS(2524), - [anon_sym_fn] = ACTIONS(2524), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_gen] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2524), - [anon_sym_impl] = ACTIONS(2524), - [anon_sym_let] = ACTIONS(2524), - [anon_sym_loop] = ACTIONS(2524), - [anon_sym_match] = ACTIONS(2524), - [anon_sym_mod] = ACTIONS(2524), - [anon_sym_pub] = ACTIONS(2524), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2524), - [anon_sym_struct] = ACTIONS(2524), - [anon_sym_trait] = ACTIONS(2524), - [anon_sym_type] = ACTIONS(2524), - [anon_sym_union] = ACTIONS(2524), - [anon_sym_unsafe] = ACTIONS(2524), - [anon_sym_use] = ACTIONS(2524), - [anon_sym_while] = ACTIONS(2524), - [anon_sym_extern] = ACTIONS(2524), - [anon_sym_yield] = ACTIONS(2524), - [anon_sym_move] = ACTIONS(2524), - [anon_sym_try] = ACTIONS(2524), - [sym_integer_literal] = ACTIONS(2522), - [aux_sym_string_literal_token1] = ACTIONS(2522), - [sym_char_literal] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(2524), - [anon_sym_false] = ACTIONS(2524), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2524), - [sym_super] = ACTIONS(2524), - [sym_crate] = ACTIONS(2524), - [sym_metavariable] = ACTIONS(2522), - [sym__raw_string_literal_start] = ACTIONS(2522), - [sym_float_literal] = ACTIONS(2522), + [STATE(648)] = { + [sym_line_comment] = STATE(648), + [sym_block_comment] = STATE(648), + [ts_builtin_sym_end] = ACTIONS(2520), + [sym_identifier] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_macro_rules_BANG] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_u8] = ACTIONS(2522), + [anon_sym_i8] = ACTIONS(2522), + [anon_sym_u16] = ACTIONS(2522), + [anon_sym_i16] = ACTIONS(2522), + [anon_sym_u32] = ACTIONS(2522), + [anon_sym_i32] = ACTIONS(2522), + [anon_sym_u64] = ACTIONS(2522), + [anon_sym_i64] = ACTIONS(2522), + [anon_sym_u128] = ACTIONS(2522), + [anon_sym_i128] = ACTIONS(2522), + [anon_sym_isize] = ACTIONS(2522), + [anon_sym_usize] = ACTIONS(2522), + [anon_sym_f32] = ACTIONS(2522), + [anon_sym_f64] = ACTIONS(2522), + [anon_sym_bool] = ACTIONS(2522), + [anon_sym_str] = ACTIONS(2522), + [anon_sym_char] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2520), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_DOT_DOT] = ACTIONS(2520), + [anon_sym_COLON_COLON] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(2520), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_async] = ACTIONS(2522), + [anon_sym_break] = ACTIONS(2522), + [anon_sym_const] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2522), + [anon_sym_default] = ACTIONS(2522), + [anon_sym_enum] = ACTIONS(2522), + [anon_sym_fn] = ACTIONS(2522), + [anon_sym_for] = ACTIONS(2522), + [anon_sym_gen] = ACTIONS(2522), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_impl] = ACTIONS(2522), + [anon_sym_let] = ACTIONS(2522), + [anon_sym_loop] = ACTIONS(2522), + [anon_sym_match] = ACTIONS(2522), + [anon_sym_mod] = ACTIONS(2522), + [anon_sym_pub] = ACTIONS(2522), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(2522), + [anon_sym_struct] = ACTIONS(2522), + [anon_sym_trait] = ACTIONS(2522), + [anon_sym_type] = ACTIONS(2522), + [anon_sym_union] = ACTIONS(2522), + [anon_sym_unsafe] = ACTIONS(2522), + [anon_sym_use] = ACTIONS(2522), + [anon_sym_while] = ACTIONS(2522), + [anon_sym_extern] = ACTIONS(2522), + [anon_sym_yield] = ACTIONS(2522), + [anon_sym_move] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2522), + [sym_integer_literal] = ACTIONS(2520), + [aux_sym_string_literal_token1] = ACTIONS(2520), + [sym_char_literal] = ACTIONS(2520), + [anon_sym_true] = ACTIONS(2522), + [anon_sym_false] = ACTIONS(2522), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2522), + [sym_super] = ACTIONS(2522), + [sym_crate] = ACTIONS(2522), + [sym_metavariable] = ACTIONS(2520), + [sym__raw_string_literal_start] = ACTIONS(2520), + [sym_float_literal] = ACTIONS(2520), }, - [STATE(667)] = { - [sym_line_comment] = STATE(667), - [sym_block_comment] = STATE(667), - [ts_builtin_sym_end] = ACTIONS(2526), - [sym_identifier] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2526), - [anon_sym_macro_rules_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2526), - [anon_sym_RBRACE] = ACTIONS(2526), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_u8] = ACTIONS(2528), - [anon_sym_i8] = ACTIONS(2528), - [anon_sym_u16] = ACTIONS(2528), - [anon_sym_i16] = ACTIONS(2528), - [anon_sym_u32] = ACTIONS(2528), - [anon_sym_i32] = ACTIONS(2528), - [anon_sym_u64] = ACTIONS(2528), - [anon_sym_i64] = ACTIONS(2528), - [anon_sym_u128] = ACTIONS(2528), - [anon_sym_i128] = ACTIONS(2528), - [anon_sym_isize] = ACTIONS(2528), - [anon_sym_usize] = ACTIONS(2528), - [anon_sym_f32] = ACTIONS(2528), - [anon_sym_f64] = ACTIONS(2528), - [anon_sym_bool] = ACTIONS(2528), - [anon_sym_str] = ACTIONS(2528), - [anon_sym_char] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_BANG] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2526), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_DOT_DOT] = ACTIONS(2526), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_POUND] = ACTIONS(2526), - [anon_sym_SQUOTE] = ACTIONS(2528), - [anon_sym_async] = ACTIONS(2528), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_const] = ACTIONS(2528), - [anon_sym_continue] = ACTIONS(2528), - [anon_sym_default] = ACTIONS(2528), - [anon_sym_enum] = ACTIONS(2528), - [anon_sym_fn] = ACTIONS(2528), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_gen] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_impl] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_loop] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_mod] = ACTIONS(2528), - [anon_sym_pub] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_static] = ACTIONS(2528), - [anon_sym_struct] = ACTIONS(2528), - [anon_sym_trait] = ACTIONS(2528), - [anon_sym_type] = ACTIONS(2528), - [anon_sym_union] = ACTIONS(2528), - [anon_sym_unsafe] = ACTIONS(2528), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_extern] = ACTIONS(2528), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_move] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [sym_integer_literal] = ACTIONS(2526), - [aux_sym_string_literal_token1] = ACTIONS(2526), - [sym_char_literal] = ACTIONS(2526), - [anon_sym_true] = ACTIONS(2528), - [anon_sym_false] = ACTIONS(2528), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2528), - [sym_super] = ACTIONS(2528), - [sym_crate] = ACTIONS(2528), - [sym_metavariable] = ACTIONS(2526), - [sym__raw_string_literal_start] = ACTIONS(2526), - [sym_float_literal] = ACTIONS(2526), + [STATE(649)] = { + [sym_line_comment] = STATE(649), + [sym_block_comment] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(2524), + [sym_identifier] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2524), + [anon_sym_macro_rules_BANG] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2524), + [anon_sym_RBRACE] = ACTIONS(2524), + [anon_sym_STAR] = ACTIONS(2524), + [anon_sym_u8] = ACTIONS(2526), + [anon_sym_i8] = ACTIONS(2526), + [anon_sym_u16] = ACTIONS(2526), + [anon_sym_i16] = ACTIONS(2526), + [anon_sym_u32] = ACTIONS(2526), + [anon_sym_i32] = ACTIONS(2526), + [anon_sym_u64] = ACTIONS(2526), + [anon_sym_i64] = ACTIONS(2526), + [anon_sym_u128] = ACTIONS(2526), + [anon_sym_i128] = ACTIONS(2526), + [anon_sym_isize] = ACTIONS(2526), + [anon_sym_usize] = ACTIONS(2526), + [anon_sym_f32] = ACTIONS(2526), + [anon_sym_f64] = ACTIONS(2526), + [anon_sym_bool] = ACTIONS(2526), + [anon_sym_str] = ACTIONS(2526), + [anon_sym_char] = ACTIONS(2526), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_BANG] = ACTIONS(2524), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_PIPE] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_DOT_DOT] = ACTIONS(2524), + [anon_sym_COLON_COLON] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(2524), + [anon_sym_SQUOTE] = ACTIONS(2526), + [anon_sym_async] = ACTIONS(2526), + [anon_sym_break] = ACTIONS(2526), + [anon_sym_const] = ACTIONS(2526), + [anon_sym_continue] = ACTIONS(2526), + [anon_sym_default] = ACTIONS(2526), + [anon_sym_enum] = ACTIONS(2526), + [anon_sym_fn] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2526), + [anon_sym_gen] = ACTIONS(2526), + [anon_sym_if] = ACTIONS(2526), + [anon_sym_impl] = ACTIONS(2526), + [anon_sym_let] = ACTIONS(2526), + [anon_sym_loop] = ACTIONS(2526), + [anon_sym_match] = ACTIONS(2526), + [anon_sym_mod] = ACTIONS(2526), + [anon_sym_pub] = ACTIONS(2526), + [anon_sym_return] = ACTIONS(2526), + [anon_sym_static] = ACTIONS(2526), + [anon_sym_struct] = ACTIONS(2526), + [anon_sym_trait] = ACTIONS(2526), + [anon_sym_type] = ACTIONS(2526), + [anon_sym_union] = ACTIONS(2526), + [anon_sym_unsafe] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2526), + [anon_sym_while] = ACTIONS(2526), + [anon_sym_extern] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2526), + [anon_sym_move] = ACTIONS(2526), + [anon_sym_try] = ACTIONS(2526), + [sym_integer_literal] = ACTIONS(2524), + [aux_sym_string_literal_token1] = ACTIONS(2524), + [sym_char_literal] = ACTIONS(2524), + [anon_sym_true] = ACTIONS(2526), + [anon_sym_false] = ACTIONS(2526), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2526), + [sym_super] = ACTIONS(2526), + [sym_crate] = ACTIONS(2526), + [sym_metavariable] = ACTIONS(2524), + [sym__raw_string_literal_start] = ACTIONS(2524), + [sym_float_literal] = ACTIONS(2524), }, - [STATE(668)] = { - [sym_line_comment] = STATE(668), - [sym_block_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(2530), - [sym_identifier] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2530), - [anon_sym_macro_rules_BANG] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2530), - [anon_sym_LBRACE] = ACTIONS(2530), - [anon_sym_RBRACE] = ACTIONS(2530), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_u8] = ACTIONS(2532), - [anon_sym_i8] = ACTIONS(2532), - [anon_sym_u16] = ACTIONS(2532), - [anon_sym_i16] = ACTIONS(2532), - [anon_sym_u32] = ACTIONS(2532), - [anon_sym_i32] = ACTIONS(2532), - [anon_sym_u64] = ACTIONS(2532), - [anon_sym_i64] = ACTIONS(2532), - [anon_sym_u128] = ACTIONS(2532), - [anon_sym_i128] = ACTIONS(2532), - [anon_sym_isize] = ACTIONS(2532), - [anon_sym_usize] = ACTIONS(2532), - [anon_sym_f32] = ACTIONS(2532), - [anon_sym_f64] = ACTIONS(2532), - [anon_sym_bool] = ACTIONS(2532), - [anon_sym_str] = ACTIONS(2532), - [anon_sym_char] = ACTIONS(2532), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_BANG] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_DOT_DOT] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2530), - [anon_sym_POUND] = ACTIONS(2530), - [anon_sym_SQUOTE] = ACTIONS(2532), - [anon_sym_async] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_const] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_default] = ACTIONS(2532), - [anon_sym_enum] = ACTIONS(2532), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_for] = ACTIONS(2532), - [anon_sym_gen] = ACTIONS(2532), - [anon_sym_if] = ACTIONS(2532), - [anon_sym_impl] = ACTIONS(2532), - [anon_sym_let] = ACTIONS(2532), - [anon_sym_loop] = ACTIONS(2532), - [anon_sym_match] = ACTIONS(2532), - [anon_sym_mod] = ACTIONS(2532), - [anon_sym_pub] = ACTIONS(2532), - [anon_sym_return] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2532), - [anon_sym_struct] = ACTIONS(2532), - [anon_sym_trait] = ACTIONS(2532), - [anon_sym_type] = ACTIONS(2532), - [anon_sym_union] = ACTIONS(2532), - [anon_sym_unsafe] = ACTIONS(2532), - [anon_sym_use] = ACTIONS(2532), - [anon_sym_while] = ACTIONS(2532), - [anon_sym_extern] = ACTIONS(2532), - [anon_sym_yield] = ACTIONS(2532), - [anon_sym_move] = ACTIONS(2532), - [anon_sym_try] = ACTIONS(2532), - [sym_integer_literal] = ACTIONS(2530), - [aux_sym_string_literal_token1] = ACTIONS(2530), - [sym_char_literal] = ACTIONS(2530), - [anon_sym_true] = ACTIONS(2532), - [anon_sym_false] = ACTIONS(2532), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2532), - [sym_super] = ACTIONS(2532), - [sym_crate] = ACTIONS(2532), - [sym_metavariable] = ACTIONS(2530), - [sym__raw_string_literal_start] = ACTIONS(2530), - [sym_float_literal] = ACTIONS(2530), + [STATE(650)] = { + [sym_line_comment] = STATE(650), + [sym_block_comment] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(2528), + [sym_identifier] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2528), + [anon_sym_macro_rules_BANG] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_RBRACE] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2528), + [anon_sym_u8] = ACTIONS(2530), + [anon_sym_i8] = ACTIONS(2530), + [anon_sym_u16] = ACTIONS(2530), + [anon_sym_i16] = ACTIONS(2530), + [anon_sym_u32] = ACTIONS(2530), + [anon_sym_i32] = ACTIONS(2530), + [anon_sym_u64] = ACTIONS(2530), + [anon_sym_i64] = ACTIONS(2530), + [anon_sym_u128] = ACTIONS(2530), + [anon_sym_i128] = ACTIONS(2530), + [anon_sym_isize] = ACTIONS(2530), + [anon_sym_usize] = ACTIONS(2530), + [anon_sym_f32] = ACTIONS(2530), + [anon_sym_f64] = ACTIONS(2530), + [anon_sym_bool] = ACTIONS(2530), + [anon_sym_str] = ACTIONS(2530), + [anon_sym_char] = ACTIONS(2530), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_BANG] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_PIPE] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2528), + [anon_sym_DOT_DOT] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2528), + [anon_sym_POUND] = ACTIONS(2528), + [anon_sym_SQUOTE] = ACTIONS(2530), + [anon_sym_async] = ACTIONS(2530), + [anon_sym_break] = ACTIONS(2530), + [anon_sym_const] = ACTIONS(2530), + [anon_sym_continue] = ACTIONS(2530), + [anon_sym_default] = ACTIONS(2530), + [anon_sym_enum] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2530), + [anon_sym_for] = ACTIONS(2530), + [anon_sym_gen] = ACTIONS(2530), + [anon_sym_if] = ACTIONS(2530), + [anon_sym_impl] = ACTIONS(2530), + [anon_sym_let] = ACTIONS(2530), + [anon_sym_loop] = ACTIONS(2530), + [anon_sym_match] = ACTIONS(2530), + [anon_sym_mod] = ACTIONS(2530), + [anon_sym_pub] = ACTIONS(2530), + [anon_sym_return] = ACTIONS(2530), + [anon_sym_static] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(2530), + [anon_sym_trait] = ACTIONS(2530), + [anon_sym_type] = ACTIONS(2530), + [anon_sym_union] = ACTIONS(2530), + [anon_sym_unsafe] = ACTIONS(2530), + [anon_sym_use] = ACTIONS(2530), + [anon_sym_while] = ACTIONS(2530), + [anon_sym_extern] = ACTIONS(2530), + [anon_sym_yield] = ACTIONS(2530), + [anon_sym_move] = ACTIONS(2530), + [anon_sym_try] = ACTIONS(2530), + [sym_integer_literal] = ACTIONS(2528), + [aux_sym_string_literal_token1] = ACTIONS(2528), + [sym_char_literal] = ACTIONS(2528), + [anon_sym_true] = ACTIONS(2530), + [anon_sym_false] = ACTIONS(2530), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2530), + [sym_super] = ACTIONS(2530), + [sym_crate] = ACTIONS(2530), + [sym_metavariable] = ACTIONS(2528), + [sym__raw_string_literal_start] = ACTIONS(2528), + [sym_float_literal] = ACTIONS(2528), }, - [STATE(669)] = { - [sym_line_comment] = STATE(669), - [sym_block_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(2534), - [sym_identifier] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2534), - [anon_sym_macro_rules_BANG] = ACTIONS(2534), - [anon_sym_LPAREN] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_LBRACE] = ACTIONS(2534), - [anon_sym_RBRACE] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2534), - [anon_sym_u8] = ACTIONS(2536), - [anon_sym_i8] = ACTIONS(2536), - [anon_sym_u16] = ACTIONS(2536), - [anon_sym_i16] = ACTIONS(2536), - [anon_sym_u32] = ACTIONS(2536), - [anon_sym_i32] = ACTIONS(2536), - [anon_sym_u64] = ACTIONS(2536), - [anon_sym_i64] = ACTIONS(2536), - [anon_sym_u128] = ACTIONS(2536), - [anon_sym_i128] = ACTIONS(2536), - [anon_sym_isize] = ACTIONS(2536), - [anon_sym_usize] = ACTIONS(2536), - [anon_sym_f32] = ACTIONS(2536), - [anon_sym_f64] = ACTIONS(2536), - [anon_sym_bool] = ACTIONS(2536), - [anon_sym_str] = ACTIONS(2536), - [anon_sym_char] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_BANG] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2534), - [anon_sym_PIPE] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2534), - [anon_sym_DOT_DOT] = ACTIONS(2534), - [anon_sym_COLON_COLON] = ACTIONS(2534), - [anon_sym_POUND] = ACTIONS(2534), - [anon_sym_SQUOTE] = ACTIONS(2536), - [anon_sym_async] = ACTIONS(2536), - [anon_sym_break] = ACTIONS(2536), - [anon_sym_const] = ACTIONS(2536), - [anon_sym_continue] = ACTIONS(2536), - [anon_sym_default] = ACTIONS(2536), - [anon_sym_enum] = ACTIONS(2536), - [anon_sym_fn] = ACTIONS(2536), - [anon_sym_for] = ACTIONS(2536), - [anon_sym_gen] = ACTIONS(2536), - [anon_sym_if] = ACTIONS(2536), - [anon_sym_impl] = ACTIONS(2536), - [anon_sym_let] = ACTIONS(2536), - [anon_sym_loop] = ACTIONS(2536), - [anon_sym_match] = ACTIONS(2536), - [anon_sym_mod] = ACTIONS(2536), - [anon_sym_pub] = ACTIONS(2536), - [anon_sym_return] = ACTIONS(2536), - [anon_sym_static] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2536), - [anon_sym_trait] = ACTIONS(2536), - [anon_sym_type] = ACTIONS(2536), - [anon_sym_union] = ACTIONS(2536), - [anon_sym_unsafe] = ACTIONS(2536), - [anon_sym_use] = ACTIONS(2536), - [anon_sym_while] = ACTIONS(2536), - [anon_sym_extern] = ACTIONS(2536), - [anon_sym_yield] = ACTIONS(2536), - [anon_sym_move] = ACTIONS(2536), - [anon_sym_try] = ACTIONS(2536), - [sym_integer_literal] = ACTIONS(2534), - [aux_sym_string_literal_token1] = ACTIONS(2534), - [sym_char_literal] = ACTIONS(2534), - [anon_sym_true] = ACTIONS(2536), - [anon_sym_false] = ACTIONS(2536), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2536), - [sym_super] = ACTIONS(2536), - [sym_crate] = ACTIONS(2536), - [sym_metavariable] = ACTIONS(2534), - [sym__raw_string_literal_start] = ACTIONS(2534), - [sym_float_literal] = ACTIONS(2534), + [STATE(651)] = { + [sym_line_comment] = STATE(651), + [sym_block_comment] = STATE(651), + [ts_builtin_sym_end] = ACTIONS(2532), + [sym_identifier] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2532), + [anon_sym_macro_rules_BANG] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2532), + [anon_sym_u8] = ACTIONS(2534), + [anon_sym_i8] = ACTIONS(2534), + [anon_sym_u16] = ACTIONS(2534), + [anon_sym_i16] = ACTIONS(2534), + [anon_sym_u32] = ACTIONS(2534), + [anon_sym_i32] = ACTIONS(2534), + [anon_sym_u64] = ACTIONS(2534), + [anon_sym_i64] = ACTIONS(2534), + [anon_sym_u128] = ACTIONS(2534), + [anon_sym_i128] = ACTIONS(2534), + [anon_sym_isize] = ACTIONS(2534), + [anon_sym_usize] = ACTIONS(2534), + [anon_sym_f32] = ACTIONS(2534), + [anon_sym_f64] = ACTIONS(2534), + [anon_sym_bool] = ACTIONS(2534), + [anon_sym_str] = ACTIONS(2534), + [anon_sym_char] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_DOT_DOT] = ACTIONS(2532), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_POUND] = ACTIONS(2532), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_async] = ACTIONS(2534), + [anon_sym_break] = ACTIONS(2534), + [anon_sym_const] = ACTIONS(2534), + [anon_sym_continue] = ACTIONS(2534), + [anon_sym_default] = ACTIONS(2534), + [anon_sym_enum] = ACTIONS(2534), + [anon_sym_fn] = ACTIONS(2534), + [anon_sym_for] = ACTIONS(2534), + [anon_sym_gen] = ACTIONS(2534), + [anon_sym_if] = ACTIONS(2534), + [anon_sym_impl] = ACTIONS(2534), + [anon_sym_let] = ACTIONS(2534), + [anon_sym_loop] = ACTIONS(2534), + [anon_sym_match] = ACTIONS(2534), + [anon_sym_mod] = ACTIONS(2534), + [anon_sym_pub] = ACTIONS(2534), + [anon_sym_return] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(2534), + [anon_sym_struct] = ACTIONS(2534), + [anon_sym_trait] = ACTIONS(2534), + [anon_sym_type] = ACTIONS(2534), + [anon_sym_union] = ACTIONS(2534), + [anon_sym_unsafe] = ACTIONS(2534), + [anon_sym_use] = ACTIONS(2534), + [anon_sym_while] = ACTIONS(2534), + [anon_sym_extern] = ACTIONS(2534), + [anon_sym_yield] = ACTIONS(2534), + [anon_sym_move] = ACTIONS(2534), + [anon_sym_try] = ACTIONS(2534), + [sym_integer_literal] = ACTIONS(2532), + [aux_sym_string_literal_token1] = ACTIONS(2532), + [sym_char_literal] = ACTIONS(2532), + [anon_sym_true] = ACTIONS(2534), + [anon_sym_false] = ACTIONS(2534), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2534), + [sym_super] = ACTIONS(2534), + [sym_crate] = ACTIONS(2534), + [sym_metavariable] = ACTIONS(2532), + [sym__raw_string_literal_start] = ACTIONS(2532), + [sym_float_literal] = ACTIONS(2532), }, - [STATE(670)] = { - [sym_line_comment] = STATE(670), - [sym_block_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(2538), - [sym_identifier] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2538), - [anon_sym_macro_rules_BANG] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2538), - [anon_sym_RBRACE] = ACTIONS(2538), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_u8] = ACTIONS(2540), - [anon_sym_i8] = ACTIONS(2540), - [anon_sym_u16] = ACTIONS(2540), - [anon_sym_i16] = ACTIONS(2540), - [anon_sym_u32] = ACTIONS(2540), - [anon_sym_i32] = ACTIONS(2540), - [anon_sym_u64] = ACTIONS(2540), - [anon_sym_i64] = ACTIONS(2540), - [anon_sym_u128] = ACTIONS(2540), - [anon_sym_i128] = ACTIONS(2540), - [anon_sym_isize] = ACTIONS(2540), - [anon_sym_usize] = ACTIONS(2540), - [anon_sym_f32] = ACTIONS(2540), - [anon_sym_f64] = ACTIONS(2540), - [anon_sym_bool] = ACTIONS(2540), - [anon_sym_str] = ACTIONS(2540), - [anon_sym_char] = ACTIONS(2540), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2538), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_DOT_DOT] = ACTIONS(2538), - [anon_sym_COLON_COLON] = ACTIONS(2538), - [anon_sym_POUND] = ACTIONS(2538), - [anon_sym_SQUOTE] = ACTIONS(2540), - [anon_sym_async] = ACTIONS(2540), - [anon_sym_break] = ACTIONS(2540), - [anon_sym_const] = ACTIONS(2540), - [anon_sym_continue] = ACTIONS(2540), - [anon_sym_default] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2540), - [anon_sym_fn] = ACTIONS(2540), - [anon_sym_for] = ACTIONS(2540), - [anon_sym_gen] = ACTIONS(2540), - [anon_sym_if] = ACTIONS(2540), - [anon_sym_impl] = ACTIONS(2540), - [anon_sym_let] = ACTIONS(2540), - [anon_sym_loop] = ACTIONS(2540), - [anon_sym_match] = ACTIONS(2540), - [anon_sym_mod] = ACTIONS(2540), - [anon_sym_pub] = ACTIONS(2540), - [anon_sym_return] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2540), - [anon_sym_struct] = ACTIONS(2540), - [anon_sym_trait] = ACTIONS(2540), - [anon_sym_type] = ACTIONS(2540), - [anon_sym_union] = ACTIONS(2540), - [anon_sym_unsafe] = ACTIONS(2540), - [anon_sym_use] = ACTIONS(2540), - [anon_sym_while] = ACTIONS(2540), - [anon_sym_extern] = ACTIONS(2540), - [anon_sym_yield] = ACTIONS(2540), - [anon_sym_move] = ACTIONS(2540), - [anon_sym_try] = ACTIONS(2540), - [sym_integer_literal] = ACTIONS(2538), - [aux_sym_string_literal_token1] = ACTIONS(2538), - [sym_char_literal] = ACTIONS(2538), - [anon_sym_true] = ACTIONS(2540), - [anon_sym_false] = ACTIONS(2540), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2540), - [sym_super] = ACTIONS(2540), - [sym_crate] = ACTIONS(2540), - [sym_metavariable] = ACTIONS(2538), - [sym__raw_string_literal_start] = ACTIONS(2538), - [sym_float_literal] = ACTIONS(2538), + [STATE(652)] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(2536), + [sym_identifier] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2536), + [anon_sym_macro_rules_BANG] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_RBRACE] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_u8] = ACTIONS(2538), + [anon_sym_i8] = ACTIONS(2538), + [anon_sym_u16] = ACTIONS(2538), + [anon_sym_i16] = ACTIONS(2538), + [anon_sym_u32] = ACTIONS(2538), + [anon_sym_i32] = ACTIONS(2538), + [anon_sym_u64] = ACTIONS(2538), + [anon_sym_i64] = ACTIONS(2538), + [anon_sym_u128] = ACTIONS(2538), + [anon_sym_i128] = ACTIONS(2538), + [anon_sym_isize] = ACTIONS(2538), + [anon_sym_usize] = ACTIONS(2538), + [anon_sym_f32] = ACTIONS(2538), + [anon_sym_f64] = ACTIONS(2538), + [anon_sym_bool] = ACTIONS(2538), + [anon_sym_str] = ACTIONS(2538), + [anon_sym_char] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2536), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_DOT_DOT] = ACTIONS(2536), + [anon_sym_COLON_COLON] = ACTIONS(2536), + [anon_sym_POUND] = ACTIONS(2536), + [anon_sym_SQUOTE] = ACTIONS(2538), + [anon_sym_async] = ACTIONS(2538), + [anon_sym_break] = ACTIONS(2538), + [anon_sym_const] = ACTIONS(2538), + [anon_sym_continue] = ACTIONS(2538), + [anon_sym_default] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2538), + [anon_sym_fn] = ACTIONS(2538), + [anon_sym_for] = ACTIONS(2538), + [anon_sym_gen] = ACTIONS(2538), + [anon_sym_if] = ACTIONS(2538), + [anon_sym_impl] = ACTIONS(2538), + [anon_sym_let] = ACTIONS(2538), + [anon_sym_loop] = ACTIONS(2538), + [anon_sym_match] = ACTIONS(2538), + [anon_sym_mod] = ACTIONS(2538), + [anon_sym_pub] = ACTIONS(2538), + [anon_sym_return] = ACTIONS(2538), + [anon_sym_static] = ACTIONS(2538), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_trait] = ACTIONS(2538), + [anon_sym_type] = ACTIONS(2538), + [anon_sym_union] = ACTIONS(2538), + [anon_sym_unsafe] = ACTIONS(2538), + [anon_sym_use] = ACTIONS(2538), + [anon_sym_while] = ACTIONS(2538), + [anon_sym_extern] = ACTIONS(2538), + [anon_sym_yield] = ACTIONS(2538), + [anon_sym_move] = ACTIONS(2538), + [anon_sym_try] = ACTIONS(2538), + [sym_integer_literal] = ACTIONS(2536), + [aux_sym_string_literal_token1] = ACTIONS(2536), + [sym_char_literal] = ACTIONS(2536), + [anon_sym_true] = ACTIONS(2538), + [anon_sym_false] = ACTIONS(2538), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2538), + [sym_super] = ACTIONS(2538), + [sym_crate] = ACTIONS(2538), + [sym_metavariable] = ACTIONS(2536), + [sym__raw_string_literal_start] = ACTIONS(2536), + [sym_float_literal] = ACTIONS(2536), }, - [STATE(671)] = { - [sym_line_comment] = STATE(671), - [sym_block_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(2542), - [sym_identifier] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_macro_rules_BANG] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2542), - [anon_sym_RBRACE] = ACTIONS(2542), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_u8] = ACTIONS(2544), - [anon_sym_i8] = ACTIONS(2544), - [anon_sym_u16] = ACTIONS(2544), - [anon_sym_i16] = ACTIONS(2544), - [anon_sym_u32] = ACTIONS(2544), - [anon_sym_i32] = ACTIONS(2544), - [anon_sym_u64] = ACTIONS(2544), - [anon_sym_i64] = ACTIONS(2544), - [anon_sym_u128] = ACTIONS(2544), - [anon_sym_i128] = ACTIONS(2544), - [anon_sym_isize] = ACTIONS(2544), - [anon_sym_usize] = ACTIONS(2544), - [anon_sym_f32] = ACTIONS(2544), - [anon_sym_f64] = ACTIONS(2544), - [anon_sym_bool] = ACTIONS(2544), - [anon_sym_str] = ACTIONS(2544), - [anon_sym_char] = ACTIONS(2544), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2542), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_DOT_DOT] = ACTIONS(2542), - [anon_sym_COLON_COLON] = ACTIONS(2542), - [anon_sym_POUND] = ACTIONS(2542), - [anon_sym_SQUOTE] = ACTIONS(2544), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_break] = ACTIONS(2544), - [anon_sym_const] = ACTIONS(2544), - [anon_sym_continue] = ACTIONS(2544), - [anon_sym_default] = ACTIONS(2544), - [anon_sym_enum] = ACTIONS(2544), - [anon_sym_fn] = ACTIONS(2544), - [anon_sym_for] = ACTIONS(2544), - [anon_sym_gen] = ACTIONS(2544), - [anon_sym_if] = ACTIONS(2544), - [anon_sym_impl] = ACTIONS(2544), - [anon_sym_let] = ACTIONS(2544), - [anon_sym_loop] = ACTIONS(2544), - [anon_sym_match] = ACTIONS(2544), - [anon_sym_mod] = ACTIONS(2544), - [anon_sym_pub] = ACTIONS(2544), - [anon_sym_return] = ACTIONS(2544), - [anon_sym_static] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2544), - [anon_sym_trait] = ACTIONS(2544), - [anon_sym_type] = ACTIONS(2544), - [anon_sym_union] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(2544), - [anon_sym_use] = ACTIONS(2544), - [anon_sym_while] = ACTIONS(2544), - [anon_sym_extern] = ACTIONS(2544), - [anon_sym_yield] = ACTIONS(2544), - [anon_sym_move] = ACTIONS(2544), - [anon_sym_try] = ACTIONS(2544), - [sym_integer_literal] = ACTIONS(2542), - [aux_sym_string_literal_token1] = ACTIONS(2542), - [sym_char_literal] = ACTIONS(2542), - [anon_sym_true] = ACTIONS(2544), - [anon_sym_false] = ACTIONS(2544), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2544), - [sym_super] = ACTIONS(2544), - [sym_crate] = ACTIONS(2544), - [sym_metavariable] = ACTIONS(2542), - [sym__raw_string_literal_start] = ACTIONS(2542), - [sym_float_literal] = ACTIONS(2542), + [STATE(653)] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), + [ts_builtin_sym_end] = ACTIONS(2540), + [sym_identifier] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_macro_rules_BANG] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_RBRACE] = ACTIONS(2540), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_u8] = ACTIONS(2542), + [anon_sym_i8] = ACTIONS(2542), + [anon_sym_u16] = ACTIONS(2542), + [anon_sym_i16] = ACTIONS(2542), + [anon_sym_u32] = ACTIONS(2542), + [anon_sym_i32] = ACTIONS(2542), + [anon_sym_u64] = ACTIONS(2542), + [anon_sym_i64] = ACTIONS(2542), + [anon_sym_u128] = ACTIONS(2542), + [anon_sym_i128] = ACTIONS(2542), + [anon_sym_isize] = ACTIONS(2542), + [anon_sym_usize] = ACTIONS(2542), + [anon_sym_f32] = ACTIONS(2542), + [anon_sym_f64] = ACTIONS(2542), + [anon_sym_bool] = ACTIONS(2542), + [anon_sym_str] = ACTIONS(2542), + [anon_sym_char] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2540), + [anon_sym_PIPE] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_DOT_DOT] = ACTIONS(2540), + [anon_sym_COLON_COLON] = ACTIONS(2540), + [anon_sym_POUND] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [anon_sym_async] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_fn] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_gen] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_impl] = ACTIONS(2542), + [anon_sym_let] = ACTIONS(2542), + [anon_sym_loop] = ACTIONS(2542), + [anon_sym_match] = ACTIONS(2542), + [anon_sym_mod] = ACTIONS(2542), + [anon_sym_pub] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_trait] = ACTIONS(2542), + [anon_sym_type] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_unsafe] = ACTIONS(2542), + [anon_sym_use] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2542), + [anon_sym_yield] = ACTIONS(2542), + [anon_sym_move] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [sym_integer_literal] = ACTIONS(2540), + [aux_sym_string_literal_token1] = ACTIONS(2540), + [sym_char_literal] = ACTIONS(2540), + [anon_sym_true] = ACTIONS(2542), + [anon_sym_false] = ACTIONS(2542), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2542), + [sym_super] = ACTIONS(2542), + [sym_crate] = ACTIONS(2542), + [sym_metavariable] = ACTIONS(2540), + [sym__raw_string_literal_start] = ACTIONS(2540), + [sym_float_literal] = ACTIONS(2540), }, - [STATE(672)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(672), - [sym_block_comment] = STATE(672), - [aux_sym_declaration_list_repeat1] = STATE(676), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2546), - [anon_sym_u8] = ACTIONS(2182), - [anon_sym_i8] = ACTIONS(2182), - [anon_sym_u16] = ACTIONS(2182), - [anon_sym_i16] = ACTIONS(2182), - [anon_sym_u32] = ACTIONS(2182), - [anon_sym_i32] = ACTIONS(2182), - [anon_sym_u64] = ACTIONS(2182), - [anon_sym_i64] = ACTIONS(2182), - [anon_sym_u128] = ACTIONS(2182), - [anon_sym_i128] = ACTIONS(2182), - [anon_sym_isize] = ACTIONS(2182), - [anon_sym_usize] = ACTIONS(2182), - [anon_sym_f32] = ACTIONS(2182), - [anon_sym_f64] = ACTIONS(2182), - [anon_sym_bool] = ACTIONS(2182), - [anon_sym_str] = ACTIONS(2182), - [anon_sym_char] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2194), - [anon_sym_gen] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2198), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2202), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2206), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), + [STATE(654)] = { + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(2544), + [sym_identifier] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2544), + [anon_sym_macro_rules_BANG] = ACTIONS(2544), + [anon_sym_LPAREN] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2544), + [anon_sym_RBRACE] = ACTIONS(2544), + [anon_sym_STAR] = ACTIONS(2544), + [anon_sym_u8] = ACTIONS(2546), + [anon_sym_i8] = ACTIONS(2546), + [anon_sym_u16] = ACTIONS(2546), + [anon_sym_i16] = ACTIONS(2546), + [anon_sym_u32] = ACTIONS(2546), + [anon_sym_i32] = ACTIONS(2546), + [anon_sym_u64] = ACTIONS(2546), + [anon_sym_i64] = ACTIONS(2546), + [anon_sym_u128] = ACTIONS(2546), + [anon_sym_i128] = ACTIONS(2546), + [anon_sym_isize] = ACTIONS(2546), + [anon_sym_usize] = ACTIONS(2546), + [anon_sym_f32] = ACTIONS(2546), + [anon_sym_f64] = ACTIONS(2546), + [anon_sym_bool] = ACTIONS(2546), + [anon_sym_str] = ACTIONS(2546), + [anon_sym_char] = ACTIONS(2546), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_BANG] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_LT] = ACTIONS(2544), + [anon_sym_DOT_DOT] = ACTIONS(2544), + [anon_sym_COLON_COLON] = ACTIONS(2544), + [anon_sym_POUND] = ACTIONS(2544), + [anon_sym_SQUOTE] = ACTIONS(2546), + [anon_sym_async] = ACTIONS(2546), + [anon_sym_break] = ACTIONS(2546), + [anon_sym_const] = ACTIONS(2546), + [anon_sym_continue] = ACTIONS(2546), + [anon_sym_default] = ACTIONS(2546), + [anon_sym_enum] = ACTIONS(2546), + [anon_sym_fn] = ACTIONS(2546), + [anon_sym_for] = ACTIONS(2546), + [anon_sym_gen] = ACTIONS(2546), + [anon_sym_if] = ACTIONS(2546), + [anon_sym_impl] = ACTIONS(2546), + [anon_sym_let] = ACTIONS(2546), + [anon_sym_loop] = ACTIONS(2546), + [anon_sym_match] = ACTIONS(2546), + [anon_sym_mod] = ACTIONS(2546), + [anon_sym_pub] = ACTIONS(2546), + [anon_sym_return] = ACTIONS(2546), + [anon_sym_static] = ACTIONS(2546), + [anon_sym_struct] = ACTIONS(2546), + [anon_sym_trait] = ACTIONS(2546), + [anon_sym_type] = ACTIONS(2546), + [anon_sym_union] = ACTIONS(2546), + [anon_sym_unsafe] = ACTIONS(2546), + [anon_sym_use] = ACTIONS(2546), + [anon_sym_while] = ACTIONS(2546), + [anon_sym_extern] = ACTIONS(2546), + [anon_sym_yield] = ACTIONS(2546), + [anon_sym_move] = ACTIONS(2546), + [anon_sym_try] = ACTIONS(2546), + [sym_integer_literal] = ACTIONS(2544), + [aux_sym_string_literal_token1] = ACTIONS(2544), + [sym_char_literal] = ACTIONS(2544), + [anon_sym_true] = ACTIONS(2546), + [anon_sym_false] = ACTIONS(2546), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2546), + [sym_super] = ACTIONS(2546), + [sym_crate] = ACTIONS(2546), + [sym_metavariable] = ACTIONS(2544), + [sym__raw_string_literal_start] = ACTIONS(2544), + [sym_float_literal] = ACTIONS(2544), }, - [STATE(673)] = { - [sym_line_comment] = STATE(673), - [sym_block_comment] = STATE(673), + [STATE(655)] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), [ts_builtin_sym_end] = ACTIONS(2548), [sym_identifier] = ACTIONS(2550), [anon_sym_SEMI] = ACTIONS(2548), @@ -85979,9 +86328,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2548), [sym_float_literal] = ACTIONS(2548), }, - [STATE(674)] = { - [sym_line_comment] = STATE(674), - [sym_block_comment] = STATE(674), + [STATE(656)] = { + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), [ts_builtin_sym_end] = ACTIONS(2552), [sym_identifier] = ACTIONS(2554), [anon_sym_SEMI] = ACTIONS(2552), @@ -86060,9 +86409,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2552), [sym_float_literal] = ACTIONS(2552), }, - [STATE(675)] = { - [sym_line_comment] = STATE(675), - [sym_block_comment] = STATE(675), + [STATE(657)] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), [ts_builtin_sym_end] = ACTIONS(2556), [sym_identifier] = ACTIONS(2558), [anon_sym_SEMI] = ACTIONS(2556), @@ -86141,900 +86490,819 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2556), [sym_float_literal] = ACTIONS(2556), }, - [STATE(676)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(676), - [sym_block_comment] = STATE(676), - [aux_sym_declaration_list_repeat1] = STATE(747), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_u8] = ACTIONS(2182), - [anon_sym_i8] = ACTIONS(2182), - [anon_sym_u16] = ACTIONS(2182), - [anon_sym_i16] = ACTIONS(2182), - [anon_sym_u32] = ACTIONS(2182), - [anon_sym_i32] = ACTIONS(2182), - [anon_sym_u64] = ACTIONS(2182), - [anon_sym_i64] = ACTIONS(2182), - [anon_sym_u128] = ACTIONS(2182), - [anon_sym_i128] = ACTIONS(2182), - [anon_sym_isize] = ACTIONS(2182), - [anon_sym_usize] = ACTIONS(2182), - [anon_sym_f32] = ACTIONS(2182), - [anon_sym_f64] = ACTIONS(2182), - [anon_sym_bool] = ACTIONS(2182), - [anon_sym_str] = ACTIONS(2182), - [anon_sym_char] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2194), - [anon_sym_gen] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2198), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2202), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2206), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), - }, - [STATE(677)] = { - [sym_line_comment] = STATE(677), - [sym_block_comment] = STATE(677), - [ts_builtin_sym_end] = ACTIONS(2562), - [sym_identifier] = ACTIONS(2564), - [anon_sym_SEMI] = ACTIONS(2562), - [anon_sym_macro_rules_BANG] = ACTIONS(2562), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2562), - [anon_sym_RBRACE] = ACTIONS(2562), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_u8] = ACTIONS(2564), - [anon_sym_i8] = ACTIONS(2564), - [anon_sym_u16] = ACTIONS(2564), - [anon_sym_i16] = ACTIONS(2564), - [anon_sym_u32] = ACTIONS(2564), - [anon_sym_i32] = ACTIONS(2564), - [anon_sym_u64] = ACTIONS(2564), - [anon_sym_i64] = ACTIONS(2564), - [anon_sym_u128] = ACTIONS(2564), - [anon_sym_i128] = ACTIONS(2564), - [anon_sym_isize] = ACTIONS(2564), - [anon_sym_usize] = ACTIONS(2564), - [anon_sym_f32] = ACTIONS(2564), - [anon_sym_f64] = ACTIONS(2564), - [anon_sym_bool] = ACTIONS(2564), - [anon_sym_str] = ACTIONS(2564), - [anon_sym_char] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_BANG] = ACTIONS(2562), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_DOT_DOT] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2562), - [anon_sym_POUND] = ACTIONS(2562), - [anon_sym_SQUOTE] = ACTIONS(2564), - [anon_sym_async] = ACTIONS(2564), - [anon_sym_break] = ACTIONS(2564), - [anon_sym_const] = ACTIONS(2564), - [anon_sym_continue] = ACTIONS(2564), - [anon_sym_default] = ACTIONS(2564), - [anon_sym_enum] = ACTIONS(2564), - [anon_sym_fn] = ACTIONS(2564), - [anon_sym_for] = ACTIONS(2564), - [anon_sym_gen] = ACTIONS(2564), - [anon_sym_if] = ACTIONS(2564), - [anon_sym_impl] = ACTIONS(2564), - [anon_sym_let] = ACTIONS(2564), - [anon_sym_loop] = ACTIONS(2564), - [anon_sym_match] = ACTIONS(2564), - [anon_sym_mod] = ACTIONS(2564), - [anon_sym_pub] = ACTIONS(2564), - [anon_sym_return] = ACTIONS(2564), - [anon_sym_static] = ACTIONS(2564), - [anon_sym_struct] = ACTIONS(2564), - [anon_sym_trait] = ACTIONS(2564), - [anon_sym_type] = ACTIONS(2564), - [anon_sym_union] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2564), - [anon_sym_use] = ACTIONS(2564), - [anon_sym_while] = ACTIONS(2564), - [anon_sym_extern] = ACTIONS(2564), - [anon_sym_yield] = ACTIONS(2564), - [anon_sym_move] = ACTIONS(2564), - [anon_sym_try] = ACTIONS(2564), - [sym_integer_literal] = ACTIONS(2562), - [aux_sym_string_literal_token1] = ACTIONS(2562), - [sym_char_literal] = ACTIONS(2562), - [anon_sym_true] = ACTIONS(2564), - [anon_sym_false] = ACTIONS(2564), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2564), - [sym_super] = ACTIONS(2564), - [sym_crate] = ACTIONS(2564), - [sym_metavariable] = ACTIONS(2562), - [sym__raw_string_literal_start] = ACTIONS(2562), - [sym_float_literal] = ACTIONS(2562), + [STATE(658)] = { + [sym_attribute_item] = STATE(1539), + [sym_inner_attribute_item] = STATE(1539), + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_match_pattern] = STATE(3948), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3496), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), + [aux_sym_match_arm_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), }, - [STATE(678)] = { - [sym_line_comment] = STATE(678), - [sym_block_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(2566), - [sym_identifier] = ACTIONS(2568), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_macro_rules_BANG] = ACTIONS(2566), - [anon_sym_LPAREN] = ACTIONS(2566), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_LBRACE] = ACTIONS(2566), - [anon_sym_RBRACE] = ACTIONS(2566), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_u8] = ACTIONS(2568), - [anon_sym_i8] = ACTIONS(2568), - [anon_sym_u16] = ACTIONS(2568), - [anon_sym_i16] = ACTIONS(2568), - [anon_sym_u32] = ACTIONS(2568), - [anon_sym_i32] = ACTIONS(2568), - [anon_sym_u64] = ACTIONS(2568), - [anon_sym_i64] = ACTIONS(2568), - [anon_sym_u128] = ACTIONS(2568), - [anon_sym_i128] = ACTIONS(2568), - [anon_sym_isize] = ACTIONS(2568), - [anon_sym_usize] = ACTIONS(2568), - [anon_sym_f32] = ACTIONS(2568), - [anon_sym_f64] = ACTIONS(2568), - [anon_sym_bool] = ACTIONS(2568), - [anon_sym_str] = ACTIONS(2568), - [anon_sym_char] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2566), - [anon_sym_BANG] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_DOT_DOT] = ACTIONS(2566), - [anon_sym_COLON_COLON] = ACTIONS(2566), - [anon_sym_POUND] = ACTIONS(2566), - [anon_sym_SQUOTE] = ACTIONS(2568), - [anon_sym_async] = ACTIONS(2568), - [anon_sym_break] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2568), - [anon_sym_default] = ACTIONS(2568), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_fn] = ACTIONS(2568), - [anon_sym_for] = ACTIONS(2568), - [anon_sym_gen] = ACTIONS(2568), - [anon_sym_if] = ACTIONS(2568), - [anon_sym_impl] = ACTIONS(2568), - [anon_sym_let] = ACTIONS(2568), - [anon_sym_loop] = ACTIONS(2568), - [anon_sym_match] = ACTIONS(2568), - [anon_sym_mod] = ACTIONS(2568), - [anon_sym_pub] = ACTIONS(2568), - [anon_sym_return] = ACTIONS(2568), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_struct] = ACTIONS(2568), - [anon_sym_trait] = ACTIONS(2568), - [anon_sym_type] = ACTIONS(2568), - [anon_sym_union] = ACTIONS(2568), - [anon_sym_unsafe] = ACTIONS(2568), - [anon_sym_use] = ACTIONS(2568), - [anon_sym_while] = ACTIONS(2568), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym_yield] = ACTIONS(2568), - [anon_sym_move] = ACTIONS(2568), - [anon_sym_try] = ACTIONS(2568), - [sym_integer_literal] = ACTIONS(2566), - [aux_sym_string_literal_token1] = ACTIONS(2566), - [sym_char_literal] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2568), - [sym_super] = ACTIONS(2568), - [sym_crate] = ACTIONS(2568), - [sym_metavariable] = ACTIONS(2566), - [sym__raw_string_literal_start] = ACTIONS(2566), - [sym_float_literal] = ACTIONS(2566), + [STATE(659)] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), + [ts_builtin_sym_end] = ACTIONS(2560), + [sym_identifier] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2560), + [anon_sym_macro_rules_BANG] = ACTIONS(2560), + [anon_sym_LPAREN] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2560), + [anon_sym_RBRACE] = ACTIONS(2560), + [anon_sym_STAR] = ACTIONS(2560), + [anon_sym_u8] = ACTIONS(2562), + [anon_sym_i8] = ACTIONS(2562), + [anon_sym_u16] = ACTIONS(2562), + [anon_sym_i16] = ACTIONS(2562), + [anon_sym_u32] = ACTIONS(2562), + [anon_sym_i32] = ACTIONS(2562), + [anon_sym_u64] = ACTIONS(2562), + [anon_sym_i64] = ACTIONS(2562), + [anon_sym_u128] = ACTIONS(2562), + [anon_sym_i128] = ACTIONS(2562), + [anon_sym_isize] = ACTIONS(2562), + [anon_sym_usize] = ACTIONS(2562), + [anon_sym_f32] = ACTIONS(2562), + [anon_sym_f64] = ACTIONS(2562), + [anon_sym_bool] = ACTIONS(2562), + [anon_sym_str] = ACTIONS(2562), + [anon_sym_char] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_BANG] = ACTIONS(2560), + [anon_sym_AMP] = ACTIONS(2560), + [anon_sym_PIPE] = ACTIONS(2560), + [anon_sym_LT] = ACTIONS(2560), + [anon_sym_DOT_DOT] = ACTIONS(2560), + [anon_sym_COLON_COLON] = ACTIONS(2560), + [anon_sym_POUND] = ACTIONS(2560), + [anon_sym_SQUOTE] = ACTIONS(2562), + [anon_sym_async] = ACTIONS(2562), + [anon_sym_break] = ACTIONS(2562), + [anon_sym_const] = ACTIONS(2562), + [anon_sym_continue] = ACTIONS(2562), + [anon_sym_default] = ACTIONS(2562), + [anon_sym_enum] = ACTIONS(2562), + [anon_sym_fn] = ACTIONS(2562), + [anon_sym_for] = ACTIONS(2562), + [anon_sym_gen] = ACTIONS(2562), + [anon_sym_if] = ACTIONS(2562), + [anon_sym_impl] = ACTIONS(2562), + [anon_sym_let] = ACTIONS(2562), + [anon_sym_loop] = ACTIONS(2562), + [anon_sym_match] = ACTIONS(2562), + [anon_sym_mod] = ACTIONS(2562), + [anon_sym_pub] = ACTIONS(2562), + [anon_sym_return] = ACTIONS(2562), + [anon_sym_static] = ACTIONS(2562), + [anon_sym_struct] = ACTIONS(2562), + [anon_sym_trait] = ACTIONS(2562), + [anon_sym_type] = ACTIONS(2562), + [anon_sym_union] = ACTIONS(2562), + [anon_sym_unsafe] = ACTIONS(2562), + [anon_sym_use] = ACTIONS(2562), + [anon_sym_while] = ACTIONS(2562), + [anon_sym_extern] = ACTIONS(2562), + [anon_sym_yield] = ACTIONS(2562), + [anon_sym_move] = ACTIONS(2562), + [anon_sym_try] = ACTIONS(2562), + [sym_integer_literal] = ACTIONS(2560), + [aux_sym_string_literal_token1] = ACTIONS(2560), + [sym_char_literal] = ACTIONS(2560), + [anon_sym_true] = ACTIONS(2562), + [anon_sym_false] = ACTIONS(2562), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2562), + [sym_super] = ACTIONS(2562), + [sym_crate] = ACTIONS(2562), + [sym_metavariable] = ACTIONS(2560), + [sym__raw_string_literal_start] = ACTIONS(2560), + [sym_float_literal] = ACTIONS(2560), }, - [STATE(679)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(679), - [sym_block_comment] = STATE(679), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(660)] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), + [ts_builtin_sym_end] = ACTIONS(2564), + [sym_identifier] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2564), + [anon_sym_macro_rules_BANG] = ACTIONS(2564), + [anon_sym_LPAREN] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2564), + [anon_sym_RBRACE] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_u8] = ACTIONS(2566), + [anon_sym_i8] = ACTIONS(2566), + [anon_sym_u16] = ACTIONS(2566), + [anon_sym_i16] = ACTIONS(2566), + [anon_sym_u32] = ACTIONS(2566), + [anon_sym_i32] = ACTIONS(2566), + [anon_sym_u64] = ACTIONS(2566), + [anon_sym_i64] = ACTIONS(2566), + [anon_sym_u128] = ACTIONS(2566), + [anon_sym_i128] = ACTIONS(2566), + [anon_sym_isize] = ACTIONS(2566), + [anon_sym_usize] = ACTIONS(2566), + [anon_sym_f32] = ACTIONS(2566), + [anon_sym_f64] = ACTIONS(2566), + [anon_sym_bool] = ACTIONS(2566), + [anon_sym_str] = ACTIONS(2566), + [anon_sym_char] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_BANG] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2564), + [anon_sym_PIPE] = ACTIONS(2564), + [anon_sym_LT] = ACTIONS(2564), + [anon_sym_DOT_DOT] = ACTIONS(2564), + [anon_sym_COLON_COLON] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_async] = ACTIONS(2566), + [anon_sym_break] = ACTIONS(2566), + [anon_sym_const] = ACTIONS(2566), + [anon_sym_continue] = ACTIONS(2566), + [anon_sym_default] = ACTIONS(2566), + [anon_sym_enum] = ACTIONS(2566), + [anon_sym_fn] = ACTIONS(2566), + [anon_sym_for] = ACTIONS(2566), + [anon_sym_gen] = ACTIONS(2566), + [anon_sym_if] = ACTIONS(2566), + [anon_sym_impl] = ACTIONS(2566), + [anon_sym_let] = ACTIONS(2566), + [anon_sym_loop] = ACTIONS(2566), + [anon_sym_match] = ACTIONS(2566), + [anon_sym_mod] = ACTIONS(2566), + [anon_sym_pub] = ACTIONS(2566), + [anon_sym_return] = ACTIONS(2566), + [anon_sym_static] = ACTIONS(2566), + [anon_sym_struct] = ACTIONS(2566), + [anon_sym_trait] = ACTIONS(2566), + [anon_sym_type] = ACTIONS(2566), + [anon_sym_union] = ACTIONS(2566), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_use] = ACTIONS(2566), + [anon_sym_while] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(2566), + [anon_sym_yield] = ACTIONS(2566), + [anon_sym_move] = ACTIONS(2566), + [anon_sym_try] = ACTIONS(2566), + [sym_integer_literal] = ACTIONS(2564), + [aux_sym_string_literal_token1] = ACTIONS(2564), + [sym_char_literal] = ACTIONS(2564), + [anon_sym_true] = ACTIONS(2566), + [anon_sym_false] = ACTIONS(2566), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2566), + [sym_super] = ACTIONS(2566), + [sym_crate] = ACTIONS(2566), + [sym_metavariable] = ACTIONS(2564), + [sym__raw_string_literal_start] = ACTIONS(2564), + [sym_float_literal] = ACTIONS(2564), }, - [STATE(680)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(680), - [sym_block_comment] = STATE(680), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2572), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(661)] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), + [ts_builtin_sym_end] = ACTIONS(2568), + [sym_identifier] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2568), + [anon_sym_macro_rules_BANG] = ACTIONS(2568), + [anon_sym_LPAREN] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_RBRACE] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2568), + [anon_sym_u8] = ACTIONS(2570), + [anon_sym_i8] = ACTIONS(2570), + [anon_sym_u16] = ACTIONS(2570), + [anon_sym_i16] = ACTIONS(2570), + [anon_sym_u32] = ACTIONS(2570), + [anon_sym_i32] = ACTIONS(2570), + [anon_sym_u64] = ACTIONS(2570), + [anon_sym_i64] = ACTIONS(2570), + [anon_sym_u128] = ACTIONS(2570), + [anon_sym_i128] = ACTIONS(2570), + [anon_sym_isize] = ACTIONS(2570), + [anon_sym_usize] = ACTIONS(2570), + [anon_sym_f32] = ACTIONS(2570), + [anon_sym_f64] = ACTIONS(2570), + [anon_sym_bool] = ACTIONS(2570), + [anon_sym_str] = ACTIONS(2570), + [anon_sym_char] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2568), + [anon_sym_COLON_COLON] = ACTIONS(2568), + [anon_sym_POUND] = ACTIONS(2568), + [anon_sym_SQUOTE] = ACTIONS(2570), + [anon_sym_async] = ACTIONS(2570), + [anon_sym_break] = ACTIONS(2570), + [anon_sym_const] = ACTIONS(2570), + [anon_sym_continue] = ACTIONS(2570), + [anon_sym_default] = ACTIONS(2570), + [anon_sym_enum] = ACTIONS(2570), + [anon_sym_fn] = ACTIONS(2570), + [anon_sym_for] = ACTIONS(2570), + [anon_sym_gen] = ACTIONS(2570), + [anon_sym_if] = ACTIONS(2570), + [anon_sym_impl] = ACTIONS(2570), + [anon_sym_let] = ACTIONS(2570), + [anon_sym_loop] = ACTIONS(2570), + [anon_sym_match] = ACTIONS(2570), + [anon_sym_mod] = ACTIONS(2570), + [anon_sym_pub] = ACTIONS(2570), + [anon_sym_return] = ACTIONS(2570), + [anon_sym_static] = ACTIONS(2570), + [anon_sym_struct] = ACTIONS(2570), + [anon_sym_trait] = ACTIONS(2570), + [anon_sym_type] = ACTIONS(2570), + [anon_sym_union] = ACTIONS(2570), + [anon_sym_unsafe] = ACTIONS(2570), + [anon_sym_use] = ACTIONS(2570), + [anon_sym_while] = ACTIONS(2570), + [anon_sym_extern] = ACTIONS(2570), + [anon_sym_yield] = ACTIONS(2570), + [anon_sym_move] = ACTIONS(2570), + [anon_sym_try] = ACTIONS(2570), + [sym_integer_literal] = ACTIONS(2568), + [aux_sym_string_literal_token1] = ACTIONS(2568), + [sym_char_literal] = ACTIONS(2568), + [anon_sym_true] = ACTIONS(2570), + [anon_sym_false] = ACTIONS(2570), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2570), + [sym_super] = ACTIONS(2570), + [sym_crate] = ACTIONS(2570), + [sym_metavariable] = ACTIONS(2568), + [sym__raw_string_literal_start] = ACTIONS(2568), + [sym_float_literal] = ACTIONS(2568), }, - [STATE(681)] = { - [sym_line_comment] = STATE(681), - [sym_block_comment] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(2574), - [sym_identifier] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_macro_rules_BANG] = ACTIONS(2574), - [anon_sym_LPAREN] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2574), - [anon_sym_RBRACE] = ACTIONS(2574), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_u8] = ACTIONS(2576), - [anon_sym_i8] = ACTIONS(2576), - [anon_sym_u16] = ACTIONS(2576), - [anon_sym_i16] = ACTIONS(2576), - [anon_sym_u32] = ACTIONS(2576), - [anon_sym_i32] = ACTIONS(2576), - [anon_sym_u64] = ACTIONS(2576), - [anon_sym_i64] = ACTIONS(2576), - [anon_sym_u128] = ACTIONS(2576), - [anon_sym_i128] = ACTIONS(2576), - [anon_sym_isize] = ACTIONS(2576), - [anon_sym_usize] = ACTIONS(2576), - [anon_sym_f32] = ACTIONS(2576), - [anon_sym_f64] = ACTIONS(2576), - [anon_sym_bool] = ACTIONS(2576), - [anon_sym_str] = ACTIONS(2576), - [anon_sym_char] = ACTIONS(2576), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_BANG] = ACTIONS(2574), - [anon_sym_AMP] = ACTIONS(2574), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_DOT_DOT] = ACTIONS(2574), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_SQUOTE] = ACTIONS(2576), - [anon_sym_async] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_const] = ACTIONS(2576), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_default] = ACTIONS(2576), - [anon_sym_enum] = ACTIONS(2576), - [anon_sym_fn] = ACTIONS(2576), - [anon_sym_for] = ACTIONS(2576), - [anon_sym_gen] = ACTIONS(2576), - [anon_sym_if] = ACTIONS(2576), - [anon_sym_impl] = ACTIONS(2576), - [anon_sym_let] = ACTIONS(2576), - [anon_sym_loop] = ACTIONS(2576), - [anon_sym_match] = ACTIONS(2576), - [anon_sym_mod] = ACTIONS(2576), - [anon_sym_pub] = ACTIONS(2576), - [anon_sym_return] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2576), - [anon_sym_struct] = ACTIONS(2576), - [anon_sym_trait] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2576), - [anon_sym_union] = ACTIONS(2576), - [anon_sym_unsafe] = ACTIONS(2576), - [anon_sym_use] = ACTIONS(2576), - [anon_sym_while] = ACTIONS(2576), - [anon_sym_extern] = ACTIONS(2576), - [anon_sym_yield] = ACTIONS(2576), - [anon_sym_move] = ACTIONS(2576), - [anon_sym_try] = ACTIONS(2576), - [sym_integer_literal] = ACTIONS(2574), - [aux_sym_string_literal_token1] = ACTIONS(2574), - [sym_char_literal] = ACTIONS(2574), - [anon_sym_true] = ACTIONS(2576), - [anon_sym_false] = ACTIONS(2576), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2576), - [sym_super] = ACTIONS(2576), - [sym_crate] = ACTIONS(2576), - [sym_metavariable] = ACTIONS(2574), - [sym__raw_string_literal_start] = ACTIONS(2574), - [sym_float_literal] = ACTIONS(2574), + [STATE(662)] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), + [ts_builtin_sym_end] = ACTIONS(2572), + [sym_identifier] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2572), + [anon_sym_macro_rules_BANG] = ACTIONS(2572), + [anon_sym_LPAREN] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_RBRACE] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2572), + [anon_sym_u8] = ACTIONS(2574), + [anon_sym_i8] = ACTIONS(2574), + [anon_sym_u16] = ACTIONS(2574), + [anon_sym_i16] = ACTIONS(2574), + [anon_sym_u32] = ACTIONS(2574), + [anon_sym_i32] = ACTIONS(2574), + [anon_sym_u64] = ACTIONS(2574), + [anon_sym_i64] = ACTIONS(2574), + [anon_sym_u128] = ACTIONS(2574), + [anon_sym_i128] = ACTIONS(2574), + [anon_sym_isize] = ACTIONS(2574), + [anon_sym_usize] = ACTIONS(2574), + [anon_sym_f32] = ACTIONS(2574), + [anon_sym_f64] = ACTIONS(2574), + [anon_sym_bool] = ACTIONS(2574), + [anon_sym_str] = ACTIONS(2574), + [anon_sym_char] = ACTIONS(2574), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(2572), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_DOT_DOT] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2572), + [anon_sym_POUND] = ACTIONS(2572), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_async] = ACTIONS(2574), + [anon_sym_break] = ACTIONS(2574), + [anon_sym_const] = ACTIONS(2574), + [anon_sym_continue] = ACTIONS(2574), + [anon_sym_default] = ACTIONS(2574), + [anon_sym_enum] = ACTIONS(2574), + [anon_sym_fn] = ACTIONS(2574), + [anon_sym_for] = ACTIONS(2574), + [anon_sym_gen] = ACTIONS(2574), + [anon_sym_if] = ACTIONS(2574), + [anon_sym_impl] = ACTIONS(2574), + [anon_sym_let] = ACTIONS(2574), + [anon_sym_loop] = ACTIONS(2574), + [anon_sym_match] = ACTIONS(2574), + [anon_sym_mod] = ACTIONS(2574), + [anon_sym_pub] = ACTIONS(2574), + [anon_sym_return] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2574), + [anon_sym_struct] = ACTIONS(2574), + [anon_sym_trait] = ACTIONS(2574), + [anon_sym_type] = ACTIONS(2574), + [anon_sym_union] = ACTIONS(2574), + [anon_sym_unsafe] = ACTIONS(2574), + [anon_sym_use] = ACTIONS(2574), + [anon_sym_while] = ACTIONS(2574), + [anon_sym_extern] = ACTIONS(2574), + [anon_sym_yield] = ACTIONS(2574), + [anon_sym_move] = ACTIONS(2574), + [anon_sym_try] = ACTIONS(2574), + [sym_integer_literal] = ACTIONS(2572), + [aux_sym_string_literal_token1] = ACTIONS(2572), + [sym_char_literal] = ACTIONS(2572), + [anon_sym_true] = ACTIONS(2574), + [anon_sym_false] = ACTIONS(2574), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2574), + [sym_super] = ACTIONS(2574), + [sym_crate] = ACTIONS(2574), + [sym_metavariable] = ACTIONS(2572), + [sym__raw_string_literal_start] = ACTIONS(2572), + [sym_float_literal] = ACTIONS(2572), }, - [STATE(682)] = { - [sym_line_comment] = STATE(682), - [sym_block_comment] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2578), - [sym_identifier] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_macro_rules_BANG] = ACTIONS(2578), - [anon_sym_LPAREN] = ACTIONS(2578), - [anon_sym_LBRACK] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(2578), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR] = ACTIONS(2578), - [anon_sym_u8] = ACTIONS(2580), - [anon_sym_i8] = ACTIONS(2580), - [anon_sym_u16] = ACTIONS(2580), - [anon_sym_i16] = ACTIONS(2580), - [anon_sym_u32] = ACTIONS(2580), - [anon_sym_i32] = ACTIONS(2580), - [anon_sym_u64] = ACTIONS(2580), - [anon_sym_i64] = ACTIONS(2580), - [anon_sym_u128] = ACTIONS(2580), - [anon_sym_i128] = ACTIONS(2580), - [anon_sym_isize] = ACTIONS(2580), - [anon_sym_usize] = ACTIONS(2580), - [anon_sym_f32] = ACTIONS(2580), - [anon_sym_f64] = ACTIONS(2580), - [anon_sym_bool] = ACTIONS(2580), - [anon_sym_str] = ACTIONS(2580), - [anon_sym_char] = ACTIONS(2580), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_BANG] = ACTIONS(2578), - [anon_sym_AMP] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_LT] = ACTIONS(2578), - [anon_sym_DOT_DOT] = ACTIONS(2578), - [anon_sym_COLON_COLON] = ACTIONS(2578), - [anon_sym_POUND] = ACTIONS(2578), - [anon_sym_SQUOTE] = ACTIONS(2580), - [anon_sym_async] = ACTIONS(2580), - [anon_sym_break] = ACTIONS(2580), - [anon_sym_const] = ACTIONS(2580), - [anon_sym_continue] = ACTIONS(2580), - [anon_sym_default] = ACTIONS(2580), - [anon_sym_enum] = ACTIONS(2580), - [anon_sym_fn] = ACTIONS(2580), - [anon_sym_for] = ACTIONS(2580), - [anon_sym_gen] = ACTIONS(2580), - [anon_sym_if] = ACTIONS(2580), - [anon_sym_impl] = ACTIONS(2580), - [anon_sym_let] = ACTIONS(2580), - [anon_sym_loop] = ACTIONS(2580), - [anon_sym_match] = ACTIONS(2580), - [anon_sym_mod] = ACTIONS(2580), - [anon_sym_pub] = ACTIONS(2580), - [anon_sym_return] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2580), - [anon_sym_struct] = ACTIONS(2580), - [anon_sym_trait] = ACTIONS(2580), - [anon_sym_type] = ACTIONS(2580), - [anon_sym_union] = ACTIONS(2580), - [anon_sym_unsafe] = ACTIONS(2580), - [anon_sym_use] = ACTIONS(2580), - [anon_sym_while] = ACTIONS(2580), - [anon_sym_extern] = ACTIONS(2580), - [anon_sym_yield] = ACTIONS(2580), - [anon_sym_move] = ACTIONS(2580), - [anon_sym_try] = ACTIONS(2580), - [sym_integer_literal] = ACTIONS(2578), - [aux_sym_string_literal_token1] = ACTIONS(2578), - [sym_char_literal] = ACTIONS(2578), - [anon_sym_true] = ACTIONS(2580), - [anon_sym_false] = ACTIONS(2580), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2580), - [sym_super] = ACTIONS(2580), - [sym_crate] = ACTIONS(2580), - [sym_metavariable] = ACTIONS(2578), - [sym__raw_string_literal_start] = ACTIONS(2578), - [sym_float_literal] = ACTIONS(2578), + [STATE(663)] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), + [ts_builtin_sym_end] = ACTIONS(2576), + [sym_identifier] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_macro_rules_BANG] = ACTIONS(2576), + [anon_sym_LPAREN] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(2576), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2576), + [anon_sym_u8] = ACTIONS(2578), + [anon_sym_i8] = ACTIONS(2578), + [anon_sym_u16] = ACTIONS(2578), + [anon_sym_i16] = ACTIONS(2578), + [anon_sym_u32] = ACTIONS(2578), + [anon_sym_i32] = ACTIONS(2578), + [anon_sym_u64] = ACTIONS(2578), + [anon_sym_i64] = ACTIONS(2578), + [anon_sym_u128] = ACTIONS(2578), + [anon_sym_i128] = ACTIONS(2578), + [anon_sym_isize] = ACTIONS(2578), + [anon_sym_usize] = ACTIONS(2578), + [anon_sym_f32] = ACTIONS(2578), + [anon_sym_f64] = ACTIONS(2578), + [anon_sym_bool] = ACTIONS(2578), + [anon_sym_str] = ACTIONS(2578), + [anon_sym_char] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_BANG] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_LT] = ACTIONS(2576), + [anon_sym_DOT_DOT] = ACTIONS(2576), + [anon_sym_COLON_COLON] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(2576), + [anon_sym_SQUOTE] = ACTIONS(2578), + [anon_sym_async] = ACTIONS(2578), + [anon_sym_break] = ACTIONS(2578), + [anon_sym_const] = ACTIONS(2578), + [anon_sym_continue] = ACTIONS(2578), + [anon_sym_default] = ACTIONS(2578), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_fn] = ACTIONS(2578), + [anon_sym_for] = ACTIONS(2578), + [anon_sym_gen] = ACTIONS(2578), + [anon_sym_if] = ACTIONS(2578), + [anon_sym_impl] = ACTIONS(2578), + [anon_sym_let] = ACTIONS(2578), + [anon_sym_loop] = ACTIONS(2578), + [anon_sym_match] = ACTIONS(2578), + [anon_sym_mod] = ACTIONS(2578), + [anon_sym_pub] = ACTIONS(2578), + [anon_sym_return] = ACTIONS(2578), + [anon_sym_static] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(2578), + [anon_sym_trait] = ACTIONS(2578), + [anon_sym_type] = ACTIONS(2578), + [anon_sym_union] = ACTIONS(2578), + [anon_sym_unsafe] = ACTIONS(2578), + [anon_sym_use] = ACTIONS(2578), + [anon_sym_while] = ACTIONS(2578), + [anon_sym_extern] = ACTIONS(2578), + [anon_sym_yield] = ACTIONS(2578), + [anon_sym_move] = ACTIONS(2578), + [anon_sym_try] = ACTIONS(2578), + [sym_integer_literal] = ACTIONS(2576), + [aux_sym_string_literal_token1] = ACTIONS(2576), + [sym_char_literal] = ACTIONS(2576), + [anon_sym_true] = ACTIONS(2578), + [anon_sym_false] = ACTIONS(2578), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2578), + [sym_super] = ACTIONS(2578), + [sym_crate] = ACTIONS(2578), + [sym_metavariable] = ACTIONS(2576), + [sym__raw_string_literal_start] = ACTIONS(2576), + [sym_float_literal] = ACTIONS(2576), }, - [STATE(683)] = { - [sym_line_comment] = STATE(683), - [sym_block_comment] = STATE(683), - [ts_builtin_sym_end] = ACTIONS(2582), - [sym_identifier] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2582), - [anon_sym_macro_rules_BANG] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_RBRACE] = ACTIONS(2582), - [anon_sym_STAR] = ACTIONS(2582), - [anon_sym_u8] = ACTIONS(2584), - [anon_sym_i8] = ACTIONS(2584), - [anon_sym_u16] = ACTIONS(2584), - [anon_sym_i16] = ACTIONS(2584), - [anon_sym_u32] = ACTIONS(2584), - [anon_sym_i32] = ACTIONS(2584), - [anon_sym_u64] = ACTIONS(2584), - [anon_sym_i64] = ACTIONS(2584), - [anon_sym_u128] = ACTIONS(2584), - [anon_sym_i128] = ACTIONS(2584), - [anon_sym_isize] = ACTIONS(2584), - [anon_sym_usize] = ACTIONS(2584), - [anon_sym_f32] = ACTIONS(2584), - [anon_sym_f64] = ACTIONS(2584), - [anon_sym_bool] = ACTIONS(2584), - [anon_sym_str] = ACTIONS(2584), - [anon_sym_char] = ACTIONS(2584), - [anon_sym_DASH] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2582), - [anon_sym_AMP] = ACTIONS(2582), - [anon_sym_PIPE] = ACTIONS(2582), - [anon_sym_LT] = ACTIONS(2582), - [anon_sym_DOT_DOT] = ACTIONS(2582), - [anon_sym_COLON_COLON] = ACTIONS(2582), - [anon_sym_POUND] = ACTIONS(2582), - [anon_sym_SQUOTE] = ACTIONS(2584), - [anon_sym_async] = ACTIONS(2584), - [anon_sym_break] = ACTIONS(2584), - [anon_sym_const] = ACTIONS(2584), - [anon_sym_continue] = ACTIONS(2584), - [anon_sym_default] = ACTIONS(2584), - [anon_sym_enum] = ACTIONS(2584), - [anon_sym_fn] = ACTIONS(2584), - [anon_sym_for] = ACTIONS(2584), - [anon_sym_gen] = ACTIONS(2584), - [anon_sym_if] = ACTIONS(2584), - [anon_sym_impl] = ACTIONS(2584), - [anon_sym_let] = ACTIONS(2584), - [anon_sym_loop] = ACTIONS(2584), - [anon_sym_match] = ACTIONS(2584), - [anon_sym_mod] = ACTIONS(2584), - [anon_sym_pub] = ACTIONS(2584), - [anon_sym_return] = ACTIONS(2584), - [anon_sym_static] = ACTIONS(2584), - [anon_sym_struct] = ACTIONS(2584), - [anon_sym_trait] = ACTIONS(2584), - [anon_sym_type] = ACTIONS(2584), - [anon_sym_union] = ACTIONS(2584), - [anon_sym_unsafe] = ACTIONS(2584), - [anon_sym_use] = ACTIONS(2584), - [anon_sym_while] = ACTIONS(2584), - [anon_sym_extern] = ACTIONS(2584), - [anon_sym_yield] = ACTIONS(2584), - [anon_sym_move] = ACTIONS(2584), - [anon_sym_try] = ACTIONS(2584), - [sym_integer_literal] = ACTIONS(2582), - [aux_sym_string_literal_token1] = ACTIONS(2582), - [sym_char_literal] = ACTIONS(2582), - [anon_sym_true] = ACTIONS(2584), - [anon_sym_false] = ACTIONS(2584), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2584), - [sym_super] = ACTIONS(2584), - [sym_crate] = ACTIONS(2584), - [sym_metavariable] = ACTIONS(2582), - [sym__raw_string_literal_start] = ACTIONS(2582), - [sym_float_literal] = ACTIONS(2582), + [STATE(664)] = { + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), + [ts_builtin_sym_end] = ACTIONS(2580), + [sym_identifier] = ACTIONS(2582), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_macro_rules_BANG] = ACTIONS(2580), + [anon_sym_LPAREN] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_RBRACE] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(2580), + [anon_sym_u8] = ACTIONS(2582), + [anon_sym_i8] = ACTIONS(2582), + [anon_sym_u16] = ACTIONS(2582), + [anon_sym_i16] = ACTIONS(2582), + [anon_sym_u32] = ACTIONS(2582), + [anon_sym_i32] = ACTIONS(2582), + [anon_sym_u64] = ACTIONS(2582), + [anon_sym_i64] = ACTIONS(2582), + [anon_sym_u128] = ACTIONS(2582), + [anon_sym_i128] = ACTIONS(2582), + [anon_sym_isize] = ACTIONS(2582), + [anon_sym_usize] = ACTIONS(2582), + [anon_sym_f32] = ACTIONS(2582), + [anon_sym_f64] = ACTIONS(2582), + [anon_sym_bool] = ACTIONS(2582), + [anon_sym_str] = ACTIONS(2582), + [anon_sym_char] = ACTIONS(2582), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_DOT_DOT] = ACTIONS(2580), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_POUND] = ACTIONS(2580), + [anon_sym_SQUOTE] = ACTIONS(2582), + [anon_sym_async] = ACTIONS(2582), + [anon_sym_break] = ACTIONS(2582), + [anon_sym_const] = ACTIONS(2582), + [anon_sym_continue] = ACTIONS(2582), + [anon_sym_default] = ACTIONS(2582), + [anon_sym_enum] = ACTIONS(2582), + [anon_sym_fn] = ACTIONS(2582), + [anon_sym_for] = ACTIONS(2582), + [anon_sym_gen] = ACTIONS(2582), + [anon_sym_if] = ACTIONS(2582), + [anon_sym_impl] = ACTIONS(2582), + [anon_sym_let] = ACTIONS(2582), + [anon_sym_loop] = ACTIONS(2582), + [anon_sym_match] = ACTIONS(2582), + [anon_sym_mod] = ACTIONS(2582), + [anon_sym_pub] = ACTIONS(2582), + [anon_sym_return] = ACTIONS(2582), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_trait] = ACTIONS(2582), + [anon_sym_type] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2582), + [anon_sym_unsafe] = ACTIONS(2582), + [anon_sym_use] = ACTIONS(2582), + [anon_sym_while] = ACTIONS(2582), + [anon_sym_extern] = ACTIONS(2582), + [anon_sym_yield] = ACTIONS(2582), + [anon_sym_move] = ACTIONS(2582), + [anon_sym_try] = ACTIONS(2582), + [sym_integer_literal] = ACTIONS(2580), + [aux_sym_string_literal_token1] = ACTIONS(2580), + [sym_char_literal] = ACTIONS(2580), + [anon_sym_true] = ACTIONS(2582), + [anon_sym_false] = ACTIONS(2582), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2582), + [sym_super] = ACTIONS(2582), + [sym_crate] = ACTIONS(2582), + [sym_metavariable] = ACTIONS(2580), + [sym__raw_string_literal_start] = ACTIONS(2580), + [sym_float_literal] = ACTIONS(2580), }, - [STATE(684)] = { - [sym_line_comment] = STATE(684), - [sym_block_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(2586), - [sym_identifier] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2586), - [anon_sym_macro_rules_BANG] = ACTIONS(2586), - [anon_sym_LPAREN] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2586), - [anon_sym_RBRACE] = ACTIONS(2586), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_u8] = ACTIONS(2588), - [anon_sym_i8] = ACTIONS(2588), - [anon_sym_u16] = ACTIONS(2588), - [anon_sym_i16] = ACTIONS(2588), - [anon_sym_u32] = ACTIONS(2588), - [anon_sym_i32] = ACTIONS(2588), - [anon_sym_u64] = ACTIONS(2588), - [anon_sym_i64] = ACTIONS(2588), - [anon_sym_u128] = ACTIONS(2588), - [anon_sym_i128] = ACTIONS(2588), - [anon_sym_isize] = ACTIONS(2588), - [anon_sym_usize] = ACTIONS(2588), - [anon_sym_f32] = ACTIONS(2588), - [anon_sym_f64] = ACTIONS(2588), - [anon_sym_bool] = ACTIONS(2588), - [anon_sym_str] = ACTIONS(2588), - [anon_sym_char] = ACTIONS(2588), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2586), - [anon_sym_AMP] = ACTIONS(2586), - [anon_sym_PIPE] = ACTIONS(2586), - [anon_sym_LT] = ACTIONS(2586), - [anon_sym_DOT_DOT] = ACTIONS(2586), - [anon_sym_COLON_COLON] = ACTIONS(2586), - [anon_sym_POUND] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2588), - [anon_sym_async] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_default] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_fn] = ACTIONS(2588), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_gen] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_impl] = ACTIONS(2588), - [anon_sym_let] = ACTIONS(2588), - [anon_sym_loop] = ACTIONS(2588), - [anon_sym_match] = ACTIONS(2588), - [anon_sym_mod] = ACTIONS(2588), - [anon_sym_pub] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_trait] = ACTIONS(2588), - [anon_sym_type] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [anon_sym_unsafe] = ACTIONS(2588), - [anon_sym_use] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym_yield] = ACTIONS(2588), - [anon_sym_move] = ACTIONS(2588), - [anon_sym_try] = ACTIONS(2588), - [sym_integer_literal] = ACTIONS(2586), - [aux_sym_string_literal_token1] = ACTIONS(2586), - [sym_char_literal] = ACTIONS(2586), - [anon_sym_true] = ACTIONS(2588), - [anon_sym_false] = ACTIONS(2588), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2588), - [sym_super] = ACTIONS(2588), - [sym_crate] = ACTIONS(2588), - [sym_metavariable] = ACTIONS(2586), - [sym__raw_string_literal_start] = ACTIONS(2586), - [sym_float_literal] = ACTIONS(2586), + [STATE(665)] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), + [ts_builtin_sym_end] = ACTIONS(2584), + [sym_identifier] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_macro_rules_BANG] = ACTIONS(2584), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(2584), + [anon_sym_u8] = ACTIONS(2586), + [anon_sym_i8] = ACTIONS(2586), + [anon_sym_u16] = ACTIONS(2586), + [anon_sym_i16] = ACTIONS(2586), + [anon_sym_u32] = ACTIONS(2586), + [anon_sym_i32] = ACTIONS(2586), + [anon_sym_u64] = ACTIONS(2586), + [anon_sym_i64] = ACTIONS(2586), + [anon_sym_u128] = ACTIONS(2586), + [anon_sym_i128] = ACTIONS(2586), + [anon_sym_isize] = ACTIONS(2586), + [anon_sym_usize] = ACTIONS(2586), + [anon_sym_f32] = ACTIONS(2586), + [anon_sym_f64] = ACTIONS(2586), + [anon_sym_bool] = ACTIONS(2586), + [anon_sym_str] = ACTIONS(2586), + [anon_sym_char] = ACTIONS(2586), + [anon_sym_DASH] = ACTIONS(2584), + [anon_sym_BANG] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_LT] = ACTIONS(2584), + [anon_sym_DOT_DOT] = ACTIONS(2584), + [anon_sym_COLON_COLON] = ACTIONS(2584), + [anon_sym_POUND] = ACTIONS(2584), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_async] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_continue] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_fn] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2586), + [anon_sym_gen] = ACTIONS(2586), + [anon_sym_if] = ACTIONS(2586), + [anon_sym_impl] = ACTIONS(2586), + [anon_sym_let] = ACTIONS(2586), + [anon_sym_loop] = ACTIONS(2586), + [anon_sym_match] = ACTIONS(2586), + [anon_sym_mod] = ACTIONS(2586), + [anon_sym_pub] = ACTIONS(2586), + [anon_sym_return] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_trait] = ACTIONS(2586), + [anon_sym_type] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [anon_sym_unsafe] = ACTIONS(2586), + [anon_sym_use] = ACTIONS(2586), + [anon_sym_while] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym_yield] = ACTIONS(2586), + [anon_sym_move] = ACTIONS(2586), + [anon_sym_try] = ACTIONS(2586), + [sym_integer_literal] = ACTIONS(2584), + [aux_sym_string_literal_token1] = ACTIONS(2584), + [sym_char_literal] = ACTIONS(2584), + [anon_sym_true] = ACTIONS(2586), + [anon_sym_false] = ACTIONS(2586), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2586), + [sym_super] = ACTIONS(2586), + [sym_crate] = ACTIONS(2586), + [sym_metavariable] = ACTIONS(2584), + [sym__raw_string_literal_start] = ACTIONS(2584), + [sym_float_literal] = ACTIONS(2584), }, - [STATE(685)] = { - [sym_line_comment] = STATE(685), - [sym_block_comment] = STATE(685), - [ts_builtin_sym_end] = ACTIONS(2590), - [sym_identifier] = ACTIONS(2592), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_macro_rules_BANG] = ACTIONS(2590), - [anon_sym_LPAREN] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_RBRACE] = ACTIONS(2590), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_u8] = ACTIONS(2592), - [anon_sym_i8] = ACTIONS(2592), - [anon_sym_u16] = ACTIONS(2592), - [anon_sym_i16] = ACTIONS(2592), - [anon_sym_u32] = ACTIONS(2592), - [anon_sym_i32] = ACTIONS(2592), - [anon_sym_u64] = ACTIONS(2592), - [anon_sym_i64] = ACTIONS(2592), - [anon_sym_u128] = ACTIONS(2592), - [anon_sym_i128] = ACTIONS(2592), - [anon_sym_isize] = ACTIONS(2592), - [anon_sym_usize] = ACTIONS(2592), - [anon_sym_f32] = ACTIONS(2592), - [anon_sym_f64] = ACTIONS(2592), - [anon_sym_bool] = ACTIONS(2592), - [anon_sym_str] = ACTIONS(2592), - [anon_sym_char] = ACTIONS(2592), - [anon_sym_DASH] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2590), - [anon_sym_PIPE] = ACTIONS(2590), - [anon_sym_LT] = ACTIONS(2590), - [anon_sym_DOT_DOT] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_POUND] = ACTIONS(2590), - [anon_sym_SQUOTE] = ACTIONS(2592), - [anon_sym_async] = ACTIONS(2592), - [anon_sym_break] = ACTIONS(2592), - [anon_sym_const] = ACTIONS(2592), - [anon_sym_continue] = ACTIONS(2592), - [anon_sym_default] = ACTIONS(2592), - [anon_sym_enum] = ACTIONS(2592), - [anon_sym_fn] = ACTIONS(2592), - [anon_sym_for] = ACTIONS(2592), - [anon_sym_gen] = ACTIONS(2592), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_impl] = ACTIONS(2592), - [anon_sym_let] = ACTIONS(2592), - [anon_sym_loop] = ACTIONS(2592), - [anon_sym_match] = ACTIONS(2592), - [anon_sym_mod] = ACTIONS(2592), - [anon_sym_pub] = ACTIONS(2592), - [anon_sym_return] = ACTIONS(2592), - [anon_sym_static] = ACTIONS(2592), - [anon_sym_struct] = ACTIONS(2592), - [anon_sym_trait] = ACTIONS(2592), - [anon_sym_type] = ACTIONS(2592), - [anon_sym_union] = ACTIONS(2592), - [anon_sym_unsafe] = ACTIONS(2592), - [anon_sym_use] = ACTIONS(2592), - [anon_sym_while] = ACTIONS(2592), - [anon_sym_extern] = ACTIONS(2592), - [anon_sym_yield] = ACTIONS(2592), - [anon_sym_move] = ACTIONS(2592), - [anon_sym_try] = ACTIONS(2592), - [sym_integer_literal] = ACTIONS(2590), - [aux_sym_string_literal_token1] = ACTIONS(2590), - [sym_char_literal] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2592), - [anon_sym_false] = ACTIONS(2592), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2592), - [sym_super] = ACTIONS(2592), - [sym_crate] = ACTIONS(2592), - [sym_metavariable] = ACTIONS(2590), - [sym__raw_string_literal_start] = ACTIONS(2590), - [sym_float_literal] = ACTIONS(2590), + [STATE(666)] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), + [ts_builtin_sym_end] = ACTIONS(2588), + [sym_identifier] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_macro_rules_BANG] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_u8] = ACTIONS(2590), + [anon_sym_i8] = ACTIONS(2590), + [anon_sym_u16] = ACTIONS(2590), + [anon_sym_i16] = ACTIONS(2590), + [anon_sym_u32] = ACTIONS(2590), + [anon_sym_i32] = ACTIONS(2590), + [anon_sym_u64] = ACTIONS(2590), + [anon_sym_i64] = ACTIONS(2590), + [anon_sym_u128] = ACTIONS(2590), + [anon_sym_i128] = ACTIONS(2590), + [anon_sym_isize] = ACTIONS(2590), + [anon_sym_usize] = ACTIONS(2590), + [anon_sym_f32] = ACTIONS(2590), + [anon_sym_f64] = ACTIONS(2590), + [anon_sym_bool] = ACTIONS(2590), + [anon_sym_str] = ACTIONS(2590), + [anon_sym_char] = ACTIONS(2590), + [anon_sym_DASH] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON_COLON] = ACTIONS(2588), + [anon_sym_POUND] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(2590), + [anon_sym_async] = ACTIONS(2590), + [anon_sym_break] = ACTIONS(2590), + [anon_sym_const] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2590), + [anon_sym_default] = ACTIONS(2590), + [anon_sym_enum] = ACTIONS(2590), + [anon_sym_fn] = ACTIONS(2590), + [anon_sym_for] = ACTIONS(2590), + [anon_sym_gen] = ACTIONS(2590), + [anon_sym_if] = ACTIONS(2590), + [anon_sym_impl] = ACTIONS(2590), + [anon_sym_let] = ACTIONS(2590), + [anon_sym_loop] = ACTIONS(2590), + [anon_sym_match] = ACTIONS(2590), + [anon_sym_mod] = ACTIONS(2590), + [anon_sym_pub] = ACTIONS(2590), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_struct] = ACTIONS(2590), + [anon_sym_trait] = ACTIONS(2590), + [anon_sym_type] = ACTIONS(2590), + [anon_sym_union] = ACTIONS(2590), + [anon_sym_unsafe] = ACTIONS(2590), + [anon_sym_use] = ACTIONS(2590), + [anon_sym_while] = ACTIONS(2590), + [anon_sym_extern] = ACTIONS(2590), + [anon_sym_yield] = ACTIONS(2590), + [anon_sym_move] = ACTIONS(2590), + [anon_sym_try] = ACTIONS(2590), + [sym_integer_literal] = ACTIONS(2588), + [aux_sym_string_literal_token1] = ACTIONS(2588), + [sym_char_literal] = ACTIONS(2588), + [anon_sym_true] = ACTIONS(2590), + [anon_sym_false] = ACTIONS(2590), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2590), + [sym_super] = ACTIONS(2590), + [sym_crate] = ACTIONS(2590), + [sym_metavariable] = ACTIONS(2588), + [sym__raw_string_literal_start] = ACTIONS(2588), + [sym_float_literal] = ACTIONS(2588), }, - [STATE(686)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(686), - [sym_block_comment] = STATE(686), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(667)] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), + [ts_builtin_sym_end] = ACTIONS(2592), + [sym_identifier] = ACTIONS(2594), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym_macro_rules_BANG] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_u8] = ACTIONS(2594), + [anon_sym_i8] = ACTIONS(2594), + [anon_sym_u16] = ACTIONS(2594), + [anon_sym_i16] = ACTIONS(2594), + [anon_sym_u32] = ACTIONS(2594), + [anon_sym_i32] = ACTIONS(2594), + [anon_sym_u64] = ACTIONS(2594), + [anon_sym_i64] = ACTIONS(2594), + [anon_sym_u128] = ACTIONS(2594), + [anon_sym_i128] = ACTIONS(2594), + [anon_sym_isize] = ACTIONS(2594), + [anon_sym_usize] = ACTIONS(2594), + [anon_sym_f32] = ACTIONS(2594), + [anon_sym_f64] = ACTIONS(2594), + [anon_sym_bool] = ACTIONS(2594), + [anon_sym_str] = ACTIONS(2594), + [anon_sym_char] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2592), + [anon_sym_DOT_DOT] = ACTIONS(2592), + [anon_sym_COLON_COLON] = ACTIONS(2592), + [anon_sym_POUND] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2594), + [anon_sym_async] = ACTIONS(2594), + [anon_sym_break] = ACTIONS(2594), + [anon_sym_const] = ACTIONS(2594), + [anon_sym_continue] = ACTIONS(2594), + [anon_sym_default] = ACTIONS(2594), + [anon_sym_enum] = ACTIONS(2594), + [anon_sym_fn] = ACTIONS(2594), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_gen] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_impl] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_loop] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_mod] = ACTIONS(2594), + [anon_sym_pub] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_static] = ACTIONS(2594), + [anon_sym_struct] = ACTIONS(2594), + [anon_sym_trait] = ACTIONS(2594), + [anon_sym_type] = ACTIONS(2594), + [anon_sym_union] = ACTIONS(2594), + [anon_sym_unsafe] = ACTIONS(2594), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_extern] = ACTIONS(2594), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_move] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [sym_integer_literal] = ACTIONS(2592), + [aux_sym_string_literal_token1] = ACTIONS(2592), + [sym_char_literal] = ACTIONS(2592), + [anon_sym_true] = ACTIONS(2594), + [anon_sym_false] = ACTIONS(2594), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2594), + [sym_super] = ACTIONS(2594), + [sym_crate] = ACTIONS(2594), + [sym_metavariable] = ACTIONS(2592), + [sym__raw_string_literal_start] = ACTIONS(2592), + [sym_float_literal] = ACTIONS(2592), }, - [STATE(687)] = { - [sym_line_comment] = STATE(687), - [sym_block_comment] = STATE(687), + [STATE(668)] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), [ts_builtin_sym_end] = ACTIONS(2596), [sym_identifier] = ACTIONS(2598), [anon_sym_SEMI] = ACTIONS(2596), @@ -87113,9 +87381,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2596), [sym_float_literal] = ACTIONS(2596), }, - [STATE(688)] = { - [sym_line_comment] = STATE(688), - [sym_block_comment] = STATE(688), + [STATE(669)] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), [ts_builtin_sym_end] = ACTIONS(2600), [sym_identifier] = ACTIONS(2602), [anon_sym_SEMI] = ACTIONS(2600), @@ -87194,9 +87462,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2600), [sym_float_literal] = ACTIONS(2600), }, - [STATE(689)] = { - [sym_line_comment] = STATE(689), - [sym_block_comment] = STATE(689), + [STATE(670)] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), [ts_builtin_sym_end] = ACTIONS(2604), [sym_identifier] = ACTIONS(2606), [anon_sym_SEMI] = ACTIONS(2604), @@ -87275,9 +87543,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2604), [sym_float_literal] = ACTIONS(2604), }, - [STATE(690)] = { - [sym_line_comment] = STATE(690), - [sym_block_comment] = STATE(690), + [STATE(671)] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), [ts_builtin_sym_end] = ACTIONS(2608), [sym_identifier] = ACTIONS(2610), [anon_sym_SEMI] = ACTIONS(2608), @@ -87356,9 +87624,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2608), [sym_float_literal] = ACTIONS(2608), }, - [STATE(691)] = { - [sym_line_comment] = STATE(691), - [sym_block_comment] = STATE(691), + [STATE(672)] = { + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), [ts_builtin_sym_end] = ACTIONS(2612), [sym_identifier] = ACTIONS(2614), [anon_sym_SEMI] = ACTIONS(2612), @@ -87437,9 +87705,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2612), [sym_float_literal] = ACTIONS(2612), }, - [STATE(692)] = { - [sym_line_comment] = STATE(692), - [sym_block_comment] = STATE(692), + [STATE(673)] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), [ts_builtin_sym_end] = ACTIONS(2616), [sym_identifier] = ACTIONS(2618), [anon_sym_SEMI] = ACTIONS(2616), @@ -87518,90 +87786,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2616), [sym_float_literal] = ACTIONS(2616), }, - [STATE(693)] = { - [sym_line_comment] = STATE(693), - [sym_block_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(1519), - [sym_identifier] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_macro_rules_BANG] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_u8] = ACTIONS(1521), - [anon_sym_i8] = ACTIONS(1521), - [anon_sym_u16] = ACTIONS(1521), - [anon_sym_i16] = ACTIONS(1521), - [anon_sym_u32] = ACTIONS(1521), - [anon_sym_i32] = ACTIONS(1521), - [anon_sym_u64] = ACTIONS(1521), - [anon_sym_i64] = ACTIONS(1521), - [anon_sym_u128] = ACTIONS(1521), - [anon_sym_i128] = ACTIONS(1521), - [anon_sym_isize] = ACTIONS(1521), - [anon_sym_usize] = ACTIONS(1521), - [anon_sym_f32] = ACTIONS(1521), - [anon_sym_f64] = ACTIONS(1521), - [anon_sym_bool] = ACTIONS(1521), - [anon_sym_str] = ACTIONS(1521), - [anon_sym_char] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_gen] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_impl] = ACTIONS(1521), - [anon_sym_let] = ACTIONS(1521), - [anon_sym_loop] = ACTIONS(1521), - [anon_sym_match] = ACTIONS(1521), - [anon_sym_mod] = ACTIONS(1521), - [anon_sym_pub] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_struct] = ACTIONS(1521), - [anon_sym_trait] = ACTIONS(1521), - [anon_sym_type] = ACTIONS(1521), - [anon_sym_union] = ACTIONS(1521), - [anon_sym_unsafe] = ACTIONS(1521), - [anon_sym_use] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1521), - [anon_sym_yield] = ACTIONS(1521), - [anon_sym_move] = ACTIONS(1521), - [anon_sym_try] = ACTIONS(1521), - [sym_integer_literal] = ACTIONS(1519), - [aux_sym_string_literal_token1] = ACTIONS(1519), - [sym_char_literal] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1521), - [sym_super] = ACTIONS(1521), - [sym_crate] = ACTIONS(1521), - [sym_metavariable] = ACTIONS(1519), - [sym__raw_string_literal_start] = ACTIONS(1519), - [sym_float_literal] = ACTIONS(1519), - }, - [STATE(694)] = { - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), + [STATE(674)] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), [ts_builtin_sym_end] = ACTIONS(2620), [sym_identifier] = ACTIONS(2622), [anon_sym_SEMI] = ACTIONS(2620), @@ -87680,9 +87867,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2620), [sym_float_literal] = ACTIONS(2620), }, - [STATE(695)] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), + [STATE(675)] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), [ts_builtin_sym_end] = ACTIONS(2624), [sym_identifier] = ACTIONS(2626), [anon_sym_SEMI] = ACTIONS(2624), @@ -87761,9 +87948,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2624), [sym_float_literal] = ACTIONS(2624), }, - [STATE(696)] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), + [STATE(676)] = { + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), [ts_builtin_sym_end] = ACTIONS(2628), [sym_identifier] = ACTIONS(2630), [anon_sym_SEMI] = ACTIONS(2628), @@ -87842,9 +88029,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2628), [sym_float_literal] = ACTIONS(2628), }, - [STATE(697)] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), + [STATE(677)] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), [ts_builtin_sym_end] = ACTIONS(2632), [sym_identifier] = ACTIONS(2634), [anon_sym_SEMI] = ACTIONS(2632), @@ -87923,9 +88110,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2632), [sym_float_literal] = ACTIONS(2632), }, - [STATE(698)] = { - [sym_line_comment] = STATE(698), - [sym_block_comment] = STATE(698), + [STATE(678)] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), + [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_STAR] = 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(1455), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1455), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1455), + [anon_sym_SQUOTE] = 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), + }, + [STATE(679)] = { + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), [ts_builtin_sym_end] = ACTIONS(2636), [sym_identifier] = ACTIONS(2638), [anon_sym_SEMI] = ACTIONS(2636), @@ -88004,9 +88272,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2636), [sym_float_literal] = ACTIONS(2636), }, - [STATE(699)] = { - [sym_line_comment] = STATE(699), - [sym_block_comment] = STATE(699), + [STATE(680)] = { + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), [ts_builtin_sym_end] = ACTIONS(2640), [sym_identifier] = ACTIONS(2642), [anon_sym_SEMI] = ACTIONS(2640), @@ -88085,9 +88353,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2640), [sym_float_literal] = ACTIONS(2640), }, - [STATE(700)] = { - [sym_line_comment] = STATE(700), - [sym_block_comment] = STATE(700), + [STATE(681)] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), [ts_builtin_sym_end] = ACTIONS(2644), [sym_identifier] = ACTIONS(2646), [anon_sym_SEMI] = ACTIONS(2644), @@ -88166,9 +88434,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2644), [sym_float_literal] = ACTIONS(2644), }, - [STATE(701)] = { - [sym_line_comment] = STATE(701), - [sym_block_comment] = STATE(701), + [STATE(682)] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), [ts_builtin_sym_end] = ACTIONS(2648), [sym_identifier] = ACTIONS(2650), [anon_sym_SEMI] = ACTIONS(2648), @@ -88247,9 +88515,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2648), [sym_float_literal] = ACTIONS(2648), }, - [STATE(702)] = { - [sym_line_comment] = STATE(702), - [sym_block_comment] = STATE(702), + [STATE(683)] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), [ts_builtin_sym_end] = ACTIONS(2652), [sym_identifier] = ACTIONS(2654), [anon_sym_SEMI] = ACTIONS(2652), @@ -88328,9 +88596,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2652), [sym_float_literal] = ACTIONS(2652), }, - [STATE(703)] = { - [sym_line_comment] = STATE(703), - [sym_block_comment] = STATE(703), + [STATE(684)] = { + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), [ts_builtin_sym_end] = ACTIONS(2656), [sym_identifier] = ACTIONS(2658), [anon_sym_SEMI] = ACTIONS(2656), @@ -88409,9 +88677,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2656), [sym_float_literal] = ACTIONS(2656), }, - [STATE(704)] = { - [sym_line_comment] = STATE(704), - [sym_block_comment] = STATE(704), + [STATE(685)] = { + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), [ts_builtin_sym_end] = ACTIONS(2660), [sym_identifier] = ACTIONS(2662), [anon_sym_SEMI] = ACTIONS(2660), @@ -88490,9 +88758,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2660), [sym_float_literal] = ACTIONS(2660), }, - [STATE(705)] = { - [sym_line_comment] = STATE(705), - [sym_block_comment] = STATE(705), + [STATE(686)] = { + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), [ts_builtin_sym_end] = ACTIONS(2664), [sym_identifier] = ACTIONS(2666), [anon_sym_SEMI] = ACTIONS(2664), @@ -88571,9 +88839,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2664), [sym_float_literal] = ACTIONS(2664), }, - [STATE(706)] = { - [sym_line_comment] = STATE(706), - [sym_block_comment] = STATE(706), + [STATE(687)] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), [ts_builtin_sym_end] = ACTIONS(2668), [sym_identifier] = ACTIONS(2670), [anon_sym_SEMI] = ACTIONS(2668), @@ -88652,9 +88920,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2668), [sym_float_literal] = ACTIONS(2668), }, - [STATE(707)] = { - [sym_line_comment] = STATE(707), - [sym_block_comment] = STATE(707), + [STATE(688)] = { + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), [ts_builtin_sym_end] = ACTIONS(2672), [sym_identifier] = ACTIONS(2674), [anon_sym_SEMI] = ACTIONS(2672), @@ -88733,9 +89001,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2672), [sym_float_literal] = ACTIONS(2672), }, - [STATE(708)] = { - [sym_line_comment] = STATE(708), - [sym_block_comment] = STATE(708), + [STATE(689)] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), [ts_builtin_sym_end] = ACTIONS(2676), [sym_identifier] = ACTIONS(2678), [anon_sym_SEMI] = ACTIONS(2676), @@ -88814,9 +89082,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2676), [sym_float_literal] = ACTIONS(2676), }, - [STATE(709)] = { - [sym_line_comment] = STATE(709), - [sym_block_comment] = STATE(709), + [STATE(690)] = { + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), [ts_builtin_sym_end] = ACTIONS(2680), [sym_identifier] = ACTIONS(2682), [anon_sym_SEMI] = ACTIONS(2680), @@ -88895,9 +89163,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2680), [sym_float_literal] = ACTIONS(2680), }, - [STATE(710)] = { - [sym_line_comment] = STATE(710), - [sym_block_comment] = STATE(710), + [STATE(691)] = { + [sym_line_comment] = STATE(691), + [sym_block_comment] = STATE(691), [ts_builtin_sym_end] = ACTIONS(2684), [sym_identifier] = ACTIONS(2686), [anon_sym_SEMI] = ACTIONS(2684), @@ -88976,9 +89244,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2684), [sym_float_literal] = ACTIONS(2684), }, - [STATE(711)] = { - [sym_line_comment] = STATE(711), - [sym_block_comment] = STATE(711), + [STATE(692)] = { + [sym_line_comment] = STATE(692), + [sym_block_comment] = STATE(692), [ts_builtin_sym_end] = ACTIONS(2688), [sym_identifier] = ACTIONS(2690), [anon_sym_SEMI] = ACTIONS(2688), @@ -89057,9 +89325,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2688), [sym_float_literal] = ACTIONS(2688), }, - [STATE(712)] = { - [sym_line_comment] = STATE(712), - [sym_block_comment] = STATE(712), + [STATE(693)] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), [ts_builtin_sym_end] = ACTIONS(2692), [sym_identifier] = ACTIONS(2694), [anon_sym_SEMI] = ACTIONS(2692), @@ -89138,9 +89406,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2692), [sym_float_literal] = ACTIONS(2692), }, - [STATE(713)] = { - [sym_line_comment] = STATE(713), - [sym_block_comment] = STATE(713), + [STATE(694)] = { + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), [ts_builtin_sym_end] = ACTIONS(2696), [sym_identifier] = ACTIONS(2698), [anon_sym_SEMI] = ACTIONS(2696), @@ -89219,9 +89487,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2696), [sym_float_literal] = ACTIONS(2696), }, - [STATE(714)] = { - [sym_line_comment] = STATE(714), - [sym_block_comment] = STATE(714), + [STATE(695)] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), [ts_builtin_sym_end] = ACTIONS(2700), [sym_identifier] = ACTIONS(2702), [anon_sym_SEMI] = ACTIONS(2700), @@ -89300,9 +89568,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2700), [sym_float_literal] = ACTIONS(2700), }, - [STATE(715)] = { - [sym_line_comment] = STATE(715), - [sym_block_comment] = STATE(715), + [STATE(696)] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), [ts_builtin_sym_end] = ACTIONS(2704), [sym_identifier] = ACTIONS(2706), [anon_sym_SEMI] = ACTIONS(2704), @@ -89381,9 +89649,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2704), [sym_float_literal] = ACTIONS(2704), }, - [STATE(716)] = { - [sym_line_comment] = STATE(716), - [sym_block_comment] = STATE(716), + [STATE(697)] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), [ts_builtin_sym_end] = ACTIONS(2708), [sym_identifier] = ACTIONS(2710), [anon_sym_SEMI] = ACTIONS(2708), @@ -89462,9 +89730,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2708), [sym_float_literal] = ACTIONS(2708), }, - [STATE(717)] = { - [sym_line_comment] = STATE(717), - [sym_block_comment] = STATE(717), + [STATE(698)] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), [ts_builtin_sym_end] = ACTIONS(2712), [sym_identifier] = ACTIONS(2714), [anon_sym_SEMI] = ACTIONS(2712), @@ -89543,9 +89811,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2712), [sym_float_literal] = ACTIONS(2712), }, - [STATE(718)] = { - [sym_line_comment] = STATE(718), - [sym_block_comment] = STATE(718), + [STATE(699)] = { + [sym_line_comment] = STATE(699), + [sym_block_comment] = STATE(699), [ts_builtin_sym_end] = ACTIONS(2716), [sym_identifier] = ACTIONS(2718), [anon_sym_SEMI] = ACTIONS(2716), @@ -89624,9 +89892,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2716), [sym_float_literal] = ACTIONS(2716), }, - [STATE(719)] = { - [sym_line_comment] = STATE(719), - [sym_block_comment] = STATE(719), + [STATE(700)] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), [ts_builtin_sym_end] = ACTIONS(2720), [sym_identifier] = ACTIONS(2722), [anon_sym_SEMI] = ACTIONS(2720), @@ -89705,90 +89973,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2720), [sym_float_literal] = ACTIONS(2720), }, - [STATE(720)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_pattern] = STATE(3748), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(720), - [sym_block_comment] = STATE(720), - [aux_sym_match_arm_repeat1] = STATE(1064), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(721)] = { - [sym_line_comment] = STATE(721), - [sym_block_comment] = STATE(721), + [STATE(701)] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), [ts_builtin_sym_end] = ACTIONS(2724), [sym_identifier] = ACTIONS(2726), [anon_sym_SEMI] = ACTIONS(2724), @@ -89867,9 +90054,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2724), [sym_float_literal] = ACTIONS(2724), }, - [STATE(722)] = { - [sym_line_comment] = STATE(722), - [sym_block_comment] = STATE(722), + [STATE(702)] = { + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), [ts_builtin_sym_end] = ACTIONS(2728), [sym_identifier] = ACTIONS(2730), [anon_sym_SEMI] = ACTIONS(2728), @@ -89948,9 +90135,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2728), [sym_float_literal] = ACTIONS(2728), }, - [STATE(723)] = { - [sym_line_comment] = STATE(723), - [sym_block_comment] = STATE(723), + [STATE(703)] = { + [sym_line_comment] = STATE(703), + [sym_block_comment] = STATE(703), [ts_builtin_sym_end] = ACTIONS(2732), [sym_identifier] = ACTIONS(2734), [anon_sym_SEMI] = ACTIONS(2732), @@ -90029,9 +90216,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2732), [sym_float_literal] = ACTIONS(2732), }, - [STATE(724)] = { - [sym_line_comment] = STATE(724), - [sym_block_comment] = STATE(724), + [STATE(704)] = { + [sym_line_comment] = STATE(704), + [sym_block_comment] = STATE(704), [ts_builtin_sym_end] = ACTIONS(2736), [sym_identifier] = ACTIONS(2738), [anon_sym_SEMI] = ACTIONS(2736), @@ -90110,9 +90297,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2736), [sym_float_literal] = ACTIONS(2736), }, - [STATE(725)] = { - [sym_line_comment] = STATE(725), - [sym_block_comment] = STATE(725), + [STATE(705)] = { + [sym_line_comment] = STATE(705), + [sym_block_comment] = STATE(705), [ts_builtin_sym_end] = ACTIONS(2740), [sym_identifier] = ACTIONS(2742), [anon_sym_SEMI] = ACTIONS(2740), @@ -90191,9 +90378,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2740), [sym_float_literal] = ACTIONS(2740), }, - [STATE(726)] = { - [sym_line_comment] = STATE(726), - [sym_block_comment] = STATE(726), + [STATE(706)] = { + [sym_line_comment] = STATE(706), + [sym_block_comment] = STATE(706), [ts_builtin_sym_end] = ACTIONS(2744), [sym_identifier] = ACTIONS(2746), [anon_sym_SEMI] = ACTIONS(2744), @@ -90272,9 +90459,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2744), [sym_float_literal] = ACTIONS(2744), }, - [STATE(727)] = { - [sym_line_comment] = STATE(727), - [sym_block_comment] = STATE(727), + [STATE(707)] = { + [sym_line_comment] = STATE(707), + [sym_block_comment] = STATE(707), [ts_builtin_sym_end] = ACTIONS(2748), [sym_identifier] = ACTIONS(2750), [anon_sym_SEMI] = ACTIONS(2748), @@ -90353,9 +90540,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2748), [sym_float_literal] = ACTIONS(2748), }, - [STATE(728)] = { - [sym_line_comment] = STATE(728), - [sym_block_comment] = STATE(728), + [STATE(708)] = { + [sym_line_comment] = STATE(708), + [sym_block_comment] = STATE(708), [ts_builtin_sym_end] = ACTIONS(2752), [sym_identifier] = ACTIONS(2754), [anon_sym_SEMI] = ACTIONS(2752), @@ -90434,9 +90621,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2752), [sym_float_literal] = ACTIONS(2752), }, - [STATE(729)] = { - [sym_line_comment] = STATE(729), - [sym_block_comment] = STATE(729), + [STATE(709)] = { + [sym_line_comment] = STATE(709), + [sym_block_comment] = STATE(709), [ts_builtin_sym_end] = ACTIONS(2756), [sym_identifier] = ACTIONS(2758), [anon_sym_SEMI] = ACTIONS(2756), @@ -90515,9 +90702,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2756), [sym_float_literal] = ACTIONS(2756), }, - [STATE(730)] = { - [sym_line_comment] = STATE(730), - [sym_block_comment] = STATE(730), + [STATE(710)] = { + [sym_line_comment] = STATE(710), + [sym_block_comment] = STATE(710), [ts_builtin_sym_end] = ACTIONS(2760), [sym_identifier] = ACTIONS(2762), [anon_sym_SEMI] = ACTIONS(2760), @@ -90596,9 +90783,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2760), [sym_float_literal] = ACTIONS(2760), }, - [STATE(731)] = { - [sym_line_comment] = STATE(731), - [sym_block_comment] = STATE(731), + [STATE(711)] = { + [sym_line_comment] = STATE(711), + [sym_block_comment] = STATE(711), [ts_builtin_sym_end] = ACTIONS(2764), [sym_identifier] = ACTIONS(2766), [anon_sym_SEMI] = ACTIONS(2764), @@ -90677,9 +90864,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2764), [sym_float_literal] = ACTIONS(2764), }, - [STATE(732)] = { - [sym_line_comment] = STATE(732), - [sym_block_comment] = STATE(732), + [STATE(712)] = { + [sym_line_comment] = STATE(712), + [sym_block_comment] = STATE(712), [ts_builtin_sym_end] = ACTIONS(2768), [sym_identifier] = ACTIONS(2770), [anon_sym_SEMI] = ACTIONS(2768), @@ -90758,9 +90945,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2768), [sym_float_literal] = ACTIONS(2768), }, - [STATE(733)] = { - [sym_line_comment] = STATE(733), - [sym_block_comment] = STATE(733), + [STATE(713)] = { + [sym_line_comment] = STATE(713), + [sym_block_comment] = STATE(713), [ts_builtin_sym_end] = ACTIONS(2772), [sym_identifier] = ACTIONS(2774), [anon_sym_SEMI] = ACTIONS(2772), @@ -90839,9 +91026,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2772), [sym_float_literal] = ACTIONS(2772), }, - [STATE(734)] = { - [sym_line_comment] = STATE(734), - [sym_block_comment] = STATE(734), + [STATE(714)] = { + [sym_line_comment] = STATE(714), + [sym_block_comment] = STATE(714), + [ts_builtin_sym_end] = ACTIONS(1435), + [sym_identifier] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_macro_rules_BANG] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_u8] = ACTIONS(1437), + [anon_sym_i8] = ACTIONS(1437), + [anon_sym_u16] = ACTIONS(1437), + [anon_sym_i16] = ACTIONS(1437), + [anon_sym_u32] = ACTIONS(1437), + [anon_sym_i32] = ACTIONS(1437), + [anon_sym_u64] = ACTIONS(1437), + [anon_sym_i64] = ACTIONS(1437), + [anon_sym_u128] = ACTIONS(1437), + [anon_sym_i128] = ACTIONS(1437), + [anon_sym_isize] = ACTIONS(1437), + [anon_sym_usize] = ACTIONS(1437), + [anon_sym_f32] = ACTIONS(1437), + [anon_sym_f64] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_str] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym_POUND] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1437), + [anon_sym_async] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1437), + [anon_sym_enum] = ACTIONS(1437), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_gen] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_impl] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_pub] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_struct] = ACTIONS(1437), + [anon_sym_trait] = ACTIONS(1437), + [anon_sym_type] = ACTIONS(1437), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_unsafe] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_move] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1435), + [aux_sym_string_literal_token1] = ACTIONS(1435), + [sym_char_literal] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1437), + [sym_super] = ACTIONS(1437), + [sym_crate] = ACTIONS(1437), + [sym_metavariable] = ACTIONS(1435), + [sym__raw_string_literal_start] = ACTIONS(1435), + [sym_float_literal] = ACTIONS(1435), + }, + [STATE(715)] = { + [sym_line_comment] = STATE(715), + [sym_block_comment] = STATE(715), [ts_builtin_sym_end] = ACTIONS(2776), [sym_identifier] = ACTIONS(2778), [anon_sym_SEMI] = ACTIONS(2776), @@ -90920,9 +91188,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2776), [sym_float_literal] = ACTIONS(2776), }, - [STATE(735)] = { - [sym_line_comment] = STATE(735), - [sym_block_comment] = STATE(735), + [STATE(716)] = { + [sym_line_comment] = STATE(716), + [sym_block_comment] = STATE(716), [ts_builtin_sym_end] = ACTIONS(2780), [sym_identifier] = ACTIONS(2782), [anon_sym_SEMI] = ACTIONS(2780), @@ -91001,981 +91269,3006 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2780), [sym_float_literal] = ACTIONS(2780), }, + [STATE(717)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym_closure_expression] = STATE(3632), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(3414), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(717), + [sym_block_comment] = STATE(717), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [anon_sym_move] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(718)] = { + [sym_line_comment] = STATE(718), + [sym_block_comment] = STATE(718), + [ts_builtin_sym_end] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2788), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_macro_rules_BANG] = ACTIONS(2786), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2786), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_u8] = ACTIONS(2788), + [anon_sym_i8] = ACTIONS(2788), + [anon_sym_u16] = ACTIONS(2788), + [anon_sym_i16] = ACTIONS(2788), + [anon_sym_u32] = ACTIONS(2788), + [anon_sym_i32] = ACTIONS(2788), + [anon_sym_u64] = ACTIONS(2788), + [anon_sym_i64] = ACTIONS(2788), + [anon_sym_u128] = ACTIONS(2788), + [anon_sym_i128] = ACTIONS(2788), + [anon_sym_isize] = ACTIONS(2788), + [anon_sym_usize] = ACTIONS(2788), + [anon_sym_f32] = ACTIONS(2788), + [anon_sym_f64] = ACTIONS(2788), + [anon_sym_bool] = ACTIONS(2788), + [anon_sym_str] = ACTIONS(2788), + [anon_sym_char] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2786), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_LT] = ACTIONS(2786), + [anon_sym_DOT_DOT] = ACTIONS(2786), + [anon_sym_COLON_COLON] = ACTIONS(2786), + [anon_sym_POUND] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2788), + [anon_sym_async] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2788), + [anon_sym_const] = ACTIONS(2788), + [anon_sym_continue] = ACTIONS(2788), + [anon_sym_default] = ACTIONS(2788), + [anon_sym_enum] = ACTIONS(2788), + [anon_sym_fn] = ACTIONS(2788), + [anon_sym_for] = ACTIONS(2788), + [anon_sym_gen] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_impl] = ACTIONS(2788), + [anon_sym_let] = ACTIONS(2788), + [anon_sym_loop] = ACTIONS(2788), + [anon_sym_match] = ACTIONS(2788), + [anon_sym_mod] = ACTIONS(2788), + [anon_sym_pub] = ACTIONS(2788), + [anon_sym_return] = ACTIONS(2788), + [anon_sym_static] = ACTIONS(2788), + [anon_sym_struct] = ACTIONS(2788), + [anon_sym_trait] = ACTIONS(2788), + [anon_sym_type] = ACTIONS(2788), + [anon_sym_union] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(2788), + [anon_sym_use] = ACTIONS(2788), + [anon_sym_while] = ACTIONS(2788), + [anon_sym_extern] = ACTIONS(2788), + [anon_sym_yield] = ACTIONS(2788), + [anon_sym_move] = ACTIONS(2788), + [anon_sym_try] = ACTIONS(2788), + [sym_integer_literal] = ACTIONS(2786), + [aux_sym_string_literal_token1] = ACTIONS(2786), + [sym_char_literal] = ACTIONS(2786), + [anon_sym_true] = ACTIONS(2788), + [anon_sym_false] = ACTIONS(2788), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2788), + [sym_super] = ACTIONS(2788), + [sym_crate] = ACTIONS(2788), + [sym_metavariable] = ACTIONS(2786), + [sym__raw_string_literal_start] = ACTIONS(2786), + [sym_float_literal] = ACTIONS(2786), + }, + [STATE(719)] = { + [sym_line_comment] = STATE(719), + [sym_block_comment] = STATE(719), + [ts_builtin_sym_end] = ACTIONS(2790), + [sym_identifier] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_macro_rules_BANG] = ACTIONS(2790), + [anon_sym_LPAREN] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_RBRACE] = ACTIONS(2790), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_u8] = ACTIONS(2792), + [anon_sym_i8] = ACTIONS(2792), + [anon_sym_u16] = ACTIONS(2792), + [anon_sym_i16] = ACTIONS(2792), + [anon_sym_u32] = ACTIONS(2792), + [anon_sym_i32] = ACTIONS(2792), + [anon_sym_u64] = ACTIONS(2792), + [anon_sym_i64] = ACTIONS(2792), + [anon_sym_u128] = ACTIONS(2792), + [anon_sym_i128] = ACTIONS(2792), + [anon_sym_isize] = ACTIONS(2792), + [anon_sym_usize] = ACTIONS(2792), + [anon_sym_f32] = ACTIONS(2792), + [anon_sym_f64] = ACTIONS(2792), + [anon_sym_bool] = ACTIONS(2792), + [anon_sym_str] = ACTIONS(2792), + [anon_sym_char] = ACTIONS(2792), + [anon_sym_DASH] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2790), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2790), + [anon_sym_DOT_DOT] = ACTIONS(2790), + [anon_sym_COLON_COLON] = ACTIONS(2790), + [anon_sym_POUND] = ACTIONS(2790), + [anon_sym_SQUOTE] = ACTIONS(2792), + [anon_sym_async] = ACTIONS(2792), + [anon_sym_break] = ACTIONS(2792), + [anon_sym_const] = ACTIONS(2792), + [anon_sym_continue] = ACTIONS(2792), + [anon_sym_default] = ACTIONS(2792), + [anon_sym_enum] = ACTIONS(2792), + [anon_sym_fn] = ACTIONS(2792), + [anon_sym_for] = ACTIONS(2792), + [anon_sym_gen] = ACTIONS(2792), + [anon_sym_if] = ACTIONS(2792), + [anon_sym_impl] = ACTIONS(2792), + [anon_sym_let] = ACTIONS(2792), + [anon_sym_loop] = ACTIONS(2792), + [anon_sym_match] = ACTIONS(2792), + [anon_sym_mod] = ACTIONS(2792), + [anon_sym_pub] = ACTIONS(2792), + [anon_sym_return] = ACTIONS(2792), + [anon_sym_static] = ACTIONS(2792), + [anon_sym_struct] = ACTIONS(2792), + [anon_sym_trait] = ACTIONS(2792), + [anon_sym_type] = ACTIONS(2792), + [anon_sym_union] = ACTIONS(2792), + [anon_sym_unsafe] = ACTIONS(2792), + [anon_sym_use] = ACTIONS(2792), + [anon_sym_while] = ACTIONS(2792), + [anon_sym_extern] = ACTIONS(2792), + [anon_sym_yield] = ACTIONS(2792), + [anon_sym_move] = ACTIONS(2792), + [anon_sym_try] = ACTIONS(2792), + [sym_integer_literal] = ACTIONS(2790), + [aux_sym_string_literal_token1] = ACTIONS(2790), + [sym_char_literal] = ACTIONS(2790), + [anon_sym_true] = ACTIONS(2792), + [anon_sym_false] = ACTIONS(2792), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2792), + [sym_super] = ACTIONS(2792), + [sym_crate] = ACTIONS(2792), + [sym_metavariable] = ACTIONS(2790), + [sym__raw_string_literal_start] = ACTIONS(2790), + [sym_float_literal] = ACTIONS(2790), + }, + [STATE(720)] = { + [sym_line_comment] = STATE(720), + [sym_block_comment] = STATE(720), + [ts_builtin_sym_end] = ACTIONS(2794), + [sym_identifier] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_macro_rules_BANG] = ACTIONS(2794), + [anon_sym_LPAREN] = ACTIONS(2794), + [anon_sym_LBRACK] = ACTIONS(2794), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_RBRACE] = ACTIONS(2794), + [anon_sym_STAR] = ACTIONS(2794), + [anon_sym_u8] = ACTIONS(2796), + [anon_sym_i8] = ACTIONS(2796), + [anon_sym_u16] = ACTIONS(2796), + [anon_sym_i16] = ACTIONS(2796), + [anon_sym_u32] = ACTIONS(2796), + [anon_sym_i32] = ACTIONS(2796), + [anon_sym_u64] = ACTIONS(2796), + [anon_sym_i64] = ACTIONS(2796), + [anon_sym_u128] = ACTIONS(2796), + [anon_sym_i128] = ACTIONS(2796), + [anon_sym_isize] = ACTIONS(2796), + [anon_sym_usize] = ACTIONS(2796), + [anon_sym_f32] = ACTIONS(2796), + [anon_sym_f64] = ACTIONS(2796), + [anon_sym_bool] = ACTIONS(2796), + [anon_sym_str] = ACTIONS(2796), + [anon_sym_char] = ACTIONS(2796), + [anon_sym_DASH] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_LT] = ACTIONS(2794), + [anon_sym_DOT_DOT] = ACTIONS(2794), + [anon_sym_COLON_COLON] = ACTIONS(2794), + [anon_sym_POUND] = ACTIONS(2794), + [anon_sym_SQUOTE] = ACTIONS(2796), + [anon_sym_async] = ACTIONS(2796), + [anon_sym_break] = ACTIONS(2796), + [anon_sym_const] = ACTIONS(2796), + [anon_sym_continue] = ACTIONS(2796), + [anon_sym_default] = ACTIONS(2796), + [anon_sym_enum] = ACTIONS(2796), + [anon_sym_fn] = ACTIONS(2796), + [anon_sym_for] = ACTIONS(2796), + [anon_sym_gen] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2796), + [anon_sym_impl] = ACTIONS(2796), + [anon_sym_let] = ACTIONS(2796), + [anon_sym_loop] = ACTIONS(2796), + [anon_sym_match] = ACTIONS(2796), + [anon_sym_mod] = ACTIONS(2796), + [anon_sym_pub] = ACTIONS(2796), + [anon_sym_return] = ACTIONS(2796), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2796), + [anon_sym_trait] = ACTIONS(2796), + [anon_sym_type] = ACTIONS(2796), + [anon_sym_union] = ACTIONS(2796), + [anon_sym_unsafe] = ACTIONS(2796), + [anon_sym_use] = ACTIONS(2796), + [anon_sym_while] = ACTIONS(2796), + [anon_sym_extern] = ACTIONS(2796), + [anon_sym_yield] = ACTIONS(2796), + [anon_sym_move] = ACTIONS(2796), + [anon_sym_try] = ACTIONS(2796), + [sym_integer_literal] = ACTIONS(2794), + [aux_sym_string_literal_token1] = ACTIONS(2794), + [sym_char_literal] = ACTIONS(2794), + [anon_sym_true] = ACTIONS(2796), + [anon_sym_false] = ACTIONS(2796), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2796), + [sym_super] = ACTIONS(2796), + [sym_crate] = ACTIONS(2796), + [sym_metavariable] = ACTIONS(2794), + [sym__raw_string_literal_start] = ACTIONS(2794), + [sym_float_literal] = ACTIONS(2794), + }, + [STATE(721)] = { + [sym_line_comment] = STATE(721), + [sym_block_comment] = STATE(721), + [ts_builtin_sym_end] = ACTIONS(2798), + [sym_identifier] = ACTIONS(2800), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_macro_rules_BANG] = ACTIONS(2798), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_RBRACE] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_u8] = ACTIONS(2800), + [anon_sym_i8] = ACTIONS(2800), + [anon_sym_u16] = ACTIONS(2800), + [anon_sym_i16] = ACTIONS(2800), + [anon_sym_u32] = ACTIONS(2800), + [anon_sym_i32] = ACTIONS(2800), + [anon_sym_u64] = ACTIONS(2800), + [anon_sym_i64] = ACTIONS(2800), + [anon_sym_u128] = ACTIONS(2800), + [anon_sym_i128] = ACTIONS(2800), + [anon_sym_isize] = ACTIONS(2800), + [anon_sym_usize] = ACTIONS(2800), + [anon_sym_f32] = ACTIONS(2800), + [anon_sym_f64] = ACTIONS(2800), + [anon_sym_bool] = ACTIONS(2800), + [anon_sym_str] = ACTIONS(2800), + [anon_sym_char] = ACTIONS(2800), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_DOT_DOT] = ACTIONS(2798), + [anon_sym_COLON_COLON] = ACTIONS(2798), + [anon_sym_POUND] = ACTIONS(2798), + [anon_sym_SQUOTE] = ACTIONS(2800), + [anon_sym_async] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_default] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [anon_sym_fn] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_gen] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_impl] = ACTIONS(2800), + [anon_sym_let] = ACTIONS(2800), + [anon_sym_loop] = ACTIONS(2800), + [anon_sym_match] = ACTIONS(2800), + [anon_sym_mod] = ACTIONS(2800), + [anon_sym_pub] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2800), + [anon_sym_trait] = ACTIONS(2800), + [anon_sym_type] = ACTIONS(2800), + [anon_sym_union] = ACTIONS(2800), + [anon_sym_unsafe] = ACTIONS(2800), + [anon_sym_use] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_extern] = ACTIONS(2800), + [anon_sym_yield] = ACTIONS(2800), + [anon_sym_move] = ACTIONS(2800), + [anon_sym_try] = ACTIONS(2800), + [sym_integer_literal] = ACTIONS(2798), + [aux_sym_string_literal_token1] = ACTIONS(2798), + [sym_char_literal] = ACTIONS(2798), + [anon_sym_true] = ACTIONS(2800), + [anon_sym_false] = ACTIONS(2800), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2800), + [sym_super] = ACTIONS(2800), + [sym_crate] = ACTIONS(2800), + [sym_metavariable] = ACTIONS(2798), + [sym__raw_string_literal_start] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2798), + }, + [STATE(722)] = { + [sym_line_comment] = STATE(722), + [sym_block_comment] = STATE(722), + [ts_builtin_sym_end] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_macro_rules_BANG] = ACTIONS(2802), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_u8] = ACTIONS(2804), + [anon_sym_i8] = ACTIONS(2804), + [anon_sym_u16] = ACTIONS(2804), + [anon_sym_i16] = ACTIONS(2804), + [anon_sym_u32] = ACTIONS(2804), + [anon_sym_i32] = ACTIONS(2804), + [anon_sym_u64] = ACTIONS(2804), + [anon_sym_i64] = ACTIONS(2804), + [anon_sym_u128] = ACTIONS(2804), + [anon_sym_i128] = ACTIONS(2804), + [anon_sym_isize] = ACTIONS(2804), + [anon_sym_usize] = ACTIONS(2804), + [anon_sym_f32] = ACTIONS(2804), + [anon_sym_f64] = ACTIONS(2804), + [anon_sym_bool] = ACTIONS(2804), + [anon_sym_str] = ACTIONS(2804), + [anon_sym_char] = ACTIONS(2804), + [anon_sym_DASH] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_LT] = ACTIONS(2802), + [anon_sym_DOT_DOT] = ACTIONS(2802), + [anon_sym_COLON_COLON] = ACTIONS(2802), + [anon_sym_POUND] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2804), + [anon_sym_async] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [anon_sym_fn] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_gen] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_impl] = ACTIONS(2804), + [anon_sym_let] = ACTIONS(2804), + [anon_sym_loop] = ACTIONS(2804), + [anon_sym_match] = ACTIONS(2804), + [anon_sym_mod] = ACTIONS(2804), + [anon_sym_pub] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2804), + [anon_sym_trait] = ACTIONS(2804), + [anon_sym_type] = ACTIONS(2804), + [anon_sym_union] = ACTIONS(2804), + [anon_sym_unsafe] = ACTIONS(2804), + [anon_sym_use] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(2804), + [anon_sym_yield] = ACTIONS(2804), + [anon_sym_move] = ACTIONS(2804), + [anon_sym_try] = ACTIONS(2804), + [sym_integer_literal] = ACTIONS(2802), + [aux_sym_string_literal_token1] = ACTIONS(2802), + [sym_char_literal] = ACTIONS(2802), + [anon_sym_true] = ACTIONS(2804), + [anon_sym_false] = ACTIONS(2804), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2804), + [sym_super] = ACTIONS(2804), + [sym_crate] = ACTIONS(2804), + [sym_metavariable] = ACTIONS(2802), + [sym__raw_string_literal_start] = ACTIONS(2802), + [sym_float_literal] = ACTIONS(2802), + }, + [STATE(723)] = { + [sym_line_comment] = STATE(723), + [sym_block_comment] = STATE(723), + [ts_builtin_sym_end] = ACTIONS(2806), + [sym_identifier] = ACTIONS(2808), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_macro_rules_BANG] = ACTIONS(2806), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_RBRACE] = ACTIONS(2806), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_u8] = ACTIONS(2808), + [anon_sym_i8] = ACTIONS(2808), + [anon_sym_u16] = ACTIONS(2808), + [anon_sym_i16] = ACTIONS(2808), + [anon_sym_u32] = ACTIONS(2808), + [anon_sym_i32] = ACTIONS(2808), + [anon_sym_u64] = ACTIONS(2808), + [anon_sym_i64] = ACTIONS(2808), + [anon_sym_u128] = ACTIONS(2808), + [anon_sym_i128] = ACTIONS(2808), + [anon_sym_isize] = ACTIONS(2808), + [anon_sym_usize] = ACTIONS(2808), + [anon_sym_f32] = ACTIONS(2808), + [anon_sym_f64] = ACTIONS(2808), + [anon_sym_bool] = ACTIONS(2808), + [anon_sym_str] = ACTIONS(2808), + [anon_sym_char] = ACTIONS(2808), + [anon_sym_DASH] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_LT] = ACTIONS(2806), + [anon_sym_DOT_DOT] = ACTIONS(2806), + [anon_sym_COLON_COLON] = ACTIONS(2806), + [anon_sym_POUND] = ACTIONS(2806), + [anon_sym_SQUOTE] = ACTIONS(2808), + [anon_sym_async] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_gen] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_impl] = ACTIONS(2808), + [anon_sym_let] = ACTIONS(2808), + [anon_sym_loop] = ACTIONS(2808), + [anon_sym_match] = ACTIONS(2808), + [anon_sym_mod] = ACTIONS(2808), + [anon_sym_pub] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2808), + [anon_sym_trait] = ACTIONS(2808), + [anon_sym_type] = ACTIONS(2808), + [anon_sym_union] = ACTIONS(2808), + [anon_sym_unsafe] = ACTIONS(2808), + [anon_sym_use] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_extern] = ACTIONS(2808), + [anon_sym_yield] = ACTIONS(2808), + [anon_sym_move] = ACTIONS(2808), + [anon_sym_try] = ACTIONS(2808), + [sym_integer_literal] = ACTIONS(2806), + [aux_sym_string_literal_token1] = ACTIONS(2806), + [sym_char_literal] = ACTIONS(2806), + [anon_sym_true] = ACTIONS(2808), + [anon_sym_false] = ACTIONS(2808), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2808), + [sym_super] = ACTIONS(2808), + [sym_crate] = ACTIONS(2808), + [sym_metavariable] = ACTIONS(2806), + [sym__raw_string_literal_start] = ACTIONS(2806), + [sym_float_literal] = ACTIONS(2806), + }, + [STATE(724)] = { + [sym_line_comment] = STATE(724), + [sym_block_comment] = STATE(724), + [ts_builtin_sym_end] = ACTIONS(2810), + [sym_identifier] = ACTIONS(2812), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_macro_rules_BANG] = ACTIONS(2810), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_RBRACE] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_u8] = ACTIONS(2812), + [anon_sym_i8] = ACTIONS(2812), + [anon_sym_u16] = ACTIONS(2812), + [anon_sym_i16] = ACTIONS(2812), + [anon_sym_u32] = ACTIONS(2812), + [anon_sym_i32] = ACTIONS(2812), + [anon_sym_u64] = ACTIONS(2812), + [anon_sym_i64] = ACTIONS(2812), + [anon_sym_u128] = ACTIONS(2812), + [anon_sym_i128] = ACTIONS(2812), + [anon_sym_isize] = ACTIONS(2812), + [anon_sym_usize] = ACTIONS(2812), + [anon_sym_f32] = ACTIONS(2812), + [anon_sym_f64] = ACTIONS(2812), + [anon_sym_bool] = ACTIONS(2812), + [anon_sym_str] = ACTIONS(2812), + [anon_sym_char] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_LT] = ACTIONS(2810), + [anon_sym_DOT_DOT] = ACTIONS(2810), + [anon_sym_COLON_COLON] = ACTIONS(2810), + [anon_sym_POUND] = ACTIONS(2810), + [anon_sym_SQUOTE] = ACTIONS(2812), + [anon_sym_async] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_fn] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_gen] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_impl] = ACTIONS(2812), + [anon_sym_let] = ACTIONS(2812), + [anon_sym_loop] = ACTIONS(2812), + [anon_sym_match] = ACTIONS(2812), + [anon_sym_mod] = ACTIONS(2812), + [anon_sym_pub] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2812), + [anon_sym_trait] = ACTIONS(2812), + [anon_sym_type] = ACTIONS(2812), + [anon_sym_union] = ACTIONS(2812), + [anon_sym_unsafe] = ACTIONS(2812), + [anon_sym_use] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_extern] = ACTIONS(2812), + [anon_sym_yield] = ACTIONS(2812), + [anon_sym_move] = ACTIONS(2812), + [anon_sym_try] = ACTIONS(2812), + [sym_integer_literal] = ACTIONS(2810), + [aux_sym_string_literal_token1] = ACTIONS(2810), + [sym_char_literal] = ACTIONS(2810), + [anon_sym_true] = ACTIONS(2812), + [anon_sym_false] = ACTIONS(2812), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2812), + [sym_super] = ACTIONS(2812), + [sym_crate] = ACTIONS(2812), + [sym_metavariable] = ACTIONS(2810), + [sym__raw_string_literal_start] = ACTIONS(2810), + [sym_float_literal] = ACTIONS(2810), + }, + [STATE(725)] = { + [sym_line_comment] = STATE(725), + [sym_block_comment] = STATE(725), + [ts_builtin_sym_end] = ACTIONS(1431), + [sym_identifier] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_macro_rules_BANG] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_COLON_COLON] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_default] = ACTIONS(1433), + [anon_sym_enum] = ACTIONS(1433), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_gen] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_impl] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_loop] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_mod] = ACTIONS(1433), + [anon_sym_pub] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1433), + [anon_sym_trait] = ACTIONS(1433), + [anon_sym_type] = ACTIONS(1433), + [anon_sym_union] = ACTIONS(1433), + [anon_sym_unsafe] = ACTIONS(1433), + [anon_sym_use] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_extern] = ACTIONS(1433), + [anon_sym_yield] = ACTIONS(1433), + [anon_sym_move] = ACTIONS(1433), + [anon_sym_try] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1431), + [aux_sym_string_literal_token1] = ACTIONS(1431), + [sym_char_literal] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1433), + [sym_super] = ACTIONS(1433), + [sym_crate] = ACTIONS(1433), + [sym_metavariable] = ACTIONS(1431), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1431), + }, + [STATE(726)] = { + [sym_line_comment] = STATE(726), + [sym_block_comment] = STATE(726), + [ts_builtin_sym_end] = ACTIONS(2814), + [sym_identifier] = ACTIONS(2816), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_macro_rules_BANG] = ACTIONS(2814), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym_LBRACK] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_RBRACE] = ACTIONS(2814), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_u8] = ACTIONS(2816), + [anon_sym_i8] = ACTIONS(2816), + [anon_sym_u16] = ACTIONS(2816), + [anon_sym_i16] = ACTIONS(2816), + [anon_sym_u32] = ACTIONS(2816), + [anon_sym_i32] = ACTIONS(2816), + [anon_sym_u64] = ACTIONS(2816), + [anon_sym_i64] = ACTIONS(2816), + [anon_sym_u128] = ACTIONS(2816), + [anon_sym_i128] = ACTIONS(2816), + [anon_sym_isize] = ACTIONS(2816), + [anon_sym_usize] = ACTIONS(2816), + [anon_sym_f32] = ACTIONS(2816), + [anon_sym_f64] = ACTIONS(2816), + [anon_sym_bool] = ACTIONS(2816), + [anon_sym_str] = ACTIONS(2816), + [anon_sym_char] = ACTIONS(2816), + [anon_sym_DASH] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_LT] = ACTIONS(2814), + [anon_sym_DOT_DOT] = ACTIONS(2814), + [anon_sym_COLON_COLON] = ACTIONS(2814), + [anon_sym_POUND] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2816), + [anon_sym_async] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [anon_sym_fn] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_gen] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_impl] = ACTIONS(2816), + [anon_sym_let] = ACTIONS(2816), + [anon_sym_loop] = ACTIONS(2816), + [anon_sym_match] = ACTIONS(2816), + [anon_sym_mod] = ACTIONS(2816), + [anon_sym_pub] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2816), + [anon_sym_trait] = ACTIONS(2816), + [anon_sym_type] = ACTIONS(2816), + [anon_sym_union] = ACTIONS(2816), + [anon_sym_unsafe] = ACTIONS(2816), + [anon_sym_use] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_extern] = ACTIONS(2816), + [anon_sym_yield] = ACTIONS(2816), + [anon_sym_move] = ACTIONS(2816), + [anon_sym_try] = ACTIONS(2816), + [sym_integer_literal] = ACTIONS(2814), + [aux_sym_string_literal_token1] = ACTIONS(2814), + [sym_char_literal] = ACTIONS(2814), + [anon_sym_true] = ACTIONS(2816), + [anon_sym_false] = ACTIONS(2816), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2816), + [sym_super] = ACTIONS(2816), + [sym_crate] = ACTIONS(2816), + [sym_metavariable] = ACTIONS(2814), + [sym__raw_string_literal_start] = ACTIONS(2814), + [sym_float_literal] = ACTIONS(2814), + }, + [STATE(727)] = { + [sym_line_comment] = STATE(727), + [sym_block_comment] = STATE(727), + [ts_builtin_sym_end] = ACTIONS(2818), + [sym_identifier] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_macro_rules_BANG] = ACTIONS(2818), + [anon_sym_LPAREN] = ACTIONS(2818), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_u8] = ACTIONS(2820), + [anon_sym_i8] = ACTIONS(2820), + [anon_sym_u16] = ACTIONS(2820), + [anon_sym_i16] = ACTIONS(2820), + [anon_sym_u32] = ACTIONS(2820), + [anon_sym_i32] = ACTIONS(2820), + [anon_sym_u64] = ACTIONS(2820), + [anon_sym_i64] = ACTIONS(2820), + [anon_sym_u128] = ACTIONS(2820), + [anon_sym_i128] = ACTIONS(2820), + [anon_sym_isize] = ACTIONS(2820), + [anon_sym_usize] = ACTIONS(2820), + [anon_sym_f32] = ACTIONS(2820), + [anon_sym_f64] = ACTIONS(2820), + [anon_sym_bool] = ACTIONS(2820), + [anon_sym_str] = ACTIONS(2820), + [anon_sym_char] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_LT] = ACTIONS(2818), + [anon_sym_DOT_DOT] = ACTIONS(2818), + [anon_sym_COLON_COLON] = ACTIONS(2818), + [anon_sym_POUND] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2820), + [anon_sym_async] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [anon_sym_fn] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_gen] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_impl] = ACTIONS(2820), + [anon_sym_let] = ACTIONS(2820), + [anon_sym_loop] = ACTIONS(2820), + [anon_sym_match] = ACTIONS(2820), + [anon_sym_mod] = ACTIONS(2820), + [anon_sym_pub] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2820), + [anon_sym_trait] = ACTIONS(2820), + [anon_sym_type] = ACTIONS(2820), + [anon_sym_union] = ACTIONS(2820), + [anon_sym_unsafe] = ACTIONS(2820), + [anon_sym_use] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_extern] = ACTIONS(2820), + [anon_sym_yield] = ACTIONS(2820), + [anon_sym_move] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [sym_integer_literal] = ACTIONS(2818), + [aux_sym_string_literal_token1] = ACTIONS(2818), + [sym_char_literal] = ACTIONS(2818), + [anon_sym_true] = ACTIONS(2820), + [anon_sym_false] = ACTIONS(2820), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2820), + [sym_super] = ACTIONS(2820), + [sym_crate] = ACTIONS(2820), + [sym_metavariable] = ACTIONS(2818), + [sym__raw_string_literal_start] = ACTIONS(2818), + [sym_float_literal] = ACTIONS(2818), + }, + [STATE(728)] = { + [sym_line_comment] = STATE(728), + [sym_block_comment] = STATE(728), + [ts_builtin_sym_end] = ACTIONS(1419), + [sym_identifier] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_macro_rules_BANG] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_u8] = ACTIONS(1421), + [anon_sym_i8] = ACTIONS(1421), + [anon_sym_u16] = ACTIONS(1421), + [anon_sym_i16] = ACTIONS(1421), + [anon_sym_u32] = ACTIONS(1421), + [anon_sym_i32] = ACTIONS(1421), + [anon_sym_u64] = ACTIONS(1421), + [anon_sym_i64] = ACTIONS(1421), + [anon_sym_u128] = ACTIONS(1421), + [anon_sym_i128] = ACTIONS(1421), + [anon_sym_isize] = ACTIONS(1421), + [anon_sym_usize] = ACTIONS(1421), + [anon_sym_f32] = ACTIONS(1421), + [anon_sym_f64] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_str] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_fn] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_gen] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_impl] = ACTIONS(1421), + [anon_sym_let] = ACTIONS(1421), + [anon_sym_loop] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_mod] = ACTIONS(1421), + [anon_sym_pub] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [anon_sym_trait] = ACTIONS(1421), + [anon_sym_type] = ACTIONS(1421), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_unsafe] = ACTIONS(1421), + [anon_sym_use] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_yield] = ACTIONS(1421), + [anon_sym_move] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1419), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1421), + [sym_super] = ACTIONS(1421), + [sym_crate] = ACTIONS(1421), + [sym_metavariable] = ACTIONS(1419), + [sym__raw_string_literal_start] = ACTIONS(1419), + [sym_float_literal] = ACTIONS(1419), + }, + [STATE(729)] = { + [sym_line_comment] = STATE(729), + [sym_block_comment] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_macro_rules_BANG] = ACTIONS(2822), + [anon_sym_LPAREN] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_u8] = ACTIONS(2824), + [anon_sym_i8] = ACTIONS(2824), + [anon_sym_u16] = ACTIONS(2824), + [anon_sym_i16] = ACTIONS(2824), + [anon_sym_u32] = ACTIONS(2824), + [anon_sym_i32] = ACTIONS(2824), + [anon_sym_u64] = ACTIONS(2824), + [anon_sym_i64] = ACTIONS(2824), + [anon_sym_u128] = ACTIONS(2824), + [anon_sym_i128] = ACTIONS(2824), + [anon_sym_isize] = ACTIONS(2824), + [anon_sym_usize] = ACTIONS(2824), + [anon_sym_f32] = ACTIONS(2824), + [anon_sym_f64] = ACTIONS(2824), + [anon_sym_bool] = ACTIONS(2824), + [anon_sym_str] = ACTIONS(2824), + [anon_sym_char] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_LT] = ACTIONS(2822), + [anon_sym_DOT_DOT] = ACTIONS(2822), + [anon_sym_COLON_COLON] = ACTIONS(2822), + [anon_sym_POUND] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2824), + [anon_sym_async] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [anon_sym_fn] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_gen] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_impl] = ACTIONS(2824), + [anon_sym_let] = ACTIONS(2824), + [anon_sym_loop] = ACTIONS(2824), + [anon_sym_match] = ACTIONS(2824), + [anon_sym_mod] = ACTIONS(2824), + [anon_sym_pub] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2824), + [anon_sym_trait] = ACTIONS(2824), + [anon_sym_type] = ACTIONS(2824), + [anon_sym_union] = ACTIONS(2824), + [anon_sym_unsafe] = ACTIONS(2824), + [anon_sym_use] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_extern] = ACTIONS(2824), + [anon_sym_yield] = ACTIONS(2824), + [anon_sym_move] = ACTIONS(2824), + [anon_sym_try] = ACTIONS(2824), + [sym_integer_literal] = ACTIONS(2822), + [aux_sym_string_literal_token1] = ACTIONS(2822), + [sym_char_literal] = ACTIONS(2822), + [anon_sym_true] = ACTIONS(2824), + [anon_sym_false] = ACTIONS(2824), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2824), + [sym_super] = ACTIONS(2824), + [sym_crate] = ACTIONS(2824), + [sym_metavariable] = ACTIONS(2822), + [sym__raw_string_literal_start] = ACTIONS(2822), + [sym_float_literal] = ACTIONS(2822), + }, + [STATE(730)] = { + [sym_line_comment] = STATE(730), + [sym_block_comment] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2828), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_macro_rules_BANG] = ACTIONS(2826), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_u8] = ACTIONS(2828), + [anon_sym_i8] = ACTIONS(2828), + [anon_sym_u16] = ACTIONS(2828), + [anon_sym_i16] = ACTIONS(2828), + [anon_sym_u32] = ACTIONS(2828), + [anon_sym_i32] = ACTIONS(2828), + [anon_sym_u64] = ACTIONS(2828), + [anon_sym_i64] = ACTIONS(2828), + [anon_sym_u128] = ACTIONS(2828), + [anon_sym_i128] = ACTIONS(2828), + [anon_sym_isize] = ACTIONS(2828), + [anon_sym_usize] = ACTIONS(2828), + [anon_sym_f32] = ACTIONS(2828), + [anon_sym_f64] = ACTIONS(2828), + [anon_sym_bool] = ACTIONS(2828), + [anon_sym_str] = ACTIONS(2828), + [anon_sym_char] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_DOT_DOT] = ACTIONS(2826), + [anon_sym_COLON_COLON] = ACTIONS(2826), + [anon_sym_POUND] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2828), + [anon_sym_async] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [anon_sym_fn] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_gen] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_impl] = ACTIONS(2828), + [anon_sym_let] = ACTIONS(2828), + [anon_sym_loop] = ACTIONS(2828), + [anon_sym_match] = ACTIONS(2828), + [anon_sym_mod] = ACTIONS(2828), + [anon_sym_pub] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2828), + [anon_sym_trait] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_union] = ACTIONS(2828), + [anon_sym_unsafe] = ACTIONS(2828), + [anon_sym_use] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_extern] = ACTIONS(2828), + [anon_sym_yield] = ACTIONS(2828), + [anon_sym_move] = ACTIONS(2828), + [anon_sym_try] = ACTIONS(2828), + [sym_integer_literal] = ACTIONS(2826), + [aux_sym_string_literal_token1] = ACTIONS(2826), + [sym_char_literal] = ACTIONS(2826), + [anon_sym_true] = ACTIONS(2828), + [anon_sym_false] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2828), + [sym_super] = ACTIONS(2828), + [sym_crate] = ACTIONS(2828), + [sym_metavariable] = ACTIONS(2826), + [sym__raw_string_literal_start] = ACTIONS(2826), + [sym_float_literal] = ACTIONS(2826), + }, + [STATE(731)] = { + [sym_line_comment] = STATE(731), + [sym_block_comment] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(1423), + [sym_identifier] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_macro_rules_BANG] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_u8] = ACTIONS(1425), + [anon_sym_i8] = ACTIONS(1425), + [anon_sym_u16] = ACTIONS(1425), + [anon_sym_i16] = ACTIONS(1425), + [anon_sym_u32] = ACTIONS(1425), + [anon_sym_i32] = ACTIONS(1425), + [anon_sym_u64] = ACTIONS(1425), + [anon_sym_i64] = ACTIONS(1425), + [anon_sym_u128] = ACTIONS(1425), + [anon_sym_i128] = ACTIONS(1425), + [anon_sym_isize] = ACTIONS(1425), + [anon_sym_usize] = ACTIONS(1425), + [anon_sym_f32] = ACTIONS(1425), + [anon_sym_f64] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_str] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_COLON_COLON] = ACTIONS(1423), + [anon_sym_POUND] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1425), + [anon_sym_async] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_default] = ACTIONS(1425), + [anon_sym_enum] = ACTIONS(1425), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_gen] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_impl] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_loop] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_mod] = ACTIONS(1425), + [anon_sym_pub] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_struct] = ACTIONS(1425), + [anon_sym_trait] = ACTIONS(1425), + [anon_sym_type] = ACTIONS(1425), + [anon_sym_union] = ACTIONS(1425), + [anon_sym_unsafe] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym_yield] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1425), + [anon_sym_try] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1423), + [aux_sym_string_literal_token1] = ACTIONS(1423), + [sym_char_literal] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1425), + [sym_super] = ACTIONS(1425), + [sym_crate] = ACTIONS(1425), + [sym_metavariable] = ACTIONS(1423), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1423), + }, + [STATE(732)] = { + [sym_line_comment] = STATE(732), + [sym_block_comment] = STATE(732), + [ts_builtin_sym_end] = ACTIONS(1427), + [sym_identifier] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_macro_rules_BANG] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_u8] = ACTIONS(1429), + [anon_sym_i8] = ACTIONS(1429), + [anon_sym_u16] = ACTIONS(1429), + [anon_sym_i16] = ACTIONS(1429), + [anon_sym_u32] = ACTIONS(1429), + [anon_sym_i32] = ACTIONS(1429), + [anon_sym_u64] = ACTIONS(1429), + [anon_sym_i64] = ACTIONS(1429), + [anon_sym_u128] = ACTIONS(1429), + [anon_sym_i128] = ACTIONS(1429), + [anon_sym_isize] = ACTIONS(1429), + [anon_sym_usize] = ACTIONS(1429), + [anon_sym_f32] = ACTIONS(1429), + [anon_sym_f64] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_str] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_POUND] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1429), + [anon_sym_async] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_gen] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_impl] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_loop] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_mod] = ACTIONS(1429), + [anon_sym_pub] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_trait] = ACTIONS(1429), + [anon_sym_type] = ACTIONS(1429), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_unsafe] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_yield] = ACTIONS(1429), + [anon_sym_move] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1427), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1429), + [sym_super] = ACTIONS(1429), + [sym_crate] = ACTIONS(1429), + [sym_metavariable] = ACTIONS(1427), + [sym__raw_string_literal_start] = ACTIONS(1427), + [sym_float_literal] = ACTIONS(1427), + }, + [STATE(733)] = { + [sym_line_comment] = STATE(733), + [sym_block_comment] = STATE(733), + [ts_builtin_sym_end] = ACTIONS(2830), + [sym_identifier] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_macro_rules_BANG] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_RBRACE] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2830), + [anon_sym_u8] = ACTIONS(2832), + [anon_sym_i8] = ACTIONS(2832), + [anon_sym_u16] = ACTIONS(2832), + [anon_sym_i16] = ACTIONS(2832), + [anon_sym_u32] = ACTIONS(2832), + [anon_sym_i32] = ACTIONS(2832), + [anon_sym_u64] = ACTIONS(2832), + [anon_sym_i64] = ACTIONS(2832), + [anon_sym_u128] = ACTIONS(2832), + [anon_sym_i128] = ACTIONS(2832), + [anon_sym_isize] = ACTIONS(2832), + [anon_sym_usize] = ACTIONS(2832), + [anon_sym_f32] = ACTIONS(2832), + [anon_sym_f64] = ACTIONS(2832), + [anon_sym_bool] = ACTIONS(2832), + [anon_sym_str] = ACTIONS(2832), + [anon_sym_char] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_BANG] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_LT] = ACTIONS(2830), + [anon_sym_DOT_DOT] = ACTIONS(2830), + [anon_sym_COLON_COLON] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(2830), + [anon_sym_SQUOTE] = ACTIONS(2832), + [anon_sym_async] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_default] = ACTIONS(2832), + [anon_sym_enum] = ACTIONS(2832), + [anon_sym_fn] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_gen] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_impl] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_loop] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2832), + [anon_sym_mod] = ACTIONS(2832), + [anon_sym_pub] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_static] = ACTIONS(2832), + [anon_sym_struct] = ACTIONS(2832), + [anon_sym_trait] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2832), + [anon_sym_union] = ACTIONS(2832), + [anon_sym_unsafe] = ACTIONS(2832), + [anon_sym_use] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_extern] = ACTIONS(2832), + [anon_sym_yield] = ACTIONS(2832), + [anon_sym_move] = ACTIONS(2832), + [anon_sym_try] = ACTIONS(2832), + [sym_integer_literal] = ACTIONS(2830), + [aux_sym_string_literal_token1] = ACTIONS(2830), + [sym_char_literal] = ACTIONS(2830), + [anon_sym_true] = ACTIONS(2832), + [anon_sym_false] = ACTIONS(2832), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2832), + [sym_super] = ACTIONS(2832), + [sym_crate] = ACTIONS(2832), + [sym_metavariable] = ACTIONS(2830), + [sym__raw_string_literal_start] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2830), + }, + [STATE(734)] = { + [sym_line_comment] = STATE(734), + [sym_block_comment] = STATE(734), + [ts_builtin_sym_end] = ACTIONS(2834), + [sym_identifier] = ACTIONS(2836), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_macro_rules_BANG] = ACTIONS(2834), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_RBRACE] = ACTIONS(2834), + [anon_sym_STAR] = ACTIONS(2834), + [anon_sym_u8] = ACTIONS(2836), + [anon_sym_i8] = ACTIONS(2836), + [anon_sym_u16] = ACTIONS(2836), + [anon_sym_i16] = ACTIONS(2836), + [anon_sym_u32] = ACTIONS(2836), + [anon_sym_i32] = ACTIONS(2836), + [anon_sym_u64] = ACTIONS(2836), + [anon_sym_i64] = ACTIONS(2836), + [anon_sym_u128] = ACTIONS(2836), + [anon_sym_i128] = ACTIONS(2836), + [anon_sym_isize] = ACTIONS(2836), + [anon_sym_usize] = ACTIONS(2836), + [anon_sym_f32] = ACTIONS(2836), + [anon_sym_f64] = ACTIONS(2836), + [anon_sym_bool] = ACTIONS(2836), + [anon_sym_str] = ACTIONS(2836), + [anon_sym_char] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2834), + [anon_sym_BANG] = ACTIONS(2834), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_LT] = ACTIONS(2834), + [anon_sym_DOT_DOT] = ACTIONS(2834), + [anon_sym_COLON_COLON] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(2834), + [anon_sym_SQUOTE] = ACTIONS(2836), + [anon_sym_async] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_default] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [anon_sym_fn] = ACTIONS(2836), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_gen] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_impl] = ACTIONS(2836), + [anon_sym_let] = ACTIONS(2836), + [anon_sym_loop] = ACTIONS(2836), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_mod] = ACTIONS(2836), + [anon_sym_pub] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2836), + [anon_sym_trait] = ACTIONS(2836), + [anon_sym_type] = ACTIONS(2836), + [anon_sym_union] = ACTIONS(2836), + [anon_sym_unsafe] = ACTIONS(2836), + [anon_sym_use] = ACTIONS(2836), + [anon_sym_while] = ACTIONS(2836), + [anon_sym_extern] = ACTIONS(2836), + [anon_sym_yield] = ACTIONS(2836), + [anon_sym_move] = ACTIONS(2836), + [anon_sym_try] = ACTIONS(2836), + [sym_integer_literal] = ACTIONS(2834), + [aux_sym_string_literal_token1] = ACTIONS(2834), + [sym_char_literal] = ACTIONS(2834), + [anon_sym_true] = ACTIONS(2836), + [anon_sym_false] = ACTIONS(2836), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2836), + [sym_super] = ACTIONS(2836), + [sym_crate] = ACTIONS(2836), + [sym_metavariable] = ACTIONS(2834), + [sym__raw_string_literal_start] = ACTIONS(2834), + [sym_float_literal] = ACTIONS(2834), + }, + [STATE(735)] = { + [sym_line_comment] = STATE(735), + [sym_block_comment] = STATE(735), + [ts_builtin_sym_end] = ACTIONS(2838), + [sym_identifier] = ACTIONS(2840), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym_macro_rules_BANG] = ACTIONS(2838), + [anon_sym_LPAREN] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_RBRACE] = ACTIONS(2838), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_u8] = ACTIONS(2840), + [anon_sym_i8] = ACTIONS(2840), + [anon_sym_u16] = ACTIONS(2840), + [anon_sym_i16] = ACTIONS(2840), + [anon_sym_u32] = ACTIONS(2840), + [anon_sym_i32] = ACTIONS(2840), + [anon_sym_u64] = ACTIONS(2840), + [anon_sym_i64] = ACTIONS(2840), + [anon_sym_u128] = ACTIONS(2840), + [anon_sym_i128] = ACTIONS(2840), + [anon_sym_isize] = ACTIONS(2840), + [anon_sym_usize] = ACTIONS(2840), + [anon_sym_f32] = ACTIONS(2840), + [anon_sym_f64] = ACTIONS(2840), + [anon_sym_bool] = ACTIONS(2840), + [anon_sym_str] = ACTIONS(2840), + [anon_sym_char] = ACTIONS(2840), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym_PIPE] = ACTIONS(2838), + [anon_sym_LT] = ACTIONS(2838), + [anon_sym_DOT_DOT] = ACTIONS(2838), + [anon_sym_COLON_COLON] = ACTIONS(2838), + [anon_sym_POUND] = ACTIONS(2838), + [anon_sym_SQUOTE] = ACTIONS(2840), + [anon_sym_async] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [anon_sym_fn] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_gen] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_impl] = ACTIONS(2840), + [anon_sym_let] = ACTIONS(2840), + [anon_sym_loop] = ACTIONS(2840), + [anon_sym_match] = ACTIONS(2840), + [anon_sym_mod] = ACTIONS(2840), + [anon_sym_pub] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2840), + [anon_sym_trait] = ACTIONS(2840), + [anon_sym_type] = ACTIONS(2840), + [anon_sym_union] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2840), + [anon_sym_use] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_extern] = ACTIONS(2840), + [anon_sym_yield] = ACTIONS(2840), + [anon_sym_move] = ACTIONS(2840), + [anon_sym_try] = ACTIONS(2840), + [sym_integer_literal] = ACTIONS(2838), + [aux_sym_string_literal_token1] = ACTIONS(2838), + [sym_char_literal] = ACTIONS(2838), + [anon_sym_true] = ACTIONS(2840), + [anon_sym_false] = ACTIONS(2840), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2840), + [sym_super] = ACTIONS(2840), + [sym_crate] = ACTIONS(2840), + [sym_metavariable] = ACTIONS(2838), + [sym__raw_string_literal_start] = ACTIONS(2838), + [sym_float_literal] = ACTIONS(2838), + }, [STATE(736)] = { [sym_line_comment] = STATE(736), [sym_block_comment] = STATE(736), - [ts_builtin_sym_end] = ACTIONS(2784), - [sym_identifier] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_macro_rules_BANG] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_u8] = ACTIONS(2786), - [anon_sym_i8] = ACTIONS(2786), - [anon_sym_u16] = ACTIONS(2786), - [anon_sym_i16] = ACTIONS(2786), - [anon_sym_u32] = ACTIONS(2786), - [anon_sym_i32] = ACTIONS(2786), - [anon_sym_u64] = ACTIONS(2786), - [anon_sym_i64] = ACTIONS(2786), - [anon_sym_u128] = ACTIONS(2786), - [anon_sym_i128] = ACTIONS(2786), - [anon_sym_isize] = ACTIONS(2786), - [anon_sym_usize] = ACTIONS(2786), - [anon_sym_f32] = ACTIONS(2786), - [anon_sym_f64] = ACTIONS(2786), - [anon_sym_bool] = ACTIONS(2786), - [anon_sym_str] = ACTIONS(2786), - [anon_sym_char] = ACTIONS(2786), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_DOT_DOT] = ACTIONS(2784), - [anon_sym_COLON_COLON] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2786), - [anon_sym_async] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_default] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), - [anon_sym_fn] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_gen] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_impl] = ACTIONS(2786), - [anon_sym_let] = ACTIONS(2786), - [anon_sym_loop] = ACTIONS(2786), - [anon_sym_match] = ACTIONS(2786), - [anon_sym_mod] = ACTIONS(2786), - [anon_sym_pub] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_trait] = ACTIONS(2786), - [anon_sym_type] = ACTIONS(2786), - [anon_sym_union] = ACTIONS(2786), - [anon_sym_unsafe] = ACTIONS(2786), - [anon_sym_use] = ACTIONS(2786), - [anon_sym_while] = ACTIONS(2786), - [anon_sym_extern] = ACTIONS(2786), - [anon_sym_yield] = ACTIONS(2786), - [anon_sym_move] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2786), - [sym_integer_literal] = ACTIONS(2784), - [aux_sym_string_literal_token1] = ACTIONS(2784), - [sym_char_literal] = ACTIONS(2784), - [anon_sym_true] = ACTIONS(2786), - [anon_sym_false] = ACTIONS(2786), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2786), - [sym_super] = ACTIONS(2786), - [sym_crate] = ACTIONS(2786), - [sym_metavariable] = ACTIONS(2784), - [sym__raw_string_literal_start] = ACTIONS(2784), - [sym_float_literal] = ACTIONS(2784), + [ts_builtin_sym_end] = ACTIONS(2842), + [sym_identifier] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym_macro_rules_BANG] = ACTIONS(2842), + [anon_sym_LPAREN] = ACTIONS(2842), + [anon_sym_LBRACK] = ACTIONS(2842), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_RBRACE] = ACTIONS(2842), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_u8] = ACTIONS(2844), + [anon_sym_i8] = ACTIONS(2844), + [anon_sym_u16] = ACTIONS(2844), + [anon_sym_i16] = ACTIONS(2844), + [anon_sym_u32] = ACTIONS(2844), + [anon_sym_i32] = ACTIONS(2844), + [anon_sym_u64] = ACTIONS(2844), + [anon_sym_i64] = ACTIONS(2844), + [anon_sym_u128] = ACTIONS(2844), + [anon_sym_i128] = ACTIONS(2844), + [anon_sym_isize] = ACTIONS(2844), + [anon_sym_usize] = ACTIONS(2844), + [anon_sym_f32] = ACTIONS(2844), + [anon_sym_f64] = ACTIONS(2844), + [anon_sym_bool] = ACTIONS(2844), + [anon_sym_str] = ACTIONS(2844), + [anon_sym_char] = ACTIONS(2844), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2842), + [anon_sym_PIPE] = ACTIONS(2842), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_DOT_DOT] = ACTIONS(2842), + [anon_sym_COLON_COLON] = ACTIONS(2842), + [anon_sym_POUND] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2844), + [anon_sym_async] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [anon_sym_fn] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_gen] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_impl] = ACTIONS(2844), + [anon_sym_let] = ACTIONS(2844), + [anon_sym_loop] = ACTIONS(2844), + [anon_sym_match] = ACTIONS(2844), + [anon_sym_mod] = ACTIONS(2844), + [anon_sym_pub] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2844), + [anon_sym_trait] = ACTIONS(2844), + [anon_sym_type] = ACTIONS(2844), + [anon_sym_union] = ACTIONS(2844), + [anon_sym_unsafe] = ACTIONS(2844), + [anon_sym_use] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_extern] = ACTIONS(2844), + [anon_sym_yield] = ACTIONS(2844), + [anon_sym_move] = ACTIONS(2844), + [anon_sym_try] = ACTIONS(2844), + [sym_integer_literal] = ACTIONS(2842), + [aux_sym_string_literal_token1] = ACTIONS(2842), + [sym_char_literal] = ACTIONS(2842), + [anon_sym_true] = ACTIONS(2844), + [anon_sym_false] = ACTIONS(2844), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2844), + [sym_super] = ACTIONS(2844), + [sym_crate] = ACTIONS(2844), + [sym_metavariable] = ACTIONS(2842), + [sym__raw_string_literal_start] = ACTIONS(2842), + [sym_float_literal] = ACTIONS(2842), }, [STATE(737)] = { [sym_line_comment] = STATE(737), [sym_block_comment] = STATE(737), - [ts_builtin_sym_end] = ACTIONS(2788), - [sym_identifier] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_macro_rules_BANG] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_RBRACE] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_u8] = ACTIONS(2790), - [anon_sym_i8] = ACTIONS(2790), - [anon_sym_u16] = ACTIONS(2790), - [anon_sym_i16] = ACTIONS(2790), - [anon_sym_u32] = ACTIONS(2790), - [anon_sym_i32] = ACTIONS(2790), - [anon_sym_u64] = ACTIONS(2790), - [anon_sym_i64] = ACTIONS(2790), - [anon_sym_u128] = ACTIONS(2790), - [anon_sym_i128] = ACTIONS(2790), - [anon_sym_isize] = ACTIONS(2790), - [anon_sym_usize] = ACTIONS(2790), - [anon_sym_f32] = ACTIONS(2790), - [anon_sym_f64] = ACTIONS(2790), - [anon_sym_bool] = ACTIONS(2790), - [anon_sym_str] = ACTIONS(2790), - [anon_sym_char] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_DOT_DOT] = ACTIONS(2788), - [anon_sym_COLON_COLON] = ACTIONS(2788), - [anon_sym_POUND] = ACTIONS(2788), - [anon_sym_SQUOTE] = ACTIONS(2790), - [anon_sym_async] = ACTIONS(2790), - [anon_sym_break] = ACTIONS(2790), - [anon_sym_const] = ACTIONS(2790), - [anon_sym_continue] = ACTIONS(2790), - [anon_sym_default] = ACTIONS(2790), - [anon_sym_enum] = ACTIONS(2790), - [anon_sym_fn] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_gen] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_impl] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_loop] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_mod] = ACTIONS(2790), - [anon_sym_pub] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_static] = ACTIONS(2790), - [anon_sym_struct] = ACTIONS(2790), - [anon_sym_trait] = ACTIONS(2790), - [anon_sym_type] = ACTIONS(2790), - [anon_sym_union] = ACTIONS(2790), - [anon_sym_unsafe] = ACTIONS(2790), - [anon_sym_use] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_extern] = ACTIONS(2790), - [anon_sym_yield] = ACTIONS(2790), - [anon_sym_move] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2790), - [sym_integer_literal] = ACTIONS(2788), - [aux_sym_string_literal_token1] = ACTIONS(2788), - [sym_char_literal] = ACTIONS(2788), - [anon_sym_true] = ACTIONS(2790), - [anon_sym_false] = ACTIONS(2790), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2790), - [sym_super] = ACTIONS(2790), - [sym_crate] = ACTIONS(2790), - [sym_metavariable] = ACTIONS(2788), - [sym__raw_string_literal_start] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2788), + [ts_builtin_sym_end] = ACTIONS(2846), + [sym_identifier] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym_macro_rules_BANG] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_RBRACE] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_u8] = ACTIONS(2848), + [anon_sym_i8] = ACTIONS(2848), + [anon_sym_u16] = ACTIONS(2848), + [anon_sym_i16] = ACTIONS(2848), + [anon_sym_u32] = ACTIONS(2848), + [anon_sym_i32] = ACTIONS(2848), + [anon_sym_u64] = ACTIONS(2848), + [anon_sym_i64] = ACTIONS(2848), + [anon_sym_u128] = ACTIONS(2848), + [anon_sym_i128] = ACTIONS(2848), + [anon_sym_isize] = ACTIONS(2848), + [anon_sym_usize] = ACTIONS(2848), + [anon_sym_f32] = ACTIONS(2848), + [anon_sym_f64] = ACTIONS(2848), + [anon_sym_bool] = ACTIONS(2848), + [anon_sym_str] = ACTIONS(2848), + [anon_sym_char] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(2846), + [anon_sym_LT] = ACTIONS(2846), + [anon_sym_DOT_DOT] = ACTIONS(2846), + [anon_sym_COLON_COLON] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2848), + [anon_sym_async] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [anon_sym_fn] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_gen] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_impl] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_loop] = ACTIONS(2848), + [anon_sym_match] = ACTIONS(2848), + [anon_sym_mod] = ACTIONS(2848), + [anon_sym_pub] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2848), + [anon_sym_trait] = ACTIONS(2848), + [anon_sym_type] = ACTIONS(2848), + [anon_sym_union] = ACTIONS(2848), + [anon_sym_unsafe] = ACTIONS(2848), + [anon_sym_use] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_extern] = ACTIONS(2848), + [anon_sym_yield] = ACTIONS(2848), + [anon_sym_move] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [sym_integer_literal] = ACTIONS(2846), + [aux_sym_string_literal_token1] = ACTIONS(2846), + [sym_char_literal] = ACTIONS(2846), + [anon_sym_true] = ACTIONS(2848), + [anon_sym_false] = ACTIONS(2848), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2848), + [sym_super] = ACTIONS(2848), + [sym_crate] = ACTIONS(2848), + [sym_metavariable] = ACTIONS(2846), + [sym__raw_string_literal_start] = ACTIONS(2846), + [sym_float_literal] = ACTIONS(2846), }, [STATE(738)] = { [sym_line_comment] = STATE(738), [sym_block_comment] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(2792), - [sym_identifier] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_macro_rules_BANG] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_RBRACE] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_u8] = ACTIONS(2794), - [anon_sym_i8] = ACTIONS(2794), - [anon_sym_u16] = ACTIONS(2794), - [anon_sym_i16] = ACTIONS(2794), - [anon_sym_u32] = ACTIONS(2794), - [anon_sym_i32] = ACTIONS(2794), - [anon_sym_u64] = ACTIONS(2794), - [anon_sym_i64] = ACTIONS(2794), - [anon_sym_u128] = ACTIONS(2794), - [anon_sym_i128] = ACTIONS(2794), - [anon_sym_isize] = ACTIONS(2794), - [anon_sym_usize] = ACTIONS(2794), - [anon_sym_f32] = ACTIONS(2794), - [anon_sym_f64] = ACTIONS(2794), - [anon_sym_bool] = ACTIONS(2794), - [anon_sym_str] = ACTIONS(2794), - [anon_sym_char] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2792), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_DOT_DOT] = ACTIONS(2792), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(2792), - [anon_sym_SQUOTE] = ACTIONS(2794), - [anon_sym_async] = ACTIONS(2794), - [anon_sym_break] = ACTIONS(2794), - [anon_sym_const] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2794), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_enum] = ACTIONS(2794), - [anon_sym_fn] = ACTIONS(2794), - [anon_sym_for] = ACTIONS(2794), - [anon_sym_gen] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_impl] = ACTIONS(2794), - [anon_sym_let] = ACTIONS(2794), - [anon_sym_loop] = ACTIONS(2794), - [anon_sym_match] = ACTIONS(2794), - [anon_sym_mod] = ACTIONS(2794), - [anon_sym_pub] = ACTIONS(2794), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_static] = ACTIONS(2794), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_trait] = ACTIONS(2794), - [anon_sym_type] = ACTIONS(2794), - [anon_sym_union] = ACTIONS(2794), - [anon_sym_unsafe] = ACTIONS(2794), - [anon_sym_use] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2794), - [anon_sym_extern] = ACTIONS(2794), - [anon_sym_yield] = ACTIONS(2794), - [anon_sym_move] = ACTIONS(2794), - [anon_sym_try] = ACTIONS(2794), - [sym_integer_literal] = ACTIONS(2792), - [aux_sym_string_literal_token1] = ACTIONS(2792), - [sym_char_literal] = ACTIONS(2792), - [anon_sym_true] = ACTIONS(2794), - [anon_sym_false] = ACTIONS(2794), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2794), - [sym_super] = ACTIONS(2794), - [sym_crate] = ACTIONS(2794), - [sym_metavariable] = ACTIONS(2792), - [sym__raw_string_literal_start] = ACTIONS(2792), - [sym_float_literal] = ACTIONS(2792), + [ts_builtin_sym_end] = ACTIONS(2850), + [sym_identifier] = ACTIONS(2852), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym_macro_rules_BANG] = ACTIONS(2850), + [anon_sym_LPAREN] = ACTIONS(2850), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_RBRACE] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_u8] = ACTIONS(2852), + [anon_sym_i8] = ACTIONS(2852), + [anon_sym_u16] = ACTIONS(2852), + [anon_sym_i16] = ACTIONS(2852), + [anon_sym_u32] = ACTIONS(2852), + [anon_sym_i32] = ACTIONS(2852), + [anon_sym_u64] = ACTIONS(2852), + [anon_sym_i64] = ACTIONS(2852), + [anon_sym_u128] = ACTIONS(2852), + [anon_sym_i128] = ACTIONS(2852), + [anon_sym_isize] = ACTIONS(2852), + [anon_sym_usize] = ACTIONS(2852), + [anon_sym_f32] = ACTIONS(2852), + [anon_sym_f64] = ACTIONS(2852), + [anon_sym_bool] = ACTIONS(2852), + [anon_sym_str] = ACTIONS(2852), + [anon_sym_char] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2850), + [anon_sym_PIPE] = ACTIONS(2850), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_DOT_DOT] = ACTIONS(2850), + [anon_sym_COLON_COLON] = ACTIONS(2850), + [anon_sym_POUND] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2852), + [anon_sym_async] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_fn] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_gen] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_impl] = ACTIONS(2852), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_loop] = ACTIONS(2852), + [anon_sym_match] = ACTIONS(2852), + [anon_sym_mod] = ACTIONS(2852), + [anon_sym_pub] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_trait] = ACTIONS(2852), + [anon_sym_type] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_unsafe] = ACTIONS(2852), + [anon_sym_use] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym_yield] = ACTIONS(2852), + [anon_sym_move] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [sym_integer_literal] = ACTIONS(2850), + [aux_sym_string_literal_token1] = ACTIONS(2850), + [sym_char_literal] = ACTIONS(2850), + [anon_sym_true] = ACTIONS(2852), + [anon_sym_false] = ACTIONS(2852), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2852), + [sym_super] = ACTIONS(2852), + [sym_crate] = ACTIONS(2852), + [sym_metavariable] = ACTIONS(2850), + [sym__raw_string_literal_start] = ACTIONS(2850), + [sym_float_literal] = ACTIONS(2850), }, [STATE(739)] = { [sym_line_comment] = STATE(739), [sym_block_comment] = STATE(739), - [ts_builtin_sym_end] = ACTIONS(2796), - [sym_identifier] = ACTIONS(2798), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_macro_rules_BANG] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_RBRACE] = ACTIONS(2796), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_u8] = ACTIONS(2798), - [anon_sym_i8] = ACTIONS(2798), - [anon_sym_u16] = ACTIONS(2798), - [anon_sym_i16] = ACTIONS(2798), - [anon_sym_u32] = ACTIONS(2798), - [anon_sym_i32] = ACTIONS(2798), - [anon_sym_u64] = ACTIONS(2798), - [anon_sym_i64] = ACTIONS(2798), - [anon_sym_u128] = ACTIONS(2798), - [anon_sym_i128] = ACTIONS(2798), - [anon_sym_isize] = ACTIONS(2798), - [anon_sym_usize] = ACTIONS(2798), - [anon_sym_f32] = ACTIONS(2798), - [anon_sym_f64] = ACTIONS(2798), - [anon_sym_bool] = ACTIONS(2798), - [anon_sym_str] = ACTIONS(2798), - [anon_sym_char] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2796), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_LT] = ACTIONS(2796), - [anon_sym_DOT_DOT] = ACTIONS(2796), - [anon_sym_COLON_COLON] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(2796), - [anon_sym_SQUOTE] = ACTIONS(2798), - [anon_sym_async] = ACTIONS(2798), - [anon_sym_break] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2798), - [anon_sym_continue] = ACTIONS(2798), - [anon_sym_default] = ACTIONS(2798), - [anon_sym_enum] = ACTIONS(2798), - [anon_sym_fn] = ACTIONS(2798), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_gen] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_impl] = ACTIONS(2798), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_loop] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_mod] = ACTIONS(2798), - [anon_sym_pub] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_static] = ACTIONS(2798), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_trait] = ACTIONS(2798), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_union] = ACTIONS(2798), - [anon_sym_unsafe] = ACTIONS(2798), - [anon_sym_use] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_extern] = ACTIONS(2798), - [anon_sym_yield] = ACTIONS(2798), - [anon_sym_move] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [sym_integer_literal] = ACTIONS(2796), - [aux_sym_string_literal_token1] = ACTIONS(2796), - [sym_char_literal] = ACTIONS(2796), - [anon_sym_true] = ACTIONS(2798), - [anon_sym_false] = ACTIONS(2798), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2798), - [sym_super] = ACTIONS(2798), - [sym_crate] = ACTIONS(2798), - [sym_metavariable] = ACTIONS(2796), - [sym__raw_string_literal_start] = ACTIONS(2796), - [sym_float_literal] = ACTIONS(2796), + [ts_builtin_sym_end] = ACTIONS(2854), + [sym_identifier] = ACTIONS(2856), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_macro_rules_BANG] = ACTIONS(2854), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_u8] = ACTIONS(2856), + [anon_sym_i8] = ACTIONS(2856), + [anon_sym_u16] = ACTIONS(2856), + [anon_sym_i16] = ACTIONS(2856), + [anon_sym_u32] = ACTIONS(2856), + [anon_sym_i32] = ACTIONS(2856), + [anon_sym_u64] = ACTIONS(2856), + [anon_sym_i64] = ACTIONS(2856), + [anon_sym_u128] = ACTIONS(2856), + [anon_sym_i128] = ACTIONS(2856), + [anon_sym_isize] = ACTIONS(2856), + [anon_sym_usize] = ACTIONS(2856), + [anon_sym_f32] = ACTIONS(2856), + [anon_sym_f64] = ACTIONS(2856), + [anon_sym_bool] = ACTIONS(2856), + [anon_sym_str] = ACTIONS(2856), + [anon_sym_char] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_DOT_DOT] = ACTIONS(2854), + [anon_sym_COLON_COLON] = ACTIONS(2854), + [anon_sym_POUND] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2856), + [anon_sym_async] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_fn] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_gen] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_impl] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_loop] = ACTIONS(2856), + [anon_sym_match] = ACTIONS(2856), + [anon_sym_mod] = ACTIONS(2856), + [anon_sym_pub] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_trait] = ACTIONS(2856), + [anon_sym_type] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_unsafe] = ACTIONS(2856), + [anon_sym_use] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_move] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [sym_integer_literal] = ACTIONS(2854), + [aux_sym_string_literal_token1] = ACTIONS(2854), + [sym_char_literal] = ACTIONS(2854), + [anon_sym_true] = ACTIONS(2856), + [anon_sym_false] = ACTIONS(2856), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2856), + [sym_super] = ACTIONS(2856), + [sym_crate] = ACTIONS(2856), + [sym_metavariable] = ACTIONS(2854), + [sym__raw_string_literal_start] = ACTIONS(2854), + [sym_float_literal] = ACTIONS(2854), }, [STATE(740)] = { [sym_line_comment] = STATE(740), [sym_block_comment] = STATE(740), - [ts_builtin_sym_end] = ACTIONS(2800), - [sym_identifier] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2800), - [anon_sym_macro_rules_BANG] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_RBRACE] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_u8] = ACTIONS(2802), - [anon_sym_i8] = ACTIONS(2802), - [anon_sym_u16] = ACTIONS(2802), - [anon_sym_i16] = ACTIONS(2802), - [anon_sym_u32] = ACTIONS(2802), - [anon_sym_i32] = ACTIONS(2802), - [anon_sym_u64] = ACTIONS(2802), - [anon_sym_i64] = ACTIONS(2802), - [anon_sym_u128] = ACTIONS(2802), - [anon_sym_i128] = ACTIONS(2802), - [anon_sym_isize] = ACTIONS(2802), - [anon_sym_usize] = ACTIONS(2802), - [anon_sym_f32] = ACTIONS(2802), - [anon_sym_f64] = ACTIONS(2802), - [anon_sym_bool] = ACTIONS(2802), - [anon_sym_str] = ACTIONS(2802), - [anon_sym_char] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2800), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_DOT_DOT] = ACTIONS(2800), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2802), - [anon_sym_async] = ACTIONS(2802), - [anon_sym_break] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2802), - [anon_sym_continue] = ACTIONS(2802), - [anon_sym_default] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2802), - [anon_sym_fn] = ACTIONS(2802), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_gen] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_impl] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_loop] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_mod] = ACTIONS(2802), - [anon_sym_pub] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_static] = ACTIONS(2802), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_trait] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2802), - [anon_sym_union] = ACTIONS(2802), - [anon_sym_unsafe] = ACTIONS(2802), - [anon_sym_use] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_extern] = ACTIONS(2802), - [anon_sym_yield] = ACTIONS(2802), - [anon_sym_move] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [sym_integer_literal] = ACTIONS(2800), - [aux_sym_string_literal_token1] = ACTIONS(2800), - [sym_char_literal] = ACTIONS(2800), - [anon_sym_true] = ACTIONS(2802), - [anon_sym_false] = ACTIONS(2802), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2802), - [sym_super] = ACTIONS(2802), - [sym_crate] = ACTIONS(2802), - [sym_metavariable] = ACTIONS(2800), - [sym__raw_string_literal_start] = ACTIONS(2800), - [sym_float_literal] = ACTIONS(2800), + [ts_builtin_sym_end] = ACTIONS(2858), + [sym_identifier] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_macro_rules_BANG] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_u8] = ACTIONS(2860), + [anon_sym_i8] = ACTIONS(2860), + [anon_sym_u16] = ACTIONS(2860), + [anon_sym_i16] = ACTIONS(2860), + [anon_sym_u32] = ACTIONS(2860), + [anon_sym_i32] = ACTIONS(2860), + [anon_sym_u64] = ACTIONS(2860), + [anon_sym_i64] = ACTIONS(2860), + [anon_sym_u128] = ACTIONS(2860), + [anon_sym_i128] = ACTIONS(2860), + [anon_sym_isize] = ACTIONS(2860), + [anon_sym_usize] = ACTIONS(2860), + [anon_sym_f32] = ACTIONS(2860), + [anon_sym_f64] = ACTIONS(2860), + [anon_sym_bool] = ACTIONS(2860), + [anon_sym_str] = ACTIONS(2860), + [anon_sym_char] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_DOT_DOT] = ACTIONS(2858), + [anon_sym_COLON_COLON] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2860), + [anon_sym_async] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_fn] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_gen] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_impl] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_loop] = ACTIONS(2860), + [anon_sym_match] = ACTIONS(2860), + [anon_sym_mod] = ACTIONS(2860), + [anon_sym_pub] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_trait] = ACTIONS(2860), + [anon_sym_type] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_unsafe] = ACTIONS(2860), + [anon_sym_use] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_move] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [sym_integer_literal] = ACTIONS(2858), + [aux_sym_string_literal_token1] = ACTIONS(2858), + [sym_char_literal] = ACTIONS(2858), + [anon_sym_true] = ACTIONS(2860), + [anon_sym_false] = ACTIONS(2860), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2860), + [sym_super] = ACTIONS(2860), + [sym_crate] = ACTIONS(2860), + [sym_metavariable] = ACTIONS(2858), + [sym__raw_string_literal_start] = ACTIONS(2858), + [sym_float_literal] = ACTIONS(2858), }, [STATE(741)] = { [sym_line_comment] = STATE(741), [sym_block_comment] = STATE(741), - [ts_builtin_sym_end] = ACTIONS(2804), - [sym_identifier] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2804), - [anon_sym_macro_rules_BANG] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_RBRACE] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_u8] = ACTIONS(2806), - [anon_sym_i8] = ACTIONS(2806), - [anon_sym_u16] = ACTIONS(2806), - [anon_sym_i16] = ACTIONS(2806), - [anon_sym_u32] = ACTIONS(2806), - [anon_sym_i32] = ACTIONS(2806), - [anon_sym_u64] = ACTIONS(2806), - [anon_sym_i64] = ACTIONS(2806), - [anon_sym_u128] = ACTIONS(2806), - [anon_sym_i128] = ACTIONS(2806), - [anon_sym_isize] = ACTIONS(2806), - [anon_sym_usize] = ACTIONS(2806), - [anon_sym_f32] = ACTIONS(2806), - [anon_sym_f64] = ACTIONS(2806), - [anon_sym_bool] = ACTIONS(2806), - [anon_sym_str] = ACTIONS(2806), - [anon_sym_char] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2804), - [anon_sym_PIPE] = ACTIONS(2804), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_DOT_DOT] = ACTIONS(2804), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_POUND] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2806), - [anon_sym_async] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_default] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_fn] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_gen] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_impl] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_loop] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_mod] = ACTIONS(2806), - [anon_sym_pub] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_trait] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_unsafe] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_move] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [sym_integer_literal] = ACTIONS(2804), - [aux_sym_string_literal_token1] = ACTIONS(2804), - [sym_char_literal] = ACTIONS(2804), - [anon_sym_true] = ACTIONS(2806), - [anon_sym_false] = ACTIONS(2806), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2806), - [sym_super] = ACTIONS(2806), - [sym_crate] = ACTIONS(2806), - [sym_metavariable] = ACTIONS(2804), - [sym__raw_string_literal_start] = ACTIONS(2804), - [sym_float_literal] = ACTIONS(2804), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_macro_rules_BANG] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_u8] = ACTIONS(2864), + [anon_sym_i8] = ACTIONS(2864), + [anon_sym_u16] = ACTIONS(2864), + [anon_sym_i16] = ACTIONS(2864), + [anon_sym_u32] = ACTIONS(2864), + [anon_sym_i32] = ACTIONS(2864), + [anon_sym_u64] = ACTIONS(2864), + [anon_sym_i64] = ACTIONS(2864), + [anon_sym_u128] = ACTIONS(2864), + [anon_sym_i128] = ACTIONS(2864), + [anon_sym_isize] = ACTIONS(2864), + [anon_sym_usize] = ACTIONS(2864), + [anon_sym_f32] = ACTIONS(2864), + [anon_sym_f64] = ACTIONS(2864), + [anon_sym_bool] = ACTIONS(2864), + [anon_sym_str] = ACTIONS(2864), + [anon_sym_char] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_PIPE] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2862), + [anon_sym_COLON_COLON] = ACTIONS(2862), + [anon_sym_POUND] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2864), + [anon_sym_async] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [anon_sym_fn] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_gen] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_impl] = ACTIONS(2864), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_loop] = ACTIONS(2864), + [anon_sym_match] = ACTIONS(2864), + [anon_sym_mod] = ACTIONS(2864), + [anon_sym_pub] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2864), + [anon_sym_trait] = ACTIONS(2864), + [anon_sym_type] = ACTIONS(2864), + [anon_sym_union] = ACTIONS(2864), + [anon_sym_unsafe] = ACTIONS(2864), + [anon_sym_use] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_extern] = ACTIONS(2864), + [anon_sym_yield] = ACTIONS(2864), + [anon_sym_move] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [sym_integer_literal] = ACTIONS(2862), + [aux_sym_string_literal_token1] = ACTIONS(2862), + [sym_char_literal] = ACTIONS(2862), + [anon_sym_true] = ACTIONS(2864), + [anon_sym_false] = ACTIONS(2864), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2864), + [sym_super] = ACTIONS(2864), + [sym_crate] = ACTIONS(2864), + [sym_metavariable] = ACTIONS(2862), + [sym__raw_string_literal_start] = ACTIONS(2862), + [sym_float_literal] = ACTIONS(2862), }, [STATE(742)] = { [sym_line_comment] = STATE(742), [sym_block_comment] = STATE(742), - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_macro_rules_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_RBRACE] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_u8] = ACTIONS(2810), - [anon_sym_i8] = ACTIONS(2810), - [anon_sym_u16] = ACTIONS(2810), - [anon_sym_i16] = ACTIONS(2810), - [anon_sym_u32] = ACTIONS(2810), - [anon_sym_i32] = ACTIONS(2810), - [anon_sym_u64] = ACTIONS(2810), - [anon_sym_i64] = ACTIONS(2810), - [anon_sym_u128] = ACTIONS(2810), - [anon_sym_i128] = ACTIONS(2810), - [anon_sym_isize] = ACTIONS(2810), - [anon_sym_usize] = ACTIONS(2810), - [anon_sym_f32] = ACTIONS(2810), - [anon_sym_f64] = ACTIONS(2810), - [anon_sym_bool] = ACTIONS(2810), - [anon_sym_str] = ACTIONS(2810), - [anon_sym_char] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_DOT_DOT] = ACTIONS(2808), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_POUND] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2810), - [anon_sym_async] = ACTIONS(2810), - [anon_sym_break] = ACTIONS(2810), - [anon_sym_const] = ACTIONS(2810), - [anon_sym_continue] = ACTIONS(2810), - [anon_sym_default] = ACTIONS(2810), - [anon_sym_enum] = ACTIONS(2810), - [anon_sym_fn] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_gen] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_impl] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_loop] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_mod] = ACTIONS(2810), - [anon_sym_pub] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_static] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_trait] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_union] = ACTIONS(2810), - [anon_sym_unsafe] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_extern] = ACTIONS(2810), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_move] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [sym_integer_literal] = ACTIONS(2808), - [aux_sym_string_literal_token1] = ACTIONS(2808), - [sym_char_literal] = ACTIONS(2808), - [anon_sym_true] = ACTIONS(2810), - [anon_sym_false] = ACTIONS(2810), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2810), - [sym_super] = ACTIONS(2810), - [sym_crate] = ACTIONS(2810), - [sym_metavariable] = ACTIONS(2808), - [sym__raw_string_literal_start] = ACTIONS(2808), - [sym_float_literal] = ACTIONS(2808), + [ts_builtin_sym_end] = ACTIONS(2866), + [sym_identifier] = ACTIONS(2868), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym_macro_rules_BANG] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_u8] = ACTIONS(2868), + [anon_sym_i8] = ACTIONS(2868), + [anon_sym_u16] = ACTIONS(2868), + [anon_sym_i16] = ACTIONS(2868), + [anon_sym_u32] = ACTIONS(2868), + [anon_sym_i32] = ACTIONS(2868), + [anon_sym_u64] = ACTIONS(2868), + [anon_sym_i64] = ACTIONS(2868), + [anon_sym_u128] = ACTIONS(2868), + [anon_sym_i128] = ACTIONS(2868), + [anon_sym_isize] = ACTIONS(2868), + [anon_sym_usize] = ACTIONS(2868), + [anon_sym_f32] = ACTIONS(2868), + [anon_sym_f64] = ACTIONS(2868), + [anon_sym_bool] = ACTIONS(2868), + [anon_sym_str] = ACTIONS(2868), + [anon_sym_char] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2866), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_DOT_DOT] = ACTIONS(2866), + [anon_sym_COLON_COLON] = ACTIONS(2866), + [anon_sym_POUND] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2868), + [anon_sym_async] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_fn] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_gen] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_impl] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_loop] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2868), + [anon_sym_mod] = ACTIONS(2868), + [anon_sym_pub] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_trait] = ACTIONS(2868), + [anon_sym_type] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_unsafe] = ACTIONS(2868), + [anon_sym_use] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_move] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [sym_integer_literal] = ACTIONS(2866), + [aux_sym_string_literal_token1] = ACTIONS(2866), + [sym_char_literal] = ACTIONS(2866), + [anon_sym_true] = ACTIONS(2868), + [anon_sym_false] = ACTIONS(2868), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2868), + [sym_super] = ACTIONS(2868), + [sym_crate] = ACTIONS(2868), + [sym_metavariable] = ACTIONS(2866), + [sym__raw_string_literal_start] = ACTIONS(2866), + [sym_float_literal] = ACTIONS(2866), }, [STATE(743)] = { [sym_line_comment] = STATE(743), [sym_block_comment] = STATE(743), - [ts_builtin_sym_end] = ACTIONS(2812), - [sym_identifier] = ACTIONS(2814), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_macro_rules_BANG] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_u8] = ACTIONS(2814), - [anon_sym_i8] = ACTIONS(2814), - [anon_sym_u16] = ACTIONS(2814), - [anon_sym_i16] = ACTIONS(2814), - [anon_sym_u32] = ACTIONS(2814), - [anon_sym_i32] = ACTIONS(2814), - [anon_sym_u64] = ACTIONS(2814), - [anon_sym_i64] = ACTIONS(2814), - [anon_sym_u128] = ACTIONS(2814), - [anon_sym_i128] = ACTIONS(2814), - [anon_sym_isize] = ACTIONS(2814), - [anon_sym_usize] = ACTIONS(2814), - [anon_sym_f32] = ACTIONS(2814), - [anon_sym_f64] = ACTIONS(2814), - [anon_sym_bool] = ACTIONS(2814), - [anon_sym_str] = ACTIONS(2814), - [anon_sym_char] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_DOT_DOT] = ACTIONS(2812), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_POUND] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2814), - [anon_sym_async] = ACTIONS(2814), - [anon_sym_break] = ACTIONS(2814), - [anon_sym_const] = ACTIONS(2814), - [anon_sym_continue] = ACTIONS(2814), - [anon_sym_default] = ACTIONS(2814), - [anon_sym_enum] = ACTIONS(2814), - [anon_sym_fn] = ACTIONS(2814), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_gen] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_impl] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_loop] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_mod] = ACTIONS(2814), - [anon_sym_pub] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_static] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2814), - [anon_sym_trait] = ACTIONS(2814), - [anon_sym_type] = ACTIONS(2814), - [anon_sym_union] = ACTIONS(2814), - [anon_sym_unsafe] = ACTIONS(2814), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_extern] = ACTIONS(2814), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_move] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [sym_integer_literal] = ACTIONS(2812), - [aux_sym_string_literal_token1] = ACTIONS(2812), - [sym_char_literal] = ACTIONS(2812), - [anon_sym_true] = ACTIONS(2814), - [anon_sym_false] = ACTIONS(2814), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2814), - [sym_super] = ACTIONS(2814), - [sym_crate] = ACTIONS(2814), - [sym_metavariable] = ACTIONS(2812), - [sym__raw_string_literal_start] = ACTIONS(2812), - [sym_float_literal] = ACTIONS(2812), + [ts_builtin_sym_end] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_macro_rules_BANG] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_u8] = ACTIONS(2872), + [anon_sym_i8] = ACTIONS(2872), + [anon_sym_u16] = ACTIONS(2872), + [anon_sym_i16] = ACTIONS(2872), + [anon_sym_u32] = ACTIONS(2872), + [anon_sym_i32] = ACTIONS(2872), + [anon_sym_u64] = ACTIONS(2872), + [anon_sym_i64] = ACTIONS(2872), + [anon_sym_u128] = ACTIONS(2872), + [anon_sym_i128] = ACTIONS(2872), + [anon_sym_isize] = ACTIONS(2872), + [anon_sym_usize] = ACTIONS(2872), + [anon_sym_f32] = ACTIONS(2872), + [anon_sym_f64] = ACTIONS(2872), + [anon_sym_bool] = ACTIONS(2872), + [anon_sym_str] = ACTIONS(2872), + [anon_sym_char] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_DOT_DOT] = ACTIONS(2870), + [anon_sym_COLON_COLON] = ACTIONS(2870), + [anon_sym_POUND] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2872), + [anon_sym_async] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_fn] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_gen] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_impl] = ACTIONS(2872), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_loop] = ACTIONS(2872), + [anon_sym_match] = ACTIONS(2872), + [anon_sym_mod] = ACTIONS(2872), + [anon_sym_pub] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_trait] = ACTIONS(2872), + [anon_sym_type] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_unsafe] = ACTIONS(2872), + [anon_sym_use] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym_yield] = ACTIONS(2872), + [anon_sym_move] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [sym_integer_literal] = ACTIONS(2870), + [aux_sym_string_literal_token1] = ACTIONS(2870), + [sym_char_literal] = ACTIONS(2870), + [anon_sym_true] = ACTIONS(2872), + [anon_sym_false] = ACTIONS(2872), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2872), + [sym_super] = ACTIONS(2872), + [sym_crate] = ACTIONS(2872), + [sym_metavariable] = ACTIONS(2870), + [sym__raw_string_literal_start] = ACTIONS(2870), + [sym_float_literal] = ACTIONS(2870), }, [STATE(744)] = { [sym_line_comment] = STATE(744), [sym_block_comment] = STATE(744), - [ts_builtin_sym_end] = ACTIONS(2816), - [sym_identifier] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_macro_rules_BANG] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_u8] = ACTIONS(2818), - [anon_sym_i8] = ACTIONS(2818), - [anon_sym_u16] = ACTIONS(2818), - [anon_sym_i16] = ACTIONS(2818), - [anon_sym_u32] = ACTIONS(2818), - [anon_sym_i32] = ACTIONS(2818), - [anon_sym_u64] = ACTIONS(2818), - [anon_sym_i64] = ACTIONS(2818), - [anon_sym_u128] = ACTIONS(2818), - [anon_sym_i128] = ACTIONS(2818), - [anon_sym_isize] = ACTIONS(2818), - [anon_sym_usize] = ACTIONS(2818), - [anon_sym_f32] = ACTIONS(2818), - [anon_sym_f64] = ACTIONS(2818), - [anon_sym_bool] = ACTIONS(2818), - [anon_sym_str] = ACTIONS(2818), - [anon_sym_char] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_DOT_DOT] = ACTIONS(2816), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_POUND] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2818), - [anon_sym_async] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_default] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_fn] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_gen] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_impl] = ACTIONS(2818), - [anon_sym_let] = ACTIONS(2818), - [anon_sym_loop] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_mod] = ACTIONS(2818), - [anon_sym_pub] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_trait] = ACTIONS(2818), - [anon_sym_type] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_unsafe] = ACTIONS(2818), - [anon_sym_use] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym_yield] = ACTIONS(2818), - [anon_sym_move] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [sym_integer_literal] = ACTIONS(2816), - [aux_sym_string_literal_token1] = ACTIONS(2816), - [sym_char_literal] = ACTIONS(2816), - [anon_sym_true] = ACTIONS(2818), - [anon_sym_false] = ACTIONS(2818), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2818), - [sym_super] = ACTIONS(2818), - [sym_crate] = ACTIONS(2818), - [sym_metavariable] = ACTIONS(2816), - [sym__raw_string_literal_start] = ACTIONS(2816), - [sym_float_literal] = ACTIONS(2816), + [ts_builtin_sym_end] = ACTIONS(2874), + [sym_identifier] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym_macro_rules_BANG] = ACTIONS(2874), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_u8] = ACTIONS(2876), + [anon_sym_i8] = ACTIONS(2876), + [anon_sym_u16] = ACTIONS(2876), + [anon_sym_i16] = ACTIONS(2876), + [anon_sym_u32] = ACTIONS(2876), + [anon_sym_i32] = ACTIONS(2876), + [anon_sym_u64] = ACTIONS(2876), + [anon_sym_i64] = ACTIONS(2876), + [anon_sym_u128] = ACTIONS(2876), + [anon_sym_i128] = ACTIONS(2876), + [anon_sym_isize] = ACTIONS(2876), + [anon_sym_usize] = ACTIONS(2876), + [anon_sym_f32] = ACTIONS(2876), + [anon_sym_f64] = ACTIONS(2876), + [anon_sym_bool] = ACTIONS(2876), + [anon_sym_str] = ACTIONS(2876), + [anon_sym_char] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_PIPE] = ACTIONS(2874), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_DOT_DOT] = ACTIONS(2874), + [anon_sym_COLON_COLON] = ACTIONS(2874), + [anon_sym_POUND] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2876), + [anon_sym_async] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_fn] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_gen] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_impl] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_loop] = ACTIONS(2876), + [anon_sym_match] = ACTIONS(2876), + [anon_sym_mod] = ACTIONS(2876), + [anon_sym_pub] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2876), + [anon_sym_trait] = ACTIONS(2876), + [anon_sym_type] = ACTIONS(2876), + [anon_sym_union] = ACTIONS(2876), + [anon_sym_unsafe] = ACTIONS(2876), + [anon_sym_use] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_move] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [sym_integer_literal] = ACTIONS(2874), + [aux_sym_string_literal_token1] = ACTIONS(2874), + [sym_char_literal] = ACTIONS(2874), + [anon_sym_true] = ACTIONS(2876), + [anon_sym_false] = ACTIONS(2876), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2876), + [sym_super] = ACTIONS(2876), + [sym_crate] = ACTIONS(2876), + [sym_metavariable] = ACTIONS(2874), + [sym__raw_string_literal_start] = ACTIONS(2874), + [sym_float_literal] = ACTIONS(2874), }, [STATE(745)] = { [sym_line_comment] = STATE(745), [sym_block_comment] = STATE(745), - [ts_builtin_sym_end] = ACTIONS(2820), - [sym_identifier] = ACTIONS(2822), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_macro_rules_BANG] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_u8] = ACTIONS(2822), - [anon_sym_i8] = ACTIONS(2822), - [anon_sym_u16] = ACTIONS(2822), - [anon_sym_i16] = ACTIONS(2822), - [anon_sym_u32] = ACTIONS(2822), - [anon_sym_i32] = ACTIONS(2822), - [anon_sym_u64] = ACTIONS(2822), - [anon_sym_i64] = ACTIONS(2822), - [anon_sym_u128] = ACTIONS(2822), - [anon_sym_i128] = ACTIONS(2822), - [anon_sym_isize] = ACTIONS(2822), - [anon_sym_usize] = ACTIONS(2822), - [anon_sym_f32] = ACTIONS(2822), - [anon_sym_f64] = ACTIONS(2822), - [anon_sym_bool] = ACTIONS(2822), - [anon_sym_str] = ACTIONS(2822), - [anon_sym_char] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_DOT_DOT] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_POUND] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2822), - [anon_sym_async] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_const] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_default] = ACTIONS(2822), - [anon_sym_enum] = ACTIONS(2822), - [anon_sym_fn] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_gen] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_impl] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_loop] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_mod] = ACTIONS(2822), - [anon_sym_pub] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_static] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2822), - [anon_sym_trait] = ACTIONS(2822), - [anon_sym_type] = ACTIONS(2822), - [anon_sym_union] = ACTIONS(2822), - [anon_sym_unsafe] = ACTIONS(2822), - [anon_sym_use] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_extern] = ACTIONS(2822), - [anon_sym_yield] = ACTIONS(2822), - [anon_sym_move] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [sym_integer_literal] = ACTIONS(2820), - [aux_sym_string_literal_token1] = ACTIONS(2820), - [sym_char_literal] = ACTIONS(2820), - [anon_sym_true] = ACTIONS(2822), - [anon_sym_false] = ACTIONS(2822), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2822), - [sym_super] = ACTIONS(2822), - [sym_crate] = ACTIONS(2822), - [sym_metavariable] = ACTIONS(2820), - [sym__raw_string_literal_start] = ACTIONS(2820), - [sym_float_literal] = ACTIONS(2820), + [ts_builtin_sym_end] = ACTIONS(2878), + [sym_identifier] = ACTIONS(2880), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_macro_rules_BANG] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2878), + [anon_sym_LBRACK] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_RBRACE] = ACTIONS(2878), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_u8] = ACTIONS(2880), + [anon_sym_i8] = ACTIONS(2880), + [anon_sym_u16] = ACTIONS(2880), + [anon_sym_i16] = ACTIONS(2880), + [anon_sym_u32] = ACTIONS(2880), + [anon_sym_i32] = ACTIONS(2880), + [anon_sym_u64] = ACTIONS(2880), + [anon_sym_i64] = ACTIONS(2880), + [anon_sym_u128] = ACTIONS(2880), + [anon_sym_i128] = ACTIONS(2880), + [anon_sym_isize] = ACTIONS(2880), + [anon_sym_usize] = ACTIONS(2880), + [anon_sym_f32] = ACTIONS(2880), + [anon_sym_f64] = ACTIONS(2880), + [anon_sym_bool] = ACTIONS(2880), + [anon_sym_str] = ACTIONS(2880), + [anon_sym_char] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2878), + [anon_sym_PIPE] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_DOT_DOT] = ACTIONS(2878), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_POUND] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2880), + [anon_sym_async] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_default] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [anon_sym_fn] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_gen] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_impl] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_loop] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2880), + [anon_sym_mod] = ACTIONS(2880), + [anon_sym_pub] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_struct] = ACTIONS(2880), + [anon_sym_trait] = ACTIONS(2880), + [anon_sym_type] = ACTIONS(2880), + [anon_sym_union] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2880), + [anon_sym_use] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_extern] = ACTIONS(2880), + [anon_sym_yield] = ACTIONS(2880), + [anon_sym_move] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [sym_integer_literal] = ACTIONS(2878), + [aux_sym_string_literal_token1] = ACTIONS(2878), + [sym_char_literal] = ACTIONS(2878), + [anon_sym_true] = ACTIONS(2880), + [anon_sym_false] = ACTIONS(2880), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2880), + [sym_super] = ACTIONS(2880), + [sym_crate] = ACTIONS(2880), + [sym_metavariable] = ACTIONS(2878), + [sym__raw_string_literal_start] = ACTIONS(2878), + [sym_float_literal] = ACTIONS(2878), }, [STATE(746)] = { [sym_line_comment] = STATE(746), [sym_block_comment] = STATE(746), - [ts_builtin_sym_end] = ACTIONS(2824), - [sym_identifier] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2824), - [anon_sym_macro_rules_BANG] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_RBRACE] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_u8] = ACTIONS(2826), - [anon_sym_i8] = ACTIONS(2826), - [anon_sym_u16] = ACTIONS(2826), - [anon_sym_i16] = ACTIONS(2826), - [anon_sym_u32] = ACTIONS(2826), - [anon_sym_i32] = ACTIONS(2826), - [anon_sym_u64] = ACTIONS(2826), - [anon_sym_i64] = ACTIONS(2826), - [anon_sym_u128] = ACTIONS(2826), - [anon_sym_i128] = ACTIONS(2826), - [anon_sym_isize] = ACTIONS(2826), - [anon_sym_usize] = ACTIONS(2826), - [anon_sym_f32] = ACTIONS(2826), - [anon_sym_f64] = ACTIONS(2826), - [anon_sym_bool] = ACTIONS(2826), - [anon_sym_str] = ACTIONS(2826), - [anon_sym_char] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_DOT_DOT] = ACTIONS(2824), - [anon_sym_COLON_COLON] = ACTIONS(2824), - [anon_sym_POUND] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2826), - [anon_sym_async] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_fn] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_gen] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_impl] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_loop] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_mod] = ACTIONS(2826), - [anon_sym_pub] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_trait] = ACTIONS(2826), - [anon_sym_type] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [anon_sym_unsafe] = ACTIONS(2826), - [anon_sym_use] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_extern] = ACTIONS(2826), - [anon_sym_yield] = ACTIONS(2826), - [anon_sym_move] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [sym_integer_literal] = ACTIONS(2824), - [aux_sym_string_literal_token1] = ACTIONS(2824), - [sym_char_literal] = ACTIONS(2824), - [anon_sym_true] = ACTIONS(2826), - [anon_sym_false] = ACTIONS(2826), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2826), - [sym_super] = ACTIONS(2826), - [sym_crate] = ACTIONS(2826), - [sym_metavariable] = ACTIONS(2824), - [sym__raw_string_literal_start] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2824), + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2884), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym_macro_rules_BANG] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_LBRACK] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_u8] = ACTIONS(2884), + [anon_sym_i8] = ACTIONS(2884), + [anon_sym_u16] = ACTIONS(2884), + [anon_sym_i16] = ACTIONS(2884), + [anon_sym_u32] = ACTIONS(2884), + [anon_sym_i32] = ACTIONS(2884), + [anon_sym_u64] = ACTIONS(2884), + [anon_sym_i64] = ACTIONS(2884), + [anon_sym_u128] = ACTIONS(2884), + [anon_sym_i128] = ACTIONS(2884), + [anon_sym_isize] = ACTIONS(2884), + [anon_sym_usize] = ACTIONS(2884), + [anon_sym_f32] = ACTIONS(2884), + [anon_sym_f64] = ACTIONS(2884), + [anon_sym_bool] = ACTIONS(2884), + [anon_sym_str] = ACTIONS(2884), + [anon_sym_char] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2882), + [anon_sym_PIPE] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_DOT_DOT] = ACTIONS(2882), + [anon_sym_COLON_COLON] = ACTIONS(2882), + [anon_sym_POUND] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2884), + [anon_sym_async] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [anon_sym_fn] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_gen] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_impl] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_loop] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_mod] = ACTIONS(2884), + [anon_sym_pub] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2884), + [anon_sym_trait] = ACTIONS(2884), + [anon_sym_type] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_unsafe] = ACTIONS(2884), + [anon_sym_use] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_extern] = ACTIONS(2884), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_move] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [sym_integer_literal] = ACTIONS(2882), + [aux_sym_string_literal_token1] = ACTIONS(2882), + [sym_char_literal] = ACTIONS(2882), + [anon_sym_true] = ACTIONS(2884), + [anon_sym_false] = ACTIONS(2884), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2884), + [sym_super] = ACTIONS(2884), + [sym_crate] = ACTIONS(2884), + [sym_metavariable] = ACTIONS(2882), + [sym__raw_string_literal_start] = ACTIONS(2882), + [sym_float_literal] = ACTIONS(2882), }, [STATE(747)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), [sym_line_comment] = STATE(747), [sym_block_comment] = STATE(747), - [aux_sym_declaration_list_repeat1] = STATE(747), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2828), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_macro_rules_BANG] = ACTIONS(2834), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_u8] = ACTIONS(2839), - [anon_sym_i8] = ACTIONS(2839), - [anon_sym_u16] = ACTIONS(2839), - [anon_sym_i16] = ACTIONS(2839), - [anon_sym_u32] = ACTIONS(2839), - [anon_sym_i32] = ACTIONS(2839), - [anon_sym_u64] = ACTIONS(2839), - [anon_sym_i64] = ACTIONS(2839), - [anon_sym_u128] = ACTIONS(2839), - [anon_sym_i128] = ACTIONS(2839), - [anon_sym_isize] = ACTIONS(2839), - [anon_sym_usize] = ACTIONS(2839), - [anon_sym_f32] = ACTIONS(2839), - [anon_sym_f64] = ACTIONS(2839), - [anon_sym_bool] = ACTIONS(2839), - [anon_sym_str] = ACTIONS(2839), - [anon_sym_char] = ACTIONS(2839), - [anon_sym_LT] = ACTIONS(2842), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_POUND] = ACTIONS(2848), - [anon_sym_async] = ACTIONS(2851), - [anon_sym_const] = ACTIONS(2854), - [anon_sym_default] = ACTIONS(2857), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2863), - [anon_sym_gen] = ACTIONS(2866), - [anon_sym_impl] = ACTIONS(2869), - [anon_sym_let] = ACTIONS(2872), - [anon_sym_mod] = ACTIONS(2875), - [anon_sym_pub] = ACTIONS(2878), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_trait] = ACTIONS(2887), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_union] = ACTIONS(2893), - [anon_sym_unsafe] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2899), - [anon_sym_extern] = ACTIONS(2902), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2905), - [sym_super] = ACTIONS(2905), - [sym_crate] = ACTIONS(2908), - [sym_metavariable] = ACTIONS(2911), + [ts_builtin_sym_end] = ACTIONS(2886), + [sym_identifier] = ACTIONS(2888), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym_macro_rules_BANG] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_RBRACE] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_u8] = ACTIONS(2888), + [anon_sym_i8] = ACTIONS(2888), + [anon_sym_u16] = ACTIONS(2888), + [anon_sym_i16] = ACTIONS(2888), + [anon_sym_u32] = ACTIONS(2888), + [anon_sym_i32] = ACTIONS(2888), + [anon_sym_u64] = ACTIONS(2888), + [anon_sym_i64] = ACTIONS(2888), + [anon_sym_u128] = ACTIONS(2888), + [anon_sym_i128] = ACTIONS(2888), + [anon_sym_isize] = ACTIONS(2888), + [anon_sym_usize] = ACTIONS(2888), + [anon_sym_f32] = ACTIONS(2888), + [anon_sym_f64] = ACTIONS(2888), + [anon_sym_bool] = ACTIONS(2888), + [anon_sym_str] = ACTIONS(2888), + [anon_sym_char] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_PIPE] = ACTIONS(2886), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_DOT_DOT] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_POUND] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2888), + [anon_sym_async] = ACTIONS(2888), + [anon_sym_break] = ACTIONS(2888), + [anon_sym_const] = ACTIONS(2888), + [anon_sym_continue] = ACTIONS(2888), + [anon_sym_default] = ACTIONS(2888), + [anon_sym_enum] = ACTIONS(2888), + [anon_sym_fn] = ACTIONS(2888), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_gen] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_impl] = ACTIONS(2888), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_loop] = ACTIONS(2888), + [anon_sym_match] = ACTIONS(2888), + [anon_sym_mod] = ACTIONS(2888), + [anon_sym_pub] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_static] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2888), + [anon_sym_trait] = ACTIONS(2888), + [anon_sym_type] = ACTIONS(2888), + [anon_sym_union] = ACTIONS(2888), + [anon_sym_unsafe] = ACTIONS(2888), + [anon_sym_use] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_extern] = ACTIONS(2888), + [anon_sym_yield] = ACTIONS(2888), + [anon_sym_move] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [sym_integer_literal] = ACTIONS(2886), + [aux_sym_string_literal_token1] = ACTIONS(2886), + [sym_char_literal] = ACTIONS(2886), + [anon_sym_true] = ACTIONS(2888), + [anon_sym_false] = ACTIONS(2888), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2888), + [sym_super] = ACTIONS(2888), + [sym_crate] = ACTIONS(2888), + [sym_metavariable] = ACTIONS(2886), + [sym__raw_string_literal_start] = ACTIONS(2886), + [sym_float_literal] = ACTIONS(2886), }, [STATE(748)] = { [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), + [ts_builtin_sym_end] = ACTIONS(2890), + [sym_identifier] = ACTIONS(2892), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_macro_rules_BANG] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_RBRACE] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_u8] = ACTIONS(2892), + [anon_sym_i8] = ACTIONS(2892), + [anon_sym_u16] = ACTIONS(2892), + [anon_sym_i16] = ACTIONS(2892), + [anon_sym_u32] = ACTIONS(2892), + [anon_sym_i32] = ACTIONS(2892), + [anon_sym_u64] = ACTIONS(2892), + [anon_sym_i64] = ACTIONS(2892), + [anon_sym_u128] = ACTIONS(2892), + [anon_sym_i128] = ACTIONS(2892), + [anon_sym_isize] = ACTIONS(2892), + [anon_sym_usize] = ACTIONS(2892), + [anon_sym_f32] = ACTIONS(2892), + [anon_sym_f64] = ACTIONS(2892), + [anon_sym_bool] = ACTIONS(2892), + [anon_sym_str] = ACTIONS(2892), + [anon_sym_char] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_DOT_DOT] = ACTIONS(2890), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_POUND] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2892), + [anon_sym_async] = ACTIONS(2892), + [anon_sym_break] = ACTIONS(2892), + [anon_sym_const] = ACTIONS(2892), + [anon_sym_continue] = ACTIONS(2892), + [anon_sym_default] = ACTIONS(2892), + [anon_sym_enum] = ACTIONS(2892), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_gen] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_impl] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_loop] = ACTIONS(2892), + [anon_sym_match] = ACTIONS(2892), + [anon_sym_mod] = ACTIONS(2892), + [anon_sym_pub] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_static] = ACTIONS(2892), + [anon_sym_struct] = ACTIONS(2892), + [anon_sym_trait] = ACTIONS(2892), + [anon_sym_type] = ACTIONS(2892), + [anon_sym_union] = ACTIONS(2892), + [anon_sym_unsafe] = ACTIONS(2892), + [anon_sym_use] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_extern] = ACTIONS(2892), + [anon_sym_yield] = ACTIONS(2892), + [anon_sym_move] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [sym_integer_literal] = ACTIONS(2890), + [aux_sym_string_literal_token1] = ACTIONS(2890), + [sym_char_literal] = ACTIONS(2890), + [anon_sym_true] = ACTIONS(2892), + [anon_sym_false] = ACTIONS(2892), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2892), + [sym_super] = ACTIONS(2892), + [sym_crate] = ACTIONS(2892), + [sym_metavariable] = ACTIONS(2890), + [sym__raw_string_literal_start] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2890), + }, + [STATE(749)] = { + [sym_line_comment] = STATE(749), + [sym_block_comment] = STATE(749), + [ts_builtin_sym_end] = ACTIONS(2894), + [sym_identifier] = ACTIONS(2896), + [anon_sym_SEMI] = ACTIONS(2894), + [anon_sym_macro_rules_BANG] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_RBRACE] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2894), + [anon_sym_u8] = ACTIONS(2896), + [anon_sym_i8] = ACTIONS(2896), + [anon_sym_u16] = ACTIONS(2896), + [anon_sym_i16] = ACTIONS(2896), + [anon_sym_u32] = ACTIONS(2896), + [anon_sym_i32] = ACTIONS(2896), + [anon_sym_u64] = ACTIONS(2896), + [anon_sym_i64] = ACTIONS(2896), + [anon_sym_u128] = ACTIONS(2896), + [anon_sym_i128] = ACTIONS(2896), + [anon_sym_isize] = ACTIONS(2896), + [anon_sym_usize] = ACTIONS(2896), + [anon_sym_f32] = ACTIONS(2896), + [anon_sym_f64] = ACTIONS(2896), + [anon_sym_bool] = ACTIONS(2896), + [anon_sym_str] = ACTIONS(2896), + [anon_sym_char] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2894), + [anon_sym_PIPE] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_DOT_DOT] = ACTIONS(2894), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2896), + [anon_sym_async] = ACTIONS(2896), + [anon_sym_break] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(2896), + [anon_sym_continue] = ACTIONS(2896), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_enum] = ACTIONS(2896), + [anon_sym_fn] = ACTIONS(2896), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_gen] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_impl] = ACTIONS(2896), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_loop] = ACTIONS(2896), + [anon_sym_match] = ACTIONS(2896), + [anon_sym_mod] = ACTIONS(2896), + [anon_sym_pub] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_static] = ACTIONS(2896), + [anon_sym_struct] = ACTIONS(2896), + [anon_sym_trait] = ACTIONS(2896), + [anon_sym_type] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_unsafe] = ACTIONS(2896), + [anon_sym_use] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_extern] = ACTIONS(2896), + [anon_sym_yield] = ACTIONS(2896), + [anon_sym_move] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [sym_integer_literal] = ACTIONS(2894), + [aux_sym_string_literal_token1] = ACTIONS(2894), + [sym_char_literal] = ACTIONS(2894), + [anon_sym_true] = ACTIONS(2896), + [anon_sym_false] = ACTIONS(2896), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2896), + [sym_super] = ACTIONS(2896), + [sym_crate] = ACTIONS(2896), + [sym_metavariable] = ACTIONS(2894), + [sym__raw_string_literal_start] = ACTIONS(2894), + [sym_float_literal] = ACTIONS(2894), + }, + [STATE(750)] = { + [sym_line_comment] = STATE(750), + [sym_block_comment] = STATE(750), + [ts_builtin_sym_end] = ACTIONS(2898), + [sym_identifier] = ACTIONS(2900), + [anon_sym_SEMI] = ACTIONS(2898), + [anon_sym_macro_rules_BANG] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2898), + [anon_sym_RBRACE] = ACTIONS(2898), + [anon_sym_STAR] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(2900), + [anon_sym_i8] = ACTIONS(2900), + [anon_sym_u16] = ACTIONS(2900), + [anon_sym_i16] = ACTIONS(2900), + [anon_sym_u32] = ACTIONS(2900), + [anon_sym_i32] = ACTIONS(2900), + [anon_sym_u64] = ACTIONS(2900), + [anon_sym_i64] = ACTIONS(2900), + [anon_sym_u128] = ACTIONS(2900), + [anon_sym_i128] = ACTIONS(2900), + [anon_sym_isize] = ACTIONS(2900), + [anon_sym_usize] = ACTIONS(2900), + [anon_sym_f32] = ACTIONS(2900), + [anon_sym_f64] = ACTIONS(2900), + [anon_sym_bool] = ACTIONS(2900), + [anon_sym_str] = ACTIONS(2900), + [anon_sym_char] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2898), + [anon_sym_PIPE] = ACTIONS(2898), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_DOT_DOT] = ACTIONS(2898), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_POUND] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2900), + [anon_sym_async] = ACTIONS(2900), + [anon_sym_break] = ACTIONS(2900), + [anon_sym_const] = ACTIONS(2900), + [anon_sym_continue] = ACTIONS(2900), + [anon_sym_default] = ACTIONS(2900), + [anon_sym_enum] = ACTIONS(2900), + [anon_sym_fn] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_gen] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_impl] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_loop] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2900), + [anon_sym_mod] = ACTIONS(2900), + [anon_sym_pub] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_static] = ACTIONS(2900), + [anon_sym_struct] = ACTIONS(2900), + [anon_sym_trait] = ACTIONS(2900), + [anon_sym_type] = ACTIONS(2900), + [anon_sym_union] = ACTIONS(2900), + [anon_sym_unsafe] = ACTIONS(2900), + [anon_sym_use] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_extern] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_move] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [sym_integer_literal] = ACTIONS(2898), + [aux_sym_string_literal_token1] = ACTIONS(2898), + [sym_char_literal] = ACTIONS(2898), + [anon_sym_true] = ACTIONS(2900), + [anon_sym_false] = ACTIONS(2900), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2900), + [sym_super] = ACTIONS(2900), + [sym_crate] = ACTIONS(2900), + [sym_metavariable] = ACTIONS(2898), + [sym__raw_string_literal_start] = ACTIONS(2898), + [sym_float_literal] = ACTIONS(2898), + }, + [STATE(751)] = { + [sym_line_comment] = STATE(751), + [sym_block_comment] = STATE(751), + [ts_builtin_sym_end] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2904), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_macro_rules_BANG] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_u8] = ACTIONS(2904), + [anon_sym_i8] = ACTIONS(2904), + [anon_sym_u16] = ACTIONS(2904), + [anon_sym_i16] = ACTIONS(2904), + [anon_sym_u32] = ACTIONS(2904), + [anon_sym_i32] = ACTIONS(2904), + [anon_sym_u64] = ACTIONS(2904), + [anon_sym_i64] = ACTIONS(2904), + [anon_sym_u128] = ACTIONS(2904), + [anon_sym_i128] = ACTIONS(2904), + [anon_sym_isize] = ACTIONS(2904), + [anon_sym_usize] = ACTIONS(2904), + [anon_sym_f32] = ACTIONS(2904), + [anon_sym_f64] = ACTIONS(2904), + [anon_sym_bool] = ACTIONS(2904), + [anon_sym_str] = ACTIONS(2904), + [anon_sym_char] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_DOT_DOT] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_POUND] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2904), + [anon_sym_async] = ACTIONS(2904), + [anon_sym_break] = ACTIONS(2904), + [anon_sym_const] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2904), + [anon_sym_default] = ACTIONS(2904), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_fn] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_gen] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_impl] = ACTIONS(2904), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_loop] = ACTIONS(2904), + [anon_sym_match] = ACTIONS(2904), + [anon_sym_mod] = ACTIONS(2904), + [anon_sym_pub] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_static] = ACTIONS(2904), + [anon_sym_struct] = ACTIONS(2904), + [anon_sym_trait] = ACTIONS(2904), + [anon_sym_type] = ACTIONS(2904), + [anon_sym_union] = ACTIONS(2904), + [anon_sym_unsafe] = ACTIONS(2904), + [anon_sym_use] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_extern] = ACTIONS(2904), + [anon_sym_yield] = ACTIONS(2904), + [anon_sym_move] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [sym_integer_literal] = ACTIONS(2902), + [aux_sym_string_literal_token1] = ACTIONS(2902), + [sym_char_literal] = ACTIONS(2902), + [anon_sym_true] = ACTIONS(2904), + [anon_sym_false] = ACTIONS(2904), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2904), + [sym_super] = ACTIONS(2904), + [sym_crate] = ACTIONS(2904), + [sym_metavariable] = ACTIONS(2902), + [sym__raw_string_literal_start] = ACTIONS(2902), + [sym_float_literal] = ACTIONS(2902), + }, + [STATE(752)] = { + [sym_line_comment] = STATE(752), + [sym_block_comment] = STATE(752), + [ts_builtin_sym_end] = ACTIONS(2906), + [sym_identifier] = ACTIONS(2908), + [anon_sym_SEMI] = ACTIONS(2906), + [anon_sym_macro_rules_BANG] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2906), + [anon_sym_u8] = ACTIONS(2908), + [anon_sym_i8] = ACTIONS(2908), + [anon_sym_u16] = ACTIONS(2908), + [anon_sym_i16] = ACTIONS(2908), + [anon_sym_u32] = ACTIONS(2908), + [anon_sym_i32] = ACTIONS(2908), + [anon_sym_u64] = ACTIONS(2908), + [anon_sym_i64] = ACTIONS(2908), + [anon_sym_u128] = ACTIONS(2908), + [anon_sym_i128] = ACTIONS(2908), + [anon_sym_isize] = ACTIONS(2908), + [anon_sym_usize] = ACTIONS(2908), + [anon_sym_f32] = ACTIONS(2908), + [anon_sym_f64] = ACTIONS(2908), + [anon_sym_bool] = ACTIONS(2908), + [anon_sym_str] = ACTIONS(2908), + [anon_sym_char] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_PIPE] = ACTIONS(2906), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_DOT_DOT] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2908), + [anon_sym_async] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_const] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_default] = ACTIONS(2908), + [anon_sym_enum] = ACTIONS(2908), + [anon_sym_fn] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_gen] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_impl] = ACTIONS(2908), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_loop] = ACTIONS(2908), + [anon_sym_match] = ACTIONS(2908), + [anon_sym_mod] = ACTIONS(2908), + [anon_sym_pub] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_trait] = ACTIONS(2908), + [anon_sym_type] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2908), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_use] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_extern] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2908), + [anon_sym_move] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [sym_integer_literal] = ACTIONS(2906), + [aux_sym_string_literal_token1] = ACTIONS(2906), + [sym_char_literal] = ACTIONS(2906), + [anon_sym_true] = ACTIONS(2908), + [anon_sym_false] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2908), + [sym_super] = ACTIONS(2908), + [sym_crate] = ACTIONS(2908), + [sym_metavariable] = ACTIONS(2906), + [sym__raw_string_literal_start] = ACTIONS(2906), + [sym_float_literal] = ACTIONS(2906), + }, + [STATE(753)] = { + [sym_line_comment] = STATE(753), + [sym_block_comment] = STATE(753), + [ts_builtin_sym_end] = ACTIONS(2910), + [sym_identifier] = ACTIONS(2912), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_macro_rules_BANG] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_RBRACE] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_u8] = ACTIONS(2912), + [anon_sym_i8] = ACTIONS(2912), + [anon_sym_u16] = ACTIONS(2912), + [anon_sym_i16] = ACTIONS(2912), + [anon_sym_u32] = ACTIONS(2912), + [anon_sym_i32] = ACTIONS(2912), + [anon_sym_u64] = ACTIONS(2912), + [anon_sym_i64] = ACTIONS(2912), + [anon_sym_u128] = ACTIONS(2912), + [anon_sym_i128] = ACTIONS(2912), + [anon_sym_isize] = ACTIONS(2912), + [anon_sym_usize] = ACTIONS(2912), + [anon_sym_f32] = ACTIONS(2912), + [anon_sym_f64] = ACTIONS(2912), + [anon_sym_bool] = ACTIONS(2912), + [anon_sym_str] = ACTIONS(2912), + [anon_sym_char] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_PIPE] = ACTIONS(2910), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_DOT_DOT] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_POUND] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2912), + [anon_sym_async] = ACTIONS(2912), + [anon_sym_break] = ACTIONS(2912), + [anon_sym_const] = ACTIONS(2912), + [anon_sym_continue] = ACTIONS(2912), + [anon_sym_default] = ACTIONS(2912), + [anon_sym_enum] = ACTIONS(2912), + [anon_sym_fn] = ACTIONS(2912), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_gen] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_impl] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_loop] = ACTIONS(2912), + [anon_sym_match] = ACTIONS(2912), + [anon_sym_mod] = ACTIONS(2912), + [anon_sym_pub] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2912), + [anon_sym_trait] = ACTIONS(2912), + [anon_sym_type] = ACTIONS(2912), + [anon_sym_union] = ACTIONS(2912), + [anon_sym_unsafe] = ACTIONS(2912), + [anon_sym_use] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_extern] = ACTIONS(2912), + [anon_sym_yield] = ACTIONS(2912), + [anon_sym_move] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [sym_integer_literal] = ACTIONS(2910), + [aux_sym_string_literal_token1] = ACTIONS(2910), + [sym_char_literal] = ACTIONS(2910), + [anon_sym_true] = ACTIONS(2912), + [anon_sym_false] = ACTIONS(2912), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2912), + [sym_super] = ACTIONS(2912), + [sym_crate] = ACTIONS(2912), + [sym_metavariable] = ACTIONS(2910), + [sym__raw_string_literal_start] = ACTIONS(2910), + [sym_float_literal] = ACTIONS(2910), + }, + [STATE(754)] = { + [sym_line_comment] = STATE(754), + [sym_block_comment] = STATE(754), [ts_builtin_sym_end] = ACTIONS(2914), [sym_identifier] = ACTIONS(2916), [anon_sym_SEMI] = ACTIONS(2914), @@ -92054,9 +94347,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2914), [sym_float_literal] = ACTIONS(2914), }, - [STATE(749)] = { - [sym_line_comment] = STATE(749), - [sym_block_comment] = STATE(749), + [STATE(755)] = { + [sym_line_comment] = STATE(755), + [sym_block_comment] = STATE(755), [ts_builtin_sym_end] = ACTIONS(2918), [sym_identifier] = ACTIONS(2920), [anon_sym_SEMI] = ACTIONS(2918), @@ -92135,9 +94428,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2918), [sym_float_literal] = ACTIONS(2918), }, - [STATE(750)] = { - [sym_line_comment] = STATE(750), - [sym_block_comment] = STATE(750), + [STATE(756)] = { + [sym_line_comment] = STATE(756), + [sym_block_comment] = STATE(756), [ts_builtin_sym_end] = ACTIONS(2922), [sym_identifier] = ACTIONS(2924), [anon_sym_SEMI] = ACTIONS(2922), @@ -92216,9 +94509,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2922), [sym_float_literal] = ACTIONS(2922), }, - [STATE(751)] = { - [sym_line_comment] = STATE(751), - [sym_block_comment] = STATE(751), + [STATE(757)] = { + [sym_line_comment] = STATE(757), + [sym_block_comment] = STATE(757), [ts_builtin_sym_end] = ACTIONS(2926), [sym_identifier] = ACTIONS(2928), [anon_sym_SEMI] = ACTIONS(2926), @@ -92297,9 +94590,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2926), [sym_float_literal] = ACTIONS(2926), }, - [STATE(752)] = { - [sym_line_comment] = STATE(752), - [sym_block_comment] = STATE(752), + [STATE(758)] = { + [sym_line_comment] = STATE(758), + [sym_block_comment] = STATE(758), [ts_builtin_sym_end] = ACTIONS(2930), [sym_identifier] = ACTIONS(2932), [anon_sym_SEMI] = ACTIONS(2930), @@ -92378,9 +94671,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2930), [sym_float_literal] = ACTIONS(2930), }, - [STATE(753)] = { - [sym_line_comment] = STATE(753), - [sym_block_comment] = STATE(753), + [STATE(759)] = { + [sym_line_comment] = STATE(759), + [sym_block_comment] = STATE(759), [ts_builtin_sym_end] = ACTIONS(2934), [sym_identifier] = ACTIONS(2936), [anon_sym_SEMI] = ACTIONS(2934), @@ -92459,9 +94752,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2934), [sym_float_literal] = ACTIONS(2934), }, - [STATE(754)] = { - [sym_line_comment] = STATE(754), - [sym_block_comment] = STATE(754), + [STATE(760)] = { + [sym_line_comment] = STATE(760), + [sym_block_comment] = STATE(760), [ts_builtin_sym_end] = ACTIONS(2938), [sym_identifier] = ACTIONS(2940), [anon_sym_SEMI] = ACTIONS(2938), @@ -92540,9 +94833,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2938), [sym_float_literal] = ACTIONS(2938), }, - [STATE(755)] = { - [sym_line_comment] = STATE(755), - [sym_block_comment] = STATE(755), + [STATE(761)] = { + [sym_line_comment] = STATE(761), + [sym_block_comment] = STATE(761), [ts_builtin_sym_end] = ACTIONS(2942), [sym_identifier] = ACTIONS(2944), [anon_sym_SEMI] = ACTIONS(2942), @@ -92621,9 +94914,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2942), [sym_float_literal] = ACTIONS(2942), }, - [STATE(756)] = { - [sym_line_comment] = STATE(756), - [sym_block_comment] = STATE(756), + [STATE(762)] = { + [sym_line_comment] = STATE(762), + [sym_block_comment] = STATE(762), [ts_builtin_sym_end] = ACTIONS(2946), [sym_identifier] = ACTIONS(2948), [anon_sym_SEMI] = ACTIONS(2946), @@ -92702,9 +94995,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2946), [sym_float_literal] = ACTIONS(2946), }, - [STATE(757)] = { - [sym_line_comment] = STATE(757), - [sym_block_comment] = STATE(757), + [STATE(763)] = { + [sym_line_comment] = STATE(763), + [sym_block_comment] = STATE(763), [ts_builtin_sym_end] = ACTIONS(2950), [sym_identifier] = ACTIONS(2952), [anon_sym_SEMI] = ACTIONS(2950), @@ -92783,9 +95076,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2950), [sym_float_literal] = ACTIONS(2950), }, - [STATE(758)] = { - [sym_line_comment] = STATE(758), - [sym_block_comment] = STATE(758), + [STATE(764)] = { + [sym_line_comment] = STATE(764), + [sym_block_comment] = STATE(764), [ts_builtin_sym_end] = ACTIONS(2954), [sym_identifier] = ACTIONS(2956), [anon_sym_SEMI] = ACTIONS(2954), @@ -92864,9 +95157,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2954), [sym_float_literal] = ACTIONS(2954), }, - [STATE(759)] = { - [sym_line_comment] = STATE(759), - [sym_block_comment] = STATE(759), + [STATE(765)] = { + [sym_line_comment] = STATE(765), + [sym_block_comment] = STATE(765), [ts_builtin_sym_end] = ACTIONS(2958), [sym_identifier] = ACTIONS(2960), [anon_sym_SEMI] = ACTIONS(2958), @@ -92945,9 +95238,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2958), [sym_float_literal] = ACTIONS(2958), }, - [STATE(760)] = { - [sym_line_comment] = STATE(760), - [sym_block_comment] = STATE(760), + [STATE(766)] = { + [sym_line_comment] = STATE(766), + [sym_block_comment] = STATE(766), [ts_builtin_sym_end] = ACTIONS(2962), [sym_identifier] = ACTIONS(2964), [anon_sym_SEMI] = ACTIONS(2962), @@ -93026,9 +95319,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2962), [sym_float_literal] = ACTIONS(2962), }, - [STATE(761)] = { - [sym_line_comment] = STATE(761), - [sym_block_comment] = STATE(761), + [STATE(767)] = { + [sym_line_comment] = STATE(767), + [sym_block_comment] = STATE(767), [ts_builtin_sym_end] = ACTIONS(2966), [sym_identifier] = ACTIONS(2968), [anon_sym_SEMI] = ACTIONS(2966), @@ -93107,9 +95400,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2966), [sym_float_literal] = ACTIONS(2966), }, - [STATE(762)] = { - [sym_line_comment] = STATE(762), - [sym_block_comment] = STATE(762), + [STATE(768)] = { + [sym_line_comment] = STATE(768), + [sym_block_comment] = STATE(768), [ts_builtin_sym_end] = ACTIONS(2970), [sym_identifier] = ACTIONS(2972), [anon_sym_SEMI] = ACTIONS(2970), @@ -93188,9 +95481,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2970), [sym_float_literal] = ACTIONS(2970), }, - [STATE(763)] = { - [sym_line_comment] = STATE(763), - [sym_block_comment] = STATE(763), + [STATE(769)] = { + [sym_line_comment] = STATE(769), + [sym_block_comment] = STATE(769), [ts_builtin_sym_end] = ACTIONS(2974), [sym_identifier] = ACTIONS(2976), [anon_sym_SEMI] = ACTIONS(2974), @@ -93269,9 +95562,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2974), [sym_float_literal] = ACTIONS(2974), }, - [STATE(764)] = { - [sym_line_comment] = STATE(764), - [sym_block_comment] = STATE(764), + [STATE(770)] = { + [sym_line_comment] = STATE(770), + [sym_block_comment] = STATE(770), [ts_builtin_sym_end] = ACTIONS(2978), [sym_identifier] = ACTIONS(2980), [anon_sym_SEMI] = ACTIONS(2978), @@ -93350,981 +95643,1062 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2978), [sym_float_literal] = ACTIONS(2978), }, - [STATE(765)] = { - [sym_line_comment] = STATE(765), - [sym_block_comment] = STATE(765), - [ts_builtin_sym_end] = ACTIONS(2982), - [sym_identifier] = ACTIONS(2984), - [anon_sym_SEMI] = ACTIONS(2982), - [anon_sym_macro_rules_BANG] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2982), - [anon_sym_LBRACK] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(2982), - [anon_sym_RBRACE] = ACTIONS(2982), - [anon_sym_STAR] = ACTIONS(2982), - [anon_sym_u8] = ACTIONS(2984), - [anon_sym_i8] = ACTIONS(2984), - [anon_sym_u16] = ACTIONS(2984), - [anon_sym_i16] = ACTIONS(2984), - [anon_sym_u32] = ACTIONS(2984), - [anon_sym_i32] = ACTIONS(2984), - [anon_sym_u64] = ACTIONS(2984), - [anon_sym_i64] = ACTIONS(2984), - [anon_sym_u128] = ACTIONS(2984), - [anon_sym_i128] = ACTIONS(2984), - [anon_sym_isize] = ACTIONS(2984), - [anon_sym_usize] = ACTIONS(2984), - [anon_sym_f32] = ACTIONS(2984), - [anon_sym_f64] = ACTIONS(2984), - [anon_sym_bool] = ACTIONS(2984), - [anon_sym_str] = ACTIONS(2984), - [anon_sym_char] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2982), - [anon_sym_BANG] = ACTIONS(2982), - [anon_sym_AMP] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2982), - [anon_sym_LT] = ACTIONS(2982), - [anon_sym_DOT_DOT] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(2982), - [anon_sym_POUND] = ACTIONS(2982), - [anon_sym_SQUOTE] = ACTIONS(2984), - [anon_sym_async] = ACTIONS(2984), - [anon_sym_break] = ACTIONS(2984), - [anon_sym_const] = ACTIONS(2984), - [anon_sym_continue] = ACTIONS(2984), - [anon_sym_default] = ACTIONS(2984), - [anon_sym_enum] = ACTIONS(2984), - [anon_sym_fn] = ACTIONS(2984), - [anon_sym_for] = ACTIONS(2984), - [anon_sym_gen] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2984), - [anon_sym_impl] = ACTIONS(2984), - [anon_sym_let] = ACTIONS(2984), - [anon_sym_loop] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2984), - [anon_sym_mod] = ACTIONS(2984), - [anon_sym_pub] = ACTIONS(2984), - [anon_sym_return] = ACTIONS(2984), - [anon_sym_static] = ACTIONS(2984), - [anon_sym_struct] = ACTIONS(2984), - [anon_sym_trait] = ACTIONS(2984), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_union] = ACTIONS(2984), - [anon_sym_unsafe] = ACTIONS(2984), - [anon_sym_use] = ACTIONS(2984), - [anon_sym_while] = ACTIONS(2984), - [anon_sym_extern] = ACTIONS(2984), - [anon_sym_yield] = ACTIONS(2984), - [anon_sym_move] = ACTIONS(2984), - [anon_sym_try] = ACTIONS(2984), - [sym_integer_literal] = ACTIONS(2982), - [aux_sym_string_literal_token1] = ACTIONS(2982), - [sym_char_literal] = ACTIONS(2982), - [anon_sym_true] = ACTIONS(2984), - [anon_sym_false] = ACTIONS(2984), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2984), - [sym_super] = ACTIONS(2984), - [sym_crate] = ACTIONS(2984), - [sym_metavariable] = ACTIONS(2982), - [sym__raw_string_literal_start] = ACTIONS(2982), - [sym_float_literal] = ACTIONS(2982), - }, - [STATE(766)] = { - [sym_line_comment] = STATE(766), - [sym_block_comment] = STATE(766), - [ts_builtin_sym_end] = ACTIONS(2986), - [sym_identifier] = ACTIONS(2988), - [anon_sym_SEMI] = ACTIONS(2986), - [anon_sym_macro_rules_BANG] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_u8] = ACTIONS(2988), - [anon_sym_i8] = ACTIONS(2988), - [anon_sym_u16] = ACTIONS(2988), - [anon_sym_i16] = ACTIONS(2988), - [anon_sym_u32] = ACTIONS(2988), - [anon_sym_i32] = ACTIONS(2988), - [anon_sym_u64] = ACTIONS(2988), - [anon_sym_i64] = ACTIONS(2988), - [anon_sym_u128] = ACTIONS(2988), - [anon_sym_i128] = ACTIONS(2988), - [anon_sym_isize] = ACTIONS(2988), - [anon_sym_usize] = ACTIONS(2988), - [anon_sym_f32] = ACTIONS(2988), - [anon_sym_f64] = ACTIONS(2988), - [anon_sym_bool] = ACTIONS(2988), - [anon_sym_str] = ACTIONS(2988), - [anon_sym_char] = ACTIONS(2988), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_BANG] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_PIPE] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2986), - [anon_sym_DOT_DOT] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2986), - [anon_sym_POUND] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2988), - [anon_sym_async] = ACTIONS(2988), - [anon_sym_break] = ACTIONS(2988), - [anon_sym_const] = ACTIONS(2988), - [anon_sym_continue] = ACTIONS(2988), - [anon_sym_default] = ACTIONS(2988), - [anon_sym_enum] = ACTIONS(2988), - [anon_sym_fn] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_gen] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_impl] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2988), - [anon_sym_loop] = ACTIONS(2988), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_mod] = ACTIONS(2988), - [anon_sym_pub] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_static] = ACTIONS(2988), - [anon_sym_struct] = ACTIONS(2988), - [anon_sym_trait] = ACTIONS(2988), - [anon_sym_type] = ACTIONS(2988), - [anon_sym_union] = ACTIONS(2988), - [anon_sym_unsafe] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_extern] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2988), - [anon_sym_move] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2988), - [sym_integer_literal] = ACTIONS(2986), - [aux_sym_string_literal_token1] = ACTIONS(2986), - [sym_char_literal] = ACTIONS(2986), - [anon_sym_true] = ACTIONS(2988), - [anon_sym_false] = ACTIONS(2988), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2988), - [sym_super] = ACTIONS(2988), - [sym_crate] = ACTIONS(2988), - [sym_metavariable] = ACTIONS(2986), - [sym__raw_string_literal_start] = ACTIONS(2986), - [sym_float_literal] = ACTIONS(2986), - }, - [STATE(767)] = { - [sym_line_comment] = STATE(767), - [sym_block_comment] = STATE(767), - [ts_builtin_sym_end] = ACTIONS(2990), - [sym_identifier] = ACTIONS(2992), - [anon_sym_SEMI] = ACTIONS(2990), - [anon_sym_macro_rules_BANG] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_RBRACE] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_u8] = ACTIONS(2992), - [anon_sym_i8] = ACTIONS(2992), - [anon_sym_u16] = ACTIONS(2992), - [anon_sym_i16] = ACTIONS(2992), - [anon_sym_u32] = ACTIONS(2992), - [anon_sym_i32] = ACTIONS(2992), - [anon_sym_u64] = ACTIONS(2992), - [anon_sym_i64] = ACTIONS(2992), - [anon_sym_u128] = ACTIONS(2992), - [anon_sym_i128] = ACTIONS(2992), - [anon_sym_isize] = ACTIONS(2992), - [anon_sym_usize] = ACTIONS(2992), - [anon_sym_f32] = ACTIONS(2992), - [anon_sym_f64] = ACTIONS(2992), - [anon_sym_bool] = ACTIONS(2992), - [anon_sym_str] = ACTIONS(2992), - [anon_sym_char] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_BANG] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_DOT_DOT] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_POUND] = ACTIONS(2990), - [anon_sym_SQUOTE] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_default] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), - [anon_sym_fn] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_gen] = ACTIONS(2992), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_impl] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_loop] = ACTIONS(2992), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_mod] = ACTIONS(2992), - [anon_sym_pub] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_struct] = ACTIONS(2992), - [anon_sym_trait] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_union] = ACTIONS(2992), - [anon_sym_unsafe] = ACTIONS(2992), - [anon_sym_use] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_extern] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_move] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [sym_integer_literal] = ACTIONS(2990), - [aux_sym_string_literal_token1] = ACTIONS(2990), - [sym_char_literal] = ACTIONS(2990), - [anon_sym_true] = ACTIONS(2992), - [anon_sym_false] = ACTIONS(2992), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_crate] = ACTIONS(2992), - [sym_metavariable] = ACTIONS(2990), - [sym__raw_string_literal_start] = ACTIONS(2990), - [sym_float_literal] = ACTIONS(2990), - }, - [STATE(768)] = { - [sym_line_comment] = STATE(768), - [sym_block_comment] = STATE(768), - [ts_builtin_sym_end] = ACTIONS(2994), - [sym_identifier] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_macro_rules_BANG] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_LBRACK] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2994), - [anon_sym_u8] = ACTIONS(2996), - [anon_sym_i8] = ACTIONS(2996), - [anon_sym_u16] = ACTIONS(2996), - [anon_sym_i16] = ACTIONS(2996), - [anon_sym_u32] = ACTIONS(2996), - [anon_sym_i32] = ACTIONS(2996), - [anon_sym_u64] = ACTIONS(2996), - [anon_sym_i64] = ACTIONS(2996), - [anon_sym_u128] = ACTIONS(2996), - [anon_sym_i128] = ACTIONS(2996), - [anon_sym_isize] = ACTIONS(2996), - [anon_sym_usize] = ACTIONS(2996), - [anon_sym_f32] = ACTIONS(2996), - [anon_sym_f64] = ACTIONS(2996), - [anon_sym_bool] = ACTIONS(2996), - [anon_sym_str] = ACTIONS(2996), - [anon_sym_char] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_PIPE] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_DOT_DOT] = ACTIONS(2994), - [anon_sym_COLON_COLON] = ACTIONS(2994), - [anon_sym_POUND] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2996), - [anon_sym_async] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2996), - [anon_sym_enum] = ACTIONS(2996), - [anon_sym_fn] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_gen] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_impl] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_loop] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_mod] = ACTIONS(2996), - [anon_sym_pub] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_static] = ACTIONS(2996), - [anon_sym_struct] = ACTIONS(2996), - [anon_sym_trait] = ACTIONS(2996), - [anon_sym_type] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(2996), - [anon_sym_unsafe] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_move] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [sym_integer_literal] = ACTIONS(2994), - [aux_sym_string_literal_token1] = ACTIONS(2994), - [sym_char_literal] = ACTIONS(2994), - [anon_sym_true] = ACTIONS(2996), - [anon_sym_false] = ACTIONS(2996), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2996), - [sym_super] = ACTIONS(2996), - [sym_crate] = ACTIONS(2996), - [sym_metavariable] = ACTIONS(2994), - [sym__raw_string_literal_start] = ACTIONS(2994), - [sym_float_literal] = ACTIONS(2994), - }, - [STATE(769)] = { - [sym_line_comment] = STATE(769), - [sym_block_comment] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(2998), - [sym_identifier] = ACTIONS(3000), - [anon_sym_SEMI] = ACTIONS(2998), - [anon_sym_macro_rules_BANG] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_LBRACK] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_RBRACE] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_u8] = ACTIONS(3000), - [anon_sym_i8] = ACTIONS(3000), - [anon_sym_u16] = ACTIONS(3000), - [anon_sym_i16] = ACTIONS(3000), - [anon_sym_u32] = ACTIONS(3000), - [anon_sym_i32] = ACTIONS(3000), - [anon_sym_u64] = ACTIONS(3000), - [anon_sym_i64] = ACTIONS(3000), - [anon_sym_u128] = ACTIONS(3000), - [anon_sym_i128] = ACTIONS(3000), - [anon_sym_isize] = ACTIONS(3000), - [anon_sym_usize] = ACTIONS(3000), - [anon_sym_f32] = ACTIONS(3000), - [anon_sym_f64] = ACTIONS(3000), - [anon_sym_bool] = ACTIONS(3000), - [anon_sym_str] = ACTIONS(3000), - [anon_sym_char] = ACTIONS(3000), - [anon_sym_DASH] = ACTIONS(2998), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2998), - [anon_sym_PIPE] = ACTIONS(2998), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(2998), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_POUND] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(3000), - [anon_sym_async] = ACTIONS(3000), - [anon_sym_break] = ACTIONS(3000), - [anon_sym_const] = ACTIONS(3000), - [anon_sym_continue] = ACTIONS(3000), - [anon_sym_default] = ACTIONS(3000), - [anon_sym_enum] = ACTIONS(3000), - [anon_sym_fn] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(3000), - [anon_sym_gen] = ACTIONS(3000), - [anon_sym_if] = ACTIONS(3000), - [anon_sym_impl] = ACTIONS(3000), - [anon_sym_let] = ACTIONS(3000), - [anon_sym_loop] = ACTIONS(3000), - [anon_sym_match] = ACTIONS(3000), - [anon_sym_mod] = ACTIONS(3000), - [anon_sym_pub] = ACTIONS(3000), - [anon_sym_return] = ACTIONS(3000), - [anon_sym_static] = ACTIONS(3000), - [anon_sym_struct] = ACTIONS(3000), - [anon_sym_trait] = ACTIONS(3000), - [anon_sym_type] = ACTIONS(3000), - [anon_sym_union] = ACTIONS(3000), - [anon_sym_unsafe] = ACTIONS(3000), - [anon_sym_use] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3000), - [anon_sym_extern] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(3000), - [anon_sym_move] = ACTIONS(3000), - [anon_sym_try] = ACTIONS(3000), - [sym_integer_literal] = ACTIONS(2998), - [aux_sym_string_literal_token1] = ACTIONS(2998), - [sym_char_literal] = ACTIONS(2998), - [anon_sym_true] = ACTIONS(3000), - [anon_sym_false] = ACTIONS(3000), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(2998), - [sym__raw_string_literal_start] = ACTIONS(2998), - [sym_float_literal] = ACTIONS(2998), - }, - [STATE(770)] = { - [sym_line_comment] = STATE(770), - [sym_block_comment] = STATE(770), - [ts_builtin_sym_end] = ACTIONS(3002), - [sym_identifier] = ACTIONS(3004), - [anon_sym_SEMI] = ACTIONS(3002), - [anon_sym_macro_rules_BANG] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_RBRACE] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3002), - [anon_sym_u8] = ACTIONS(3004), - [anon_sym_i8] = ACTIONS(3004), - [anon_sym_u16] = ACTIONS(3004), - [anon_sym_i16] = ACTIONS(3004), - [anon_sym_u32] = ACTIONS(3004), - [anon_sym_i32] = ACTIONS(3004), - [anon_sym_u64] = ACTIONS(3004), - [anon_sym_i64] = ACTIONS(3004), - [anon_sym_u128] = ACTIONS(3004), - [anon_sym_i128] = ACTIONS(3004), - [anon_sym_isize] = ACTIONS(3004), - [anon_sym_usize] = ACTIONS(3004), - [anon_sym_f32] = ACTIONS(3004), - [anon_sym_f64] = ACTIONS(3004), - [anon_sym_bool] = ACTIONS(3004), - [anon_sym_str] = ACTIONS(3004), - [anon_sym_char] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(3002), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_PIPE] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_DOT_DOT] = ACTIONS(3002), - [anon_sym_COLON_COLON] = ACTIONS(3002), - [anon_sym_POUND] = ACTIONS(3002), - [anon_sym_SQUOTE] = ACTIONS(3004), - [anon_sym_async] = ACTIONS(3004), - [anon_sym_break] = ACTIONS(3004), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_continue] = ACTIONS(3004), - [anon_sym_default] = ACTIONS(3004), - [anon_sym_enum] = ACTIONS(3004), - [anon_sym_fn] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_gen] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_impl] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_loop] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3004), - [anon_sym_mod] = ACTIONS(3004), - [anon_sym_pub] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_static] = ACTIONS(3004), - [anon_sym_struct] = ACTIONS(3004), - [anon_sym_trait] = ACTIONS(3004), - [anon_sym_type] = ACTIONS(3004), - [anon_sym_union] = ACTIONS(3004), - [anon_sym_unsafe] = ACTIONS(3004), - [anon_sym_use] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_extern] = ACTIONS(3004), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_move] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [sym_integer_literal] = ACTIONS(3002), - [aux_sym_string_literal_token1] = ACTIONS(3002), - [sym_char_literal] = ACTIONS(3002), - [anon_sym_true] = ACTIONS(3004), - [anon_sym_false] = ACTIONS(3004), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3004), - [sym_super] = ACTIONS(3004), - [sym_crate] = ACTIONS(3004), - [sym_metavariable] = ACTIONS(3002), - [sym__raw_string_literal_start] = ACTIONS(3002), - [sym_float_literal] = ACTIONS(3002), - }, [STATE(771)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym_closure_expression] = STATE(3632), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(3414), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [ts_builtin_sym_end] = ACTIONS(3006), - [sym_identifier] = ACTIONS(3008), - [anon_sym_SEMI] = ACTIONS(3006), - [anon_sym_macro_rules_BANG] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_RBRACE] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3006), - [anon_sym_u8] = ACTIONS(3008), - [anon_sym_i8] = ACTIONS(3008), - [anon_sym_u16] = ACTIONS(3008), - [anon_sym_i16] = ACTIONS(3008), - [anon_sym_u32] = ACTIONS(3008), - [anon_sym_i32] = ACTIONS(3008), - [anon_sym_u64] = ACTIONS(3008), - [anon_sym_i64] = ACTIONS(3008), - [anon_sym_u128] = ACTIONS(3008), - [anon_sym_i128] = ACTIONS(3008), - [anon_sym_isize] = ACTIONS(3008), - [anon_sym_usize] = ACTIONS(3008), - [anon_sym_f32] = ACTIONS(3008), - [anon_sym_f64] = ACTIONS(3008), - [anon_sym_bool] = ACTIONS(3008), - [anon_sym_str] = ACTIONS(3008), - [anon_sym_char] = ACTIONS(3008), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_BANG] = ACTIONS(3006), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_PIPE] = ACTIONS(3006), - [anon_sym_LT] = ACTIONS(3006), - [anon_sym_DOT_DOT] = ACTIONS(3006), - [anon_sym_COLON_COLON] = ACTIONS(3006), - [anon_sym_POUND] = ACTIONS(3006), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_async] = ACTIONS(3008), - [anon_sym_break] = ACTIONS(3008), - [anon_sym_const] = ACTIONS(3008), - [anon_sym_continue] = ACTIONS(3008), - [anon_sym_default] = ACTIONS(3008), - [anon_sym_enum] = ACTIONS(3008), - [anon_sym_fn] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3008), - [anon_sym_gen] = ACTIONS(3008), - [anon_sym_if] = ACTIONS(3008), - [anon_sym_impl] = ACTIONS(3008), - [anon_sym_let] = ACTIONS(3008), - [anon_sym_loop] = ACTIONS(3008), - [anon_sym_match] = ACTIONS(3008), - [anon_sym_mod] = ACTIONS(3008), - [anon_sym_pub] = ACTIONS(3008), - [anon_sym_return] = ACTIONS(3008), - [anon_sym_static] = ACTIONS(3008), - [anon_sym_struct] = ACTIONS(3008), - [anon_sym_trait] = ACTIONS(3008), - [anon_sym_type] = ACTIONS(3008), - [anon_sym_union] = ACTIONS(3008), - [anon_sym_unsafe] = ACTIONS(3008), - [anon_sym_use] = ACTIONS(3008), - [anon_sym_while] = ACTIONS(3008), - [anon_sym_extern] = ACTIONS(3008), - [anon_sym_yield] = ACTIONS(3008), - [anon_sym_move] = ACTIONS(3008), - [anon_sym_try] = ACTIONS(3008), - [sym_integer_literal] = ACTIONS(3006), - [aux_sym_string_literal_token1] = ACTIONS(3006), - [sym_char_literal] = ACTIONS(3006), - [anon_sym_true] = ACTIONS(3008), - [anon_sym_false] = ACTIONS(3008), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3008), - [sym_super] = ACTIONS(3008), - [sym_crate] = ACTIONS(3008), - [sym_metavariable] = ACTIONS(3006), - [sym__raw_string_literal_start] = ACTIONS(3006), - [sym_float_literal] = ACTIONS(3006), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [anon_sym_move] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, [STATE(772)] = { [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [ts_builtin_sym_end] = ACTIONS(3010), - [sym_identifier] = ACTIONS(3012), - [anon_sym_SEMI] = ACTIONS(3010), - [anon_sym_macro_rules_BANG] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_RBRACE] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_u8] = ACTIONS(3012), - [anon_sym_i8] = ACTIONS(3012), - [anon_sym_u16] = ACTIONS(3012), - [anon_sym_i16] = ACTIONS(3012), - [anon_sym_u32] = ACTIONS(3012), - [anon_sym_i32] = ACTIONS(3012), - [anon_sym_u64] = ACTIONS(3012), - [anon_sym_i64] = ACTIONS(3012), - [anon_sym_u128] = ACTIONS(3012), - [anon_sym_i128] = ACTIONS(3012), - [anon_sym_isize] = ACTIONS(3012), - [anon_sym_usize] = ACTIONS(3012), - [anon_sym_f32] = ACTIONS(3012), - [anon_sym_f64] = ACTIONS(3012), - [anon_sym_bool] = ACTIONS(3012), - [anon_sym_str] = ACTIONS(3012), - [anon_sym_char] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_PIPE] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3010), - [anon_sym_DOT_DOT] = ACTIONS(3010), - [anon_sym_COLON_COLON] = ACTIONS(3010), - [anon_sym_POUND] = ACTIONS(3010), - [anon_sym_SQUOTE] = ACTIONS(3012), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_break] = ACTIONS(3012), - [anon_sym_const] = ACTIONS(3012), - [anon_sym_continue] = ACTIONS(3012), - [anon_sym_default] = ACTIONS(3012), - [anon_sym_enum] = ACTIONS(3012), - [anon_sym_fn] = ACTIONS(3012), - [anon_sym_for] = ACTIONS(3012), - [anon_sym_gen] = ACTIONS(3012), - [anon_sym_if] = ACTIONS(3012), - [anon_sym_impl] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_loop] = ACTIONS(3012), - [anon_sym_match] = ACTIONS(3012), - [anon_sym_mod] = ACTIONS(3012), - [anon_sym_pub] = ACTIONS(3012), - [anon_sym_return] = ACTIONS(3012), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_struct] = ACTIONS(3012), - [anon_sym_trait] = ACTIONS(3012), - [anon_sym_type] = ACTIONS(3012), - [anon_sym_union] = ACTIONS(3012), - [anon_sym_unsafe] = ACTIONS(3012), - [anon_sym_use] = ACTIONS(3012), - [anon_sym_while] = ACTIONS(3012), - [anon_sym_extern] = ACTIONS(3012), - [anon_sym_yield] = ACTIONS(3012), - [anon_sym_move] = ACTIONS(3012), - [anon_sym_try] = ACTIONS(3012), - [sym_integer_literal] = ACTIONS(3010), - [aux_sym_string_literal_token1] = ACTIONS(3010), - [sym_char_literal] = ACTIONS(3010), - [anon_sym_true] = ACTIONS(3012), - [anon_sym_false] = ACTIONS(3012), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3012), - [sym_super] = ACTIONS(3012), - [sym_crate] = ACTIONS(3012), - [sym_metavariable] = ACTIONS(3010), - [sym__raw_string_literal_start] = ACTIONS(3010), - [sym_float_literal] = ACTIONS(3010), + [ts_builtin_sym_end] = ACTIONS(2984), + [sym_identifier] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2984), + [anon_sym_macro_rules_BANG] = ACTIONS(2984), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_RBRACE] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(2984), + [anon_sym_u8] = ACTIONS(2986), + [anon_sym_i8] = ACTIONS(2986), + [anon_sym_u16] = ACTIONS(2986), + [anon_sym_i16] = ACTIONS(2986), + [anon_sym_u32] = ACTIONS(2986), + [anon_sym_i32] = ACTIONS(2986), + [anon_sym_u64] = ACTIONS(2986), + [anon_sym_i64] = ACTIONS(2986), + [anon_sym_u128] = ACTIONS(2986), + [anon_sym_i128] = ACTIONS(2986), + [anon_sym_isize] = ACTIONS(2986), + [anon_sym_usize] = ACTIONS(2986), + [anon_sym_f32] = ACTIONS(2986), + [anon_sym_f64] = ACTIONS(2986), + [anon_sym_bool] = ACTIONS(2986), + [anon_sym_str] = ACTIONS(2986), + [anon_sym_char] = ACTIONS(2986), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2984), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_DOT_DOT] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2984), + [anon_sym_POUND] = ACTIONS(2984), + [anon_sym_SQUOTE] = ACTIONS(2986), + [anon_sym_async] = ACTIONS(2986), + [anon_sym_break] = ACTIONS(2986), + [anon_sym_const] = ACTIONS(2986), + [anon_sym_continue] = ACTIONS(2986), + [anon_sym_default] = ACTIONS(2986), + [anon_sym_enum] = ACTIONS(2986), + [anon_sym_fn] = ACTIONS(2986), + [anon_sym_for] = ACTIONS(2986), + [anon_sym_gen] = ACTIONS(2986), + [anon_sym_if] = ACTIONS(2986), + [anon_sym_impl] = ACTIONS(2986), + [anon_sym_let] = ACTIONS(2986), + [anon_sym_loop] = ACTIONS(2986), + [anon_sym_match] = ACTIONS(2986), + [anon_sym_mod] = ACTIONS(2986), + [anon_sym_pub] = ACTIONS(2986), + [anon_sym_return] = ACTIONS(2986), + [anon_sym_static] = ACTIONS(2986), + [anon_sym_struct] = ACTIONS(2986), + [anon_sym_trait] = ACTIONS(2986), + [anon_sym_type] = ACTIONS(2986), + [anon_sym_union] = ACTIONS(2986), + [anon_sym_unsafe] = ACTIONS(2986), + [anon_sym_use] = ACTIONS(2986), + [anon_sym_while] = ACTIONS(2986), + [anon_sym_extern] = ACTIONS(2986), + [anon_sym_yield] = ACTIONS(2986), + [anon_sym_move] = ACTIONS(2986), + [anon_sym_try] = ACTIONS(2986), + [sym_integer_literal] = ACTIONS(2984), + [aux_sym_string_literal_token1] = ACTIONS(2984), + [sym_char_literal] = ACTIONS(2984), + [anon_sym_true] = ACTIONS(2986), + [anon_sym_false] = ACTIONS(2986), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2986), + [sym_super] = ACTIONS(2986), + [sym_crate] = ACTIONS(2986), + [sym_metavariable] = ACTIONS(2984), + [sym__raw_string_literal_start] = ACTIONS(2984), + [sym_float_literal] = ACTIONS(2984), }, [STATE(773)] = { [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), - [ts_builtin_sym_end] = ACTIONS(3014), - [sym_identifier] = ACTIONS(3016), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_macro_rules_BANG] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3014), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_u8] = ACTIONS(3016), - [anon_sym_i8] = ACTIONS(3016), - [anon_sym_u16] = ACTIONS(3016), - [anon_sym_i16] = ACTIONS(3016), - [anon_sym_u32] = ACTIONS(3016), - [anon_sym_i32] = ACTIONS(3016), - [anon_sym_u64] = ACTIONS(3016), - [anon_sym_i64] = ACTIONS(3016), - [anon_sym_u128] = ACTIONS(3016), - [anon_sym_i128] = ACTIONS(3016), - [anon_sym_isize] = ACTIONS(3016), - [anon_sym_usize] = ACTIONS(3016), - [anon_sym_f32] = ACTIONS(3016), - [anon_sym_f64] = ACTIONS(3016), - [anon_sym_bool] = ACTIONS(3016), - [anon_sym_str] = ACTIONS(3016), - [anon_sym_char] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_BANG] = ACTIONS(3014), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(3014), - [anon_sym_DOT_DOT] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3014), - [anon_sym_POUND] = ACTIONS(3014), - [anon_sym_SQUOTE] = ACTIONS(3016), - [anon_sym_async] = ACTIONS(3016), - [anon_sym_break] = ACTIONS(3016), - [anon_sym_const] = ACTIONS(3016), - [anon_sym_continue] = ACTIONS(3016), - [anon_sym_default] = ACTIONS(3016), - [anon_sym_enum] = ACTIONS(3016), - [anon_sym_fn] = ACTIONS(3016), - [anon_sym_for] = ACTIONS(3016), - [anon_sym_gen] = ACTIONS(3016), - [anon_sym_if] = ACTIONS(3016), - [anon_sym_impl] = ACTIONS(3016), - [anon_sym_let] = ACTIONS(3016), - [anon_sym_loop] = ACTIONS(3016), - [anon_sym_match] = ACTIONS(3016), - [anon_sym_mod] = ACTIONS(3016), - [anon_sym_pub] = ACTIONS(3016), - [anon_sym_return] = ACTIONS(3016), - [anon_sym_static] = ACTIONS(3016), - [anon_sym_struct] = ACTIONS(3016), - [anon_sym_trait] = ACTIONS(3016), - [anon_sym_type] = ACTIONS(3016), - [anon_sym_union] = ACTIONS(3016), - [anon_sym_unsafe] = ACTIONS(3016), - [anon_sym_use] = ACTIONS(3016), - [anon_sym_while] = ACTIONS(3016), - [anon_sym_extern] = ACTIONS(3016), - [anon_sym_yield] = ACTIONS(3016), - [anon_sym_move] = ACTIONS(3016), - [anon_sym_try] = ACTIONS(3016), - [sym_integer_literal] = ACTIONS(3014), - [aux_sym_string_literal_token1] = ACTIONS(3014), - [sym_char_literal] = ACTIONS(3014), - [anon_sym_true] = ACTIONS(3016), - [anon_sym_false] = ACTIONS(3016), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3016), - [sym_super] = ACTIONS(3016), - [sym_crate] = ACTIONS(3016), - [sym_metavariable] = ACTIONS(3014), - [sym__raw_string_literal_start] = ACTIONS(3014), - [sym_float_literal] = ACTIONS(3014), + [ts_builtin_sym_end] = ACTIONS(2988), + [sym_identifier] = ACTIONS(2990), + [anon_sym_SEMI] = ACTIONS(2988), + [anon_sym_macro_rules_BANG] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_RBRACE] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_u8] = ACTIONS(2990), + [anon_sym_i8] = ACTIONS(2990), + [anon_sym_u16] = ACTIONS(2990), + [anon_sym_i16] = ACTIONS(2990), + [anon_sym_u32] = ACTIONS(2990), + [anon_sym_i32] = ACTIONS(2990), + [anon_sym_u64] = ACTIONS(2990), + [anon_sym_i64] = ACTIONS(2990), + [anon_sym_u128] = ACTIONS(2990), + [anon_sym_i128] = ACTIONS(2990), + [anon_sym_isize] = ACTIONS(2990), + [anon_sym_usize] = ACTIONS(2990), + [anon_sym_f32] = ACTIONS(2990), + [anon_sym_f64] = ACTIONS(2990), + [anon_sym_bool] = ACTIONS(2990), + [anon_sym_str] = ACTIONS(2990), + [anon_sym_char] = ACTIONS(2990), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_BANG] = ACTIONS(2988), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_PIPE] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(2988), + [anon_sym_POUND] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2990), + [anon_sym_async] = ACTIONS(2990), + [anon_sym_break] = ACTIONS(2990), + [anon_sym_const] = ACTIONS(2990), + [anon_sym_continue] = ACTIONS(2990), + [anon_sym_default] = ACTIONS(2990), + [anon_sym_enum] = ACTIONS(2990), + [anon_sym_fn] = ACTIONS(2990), + [anon_sym_for] = ACTIONS(2990), + [anon_sym_gen] = ACTIONS(2990), + [anon_sym_if] = ACTIONS(2990), + [anon_sym_impl] = ACTIONS(2990), + [anon_sym_let] = ACTIONS(2990), + [anon_sym_loop] = ACTIONS(2990), + [anon_sym_match] = ACTIONS(2990), + [anon_sym_mod] = ACTIONS(2990), + [anon_sym_pub] = ACTIONS(2990), + [anon_sym_return] = ACTIONS(2990), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_struct] = ACTIONS(2990), + [anon_sym_trait] = ACTIONS(2990), + [anon_sym_type] = ACTIONS(2990), + [anon_sym_union] = ACTIONS(2990), + [anon_sym_unsafe] = ACTIONS(2990), + [anon_sym_use] = ACTIONS(2990), + [anon_sym_while] = ACTIONS(2990), + [anon_sym_extern] = ACTIONS(2990), + [anon_sym_yield] = ACTIONS(2990), + [anon_sym_move] = ACTIONS(2990), + [anon_sym_try] = ACTIONS(2990), + [sym_integer_literal] = ACTIONS(2988), + [aux_sym_string_literal_token1] = ACTIONS(2988), + [sym_char_literal] = ACTIONS(2988), + [anon_sym_true] = ACTIONS(2990), + [anon_sym_false] = ACTIONS(2990), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2990), + [sym_super] = ACTIONS(2990), + [sym_crate] = ACTIONS(2990), + [sym_metavariable] = ACTIONS(2988), + [sym__raw_string_literal_start] = ACTIONS(2988), + [sym_float_literal] = ACTIONS(2988), }, [STATE(774)] = { [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(3018), - [sym_identifier] = ACTIONS(3020), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_macro_rules_BANG] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3018), - [anon_sym_u8] = ACTIONS(3020), - [anon_sym_i8] = ACTIONS(3020), - [anon_sym_u16] = ACTIONS(3020), - [anon_sym_i16] = ACTIONS(3020), - [anon_sym_u32] = ACTIONS(3020), - [anon_sym_i32] = ACTIONS(3020), - [anon_sym_u64] = ACTIONS(3020), - [anon_sym_i64] = ACTIONS(3020), - [anon_sym_u128] = ACTIONS(3020), - [anon_sym_i128] = ACTIONS(3020), - [anon_sym_isize] = ACTIONS(3020), - [anon_sym_usize] = ACTIONS(3020), - [anon_sym_f32] = ACTIONS(3020), - [anon_sym_f64] = ACTIONS(3020), - [anon_sym_bool] = ACTIONS(3020), - [anon_sym_str] = ACTIONS(3020), - [anon_sym_char] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_BANG] = ACTIONS(3018), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_DOT_DOT] = ACTIONS(3018), - [anon_sym_COLON_COLON] = ACTIONS(3018), - [anon_sym_POUND] = ACTIONS(3018), - [anon_sym_SQUOTE] = ACTIONS(3020), - [anon_sym_async] = ACTIONS(3020), - [anon_sym_break] = ACTIONS(3020), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_continue] = ACTIONS(3020), - [anon_sym_default] = ACTIONS(3020), - [anon_sym_enum] = ACTIONS(3020), - [anon_sym_fn] = ACTIONS(3020), - [anon_sym_for] = ACTIONS(3020), - [anon_sym_gen] = ACTIONS(3020), - [anon_sym_if] = ACTIONS(3020), - [anon_sym_impl] = ACTIONS(3020), - [anon_sym_let] = ACTIONS(3020), - [anon_sym_loop] = ACTIONS(3020), - [anon_sym_match] = ACTIONS(3020), - [anon_sym_mod] = ACTIONS(3020), - [anon_sym_pub] = ACTIONS(3020), - [anon_sym_return] = ACTIONS(3020), - [anon_sym_static] = ACTIONS(3020), - [anon_sym_struct] = ACTIONS(3020), - [anon_sym_trait] = ACTIONS(3020), - [anon_sym_type] = ACTIONS(3020), - [anon_sym_union] = ACTIONS(3020), - [anon_sym_unsafe] = ACTIONS(3020), - [anon_sym_use] = ACTIONS(3020), - [anon_sym_while] = ACTIONS(3020), - [anon_sym_extern] = ACTIONS(3020), - [anon_sym_yield] = ACTIONS(3020), - [anon_sym_move] = ACTIONS(3020), - [anon_sym_try] = ACTIONS(3020), - [sym_integer_literal] = ACTIONS(3018), - [aux_sym_string_literal_token1] = ACTIONS(3018), - [sym_char_literal] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3020), - [anon_sym_false] = ACTIONS(3020), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3020), - [sym_super] = ACTIONS(3020), - [sym_crate] = ACTIONS(3020), - [sym_metavariable] = ACTIONS(3018), - [sym__raw_string_literal_start] = ACTIONS(3018), - [sym_float_literal] = ACTIONS(3018), + [ts_builtin_sym_end] = ACTIONS(2992), + [sym_identifier] = ACTIONS(2994), + [anon_sym_SEMI] = ACTIONS(2992), + [anon_sym_macro_rules_BANG] = ACTIONS(2992), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2992), + [anon_sym_RBRACE] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2992), + [anon_sym_u8] = ACTIONS(2994), + [anon_sym_i8] = ACTIONS(2994), + [anon_sym_u16] = ACTIONS(2994), + [anon_sym_i16] = ACTIONS(2994), + [anon_sym_u32] = ACTIONS(2994), + [anon_sym_i32] = ACTIONS(2994), + [anon_sym_u64] = ACTIONS(2994), + [anon_sym_i64] = ACTIONS(2994), + [anon_sym_u128] = ACTIONS(2994), + [anon_sym_i128] = ACTIONS(2994), + [anon_sym_isize] = ACTIONS(2994), + [anon_sym_usize] = ACTIONS(2994), + [anon_sym_f32] = ACTIONS(2994), + [anon_sym_f64] = ACTIONS(2994), + [anon_sym_bool] = ACTIONS(2994), + [anon_sym_str] = ACTIONS(2994), + [anon_sym_char] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2992), + [anon_sym_BANG] = ACTIONS(2992), + [anon_sym_AMP] = ACTIONS(2992), + [anon_sym_PIPE] = ACTIONS(2992), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT] = ACTIONS(2992), + [anon_sym_COLON_COLON] = ACTIONS(2992), + [anon_sym_POUND] = ACTIONS(2992), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(2994), + [anon_sym_break] = ACTIONS(2994), + [anon_sym_const] = ACTIONS(2994), + [anon_sym_continue] = ACTIONS(2994), + [anon_sym_default] = ACTIONS(2994), + [anon_sym_enum] = ACTIONS(2994), + [anon_sym_fn] = ACTIONS(2994), + [anon_sym_for] = ACTIONS(2994), + [anon_sym_gen] = ACTIONS(2994), + [anon_sym_if] = ACTIONS(2994), + [anon_sym_impl] = ACTIONS(2994), + [anon_sym_let] = ACTIONS(2994), + [anon_sym_loop] = ACTIONS(2994), + [anon_sym_match] = ACTIONS(2994), + [anon_sym_mod] = ACTIONS(2994), + [anon_sym_pub] = ACTIONS(2994), + [anon_sym_return] = ACTIONS(2994), + [anon_sym_static] = ACTIONS(2994), + [anon_sym_struct] = ACTIONS(2994), + [anon_sym_trait] = ACTIONS(2994), + [anon_sym_type] = ACTIONS(2994), + [anon_sym_union] = ACTIONS(2994), + [anon_sym_unsafe] = ACTIONS(2994), + [anon_sym_use] = ACTIONS(2994), + [anon_sym_while] = ACTIONS(2994), + [anon_sym_extern] = ACTIONS(2994), + [anon_sym_yield] = ACTIONS(2994), + [anon_sym_move] = ACTIONS(2994), + [anon_sym_try] = ACTIONS(2994), + [sym_integer_literal] = ACTIONS(2992), + [aux_sym_string_literal_token1] = ACTIONS(2992), + [sym_char_literal] = ACTIONS(2992), + [anon_sym_true] = ACTIONS(2994), + [anon_sym_false] = ACTIONS(2994), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2994), + [sym_super] = ACTIONS(2994), + [sym_crate] = ACTIONS(2994), + [sym_metavariable] = ACTIONS(2992), + [sym__raw_string_literal_start] = ACTIONS(2992), + [sym_float_literal] = ACTIONS(2992), }, [STATE(775)] = { [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), - [ts_builtin_sym_end] = ACTIONS(3022), - [sym_identifier] = ACTIONS(3024), - [anon_sym_SEMI] = ACTIONS(3022), - [anon_sym_macro_rules_BANG] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(3022), - [anon_sym_RBRACE] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_BANG] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_PIPE] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(3022), - [anon_sym_DOT_DOT] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(3022), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(3024), - [anon_sym_break] = ACTIONS(3024), - [anon_sym_const] = ACTIONS(3024), - [anon_sym_continue] = ACTIONS(3024), - [anon_sym_default] = ACTIONS(3024), - [anon_sym_enum] = ACTIONS(3024), - [anon_sym_fn] = ACTIONS(3024), - [anon_sym_for] = ACTIONS(3024), - [anon_sym_gen] = ACTIONS(3024), - [anon_sym_if] = ACTIONS(3024), - [anon_sym_impl] = ACTIONS(3024), - [anon_sym_let] = ACTIONS(3024), - [anon_sym_loop] = ACTIONS(3024), - [anon_sym_match] = ACTIONS(3024), - [anon_sym_mod] = ACTIONS(3024), - [anon_sym_pub] = ACTIONS(3024), - [anon_sym_return] = ACTIONS(3024), - [anon_sym_static] = ACTIONS(3024), - [anon_sym_struct] = ACTIONS(3024), - [anon_sym_trait] = ACTIONS(3024), - [anon_sym_type] = ACTIONS(3024), - [anon_sym_union] = ACTIONS(3024), - [anon_sym_unsafe] = ACTIONS(3024), - [anon_sym_use] = ACTIONS(3024), - [anon_sym_while] = ACTIONS(3024), - [anon_sym_extern] = ACTIONS(3024), - [anon_sym_yield] = ACTIONS(3024), - [anon_sym_move] = ACTIONS(3024), - [anon_sym_try] = ACTIONS(3024), - [sym_integer_literal] = ACTIONS(3022), - [aux_sym_string_literal_token1] = ACTIONS(3022), - [sym_char_literal] = ACTIONS(3022), - [anon_sym_true] = ACTIONS(3024), - [anon_sym_false] = ACTIONS(3024), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3024), - [sym_super] = ACTIONS(3024), - [sym_crate] = ACTIONS(3024), - [sym_metavariable] = ACTIONS(3022), - [sym__raw_string_literal_start] = ACTIONS(3022), - [sym_float_literal] = ACTIONS(3022), + [ts_builtin_sym_end] = ACTIONS(2996), + [sym_identifier] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2996), + [anon_sym_macro_rules_BANG] = ACTIONS(2996), + [anon_sym_LPAREN] = ACTIONS(2996), + [anon_sym_LBRACK] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2996), + [anon_sym_RBRACE] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2996), + [anon_sym_u8] = ACTIONS(2998), + [anon_sym_i8] = ACTIONS(2998), + [anon_sym_u16] = ACTIONS(2998), + [anon_sym_i16] = ACTIONS(2998), + [anon_sym_u32] = ACTIONS(2998), + [anon_sym_i32] = ACTIONS(2998), + [anon_sym_u64] = ACTIONS(2998), + [anon_sym_i64] = ACTIONS(2998), + [anon_sym_u128] = ACTIONS(2998), + [anon_sym_i128] = ACTIONS(2998), + [anon_sym_isize] = ACTIONS(2998), + [anon_sym_usize] = ACTIONS(2998), + [anon_sym_f32] = ACTIONS(2998), + [anon_sym_f64] = ACTIONS(2998), + [anon_sym_bool] = ACTIONS(2998), + [anon_sym_str] = ACTIONS(2998), + [anon_sym_char] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(2996), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2996), + [anon_sym_LT] = ACTIONS(2996), + [anon_sym_DOT_DOT] = ACTIONS(2996), + [anon_sym_COLON_COLON] = ACTIONS(2996), + [anon_sym_POUND] = ACTIONS(2996), + [anon_sym_SQUOTE] = ACTIONS(2998), + [anon_sym_async] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_const] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_default] = ACTIONS(2998), + [anon_sym_enum] = ACTIONS(2998), + [anon_sym_fn] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_gen] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_impl] = ACTIONS(2998), + [anon_sym_let] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_mod] = ACTIONS(2998), + [anon_sym_pub] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_static] = ACTIONS(2998), + [anon_sym_struct] = ACTIONS(2998), + [anon_sym_trait] = ACTIONS(2998), + [anon_sym_type] = ACTIONS(2998), + [anon_sym_union] = ACTIONS(2998), + [anon_sym_unsafe] = ACTIONS(2998), + [anon_sym_use] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_extern] = ACTIONS(2998), + [anon_sym_yield] = ACTIONS(2998), + [anon_sym_move] = ACTIONS(2998), + [anon_sym_try] = ACTIONS(2998), + [sym_integer_literal] = ACTIONS(2996), + [aux_sym_string_literal_token1] = ACTIONS(2996), + [sym_char_literal] = ACTIONS(2996), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2998), + [sym_super] = ACTIONS(2998), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(2996), + [sym__raw_string_literal_start] = ACTIONS(2996), + [sym_float_literal] = ACTIONS(2996), }, [STATE(776)] = { [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), - [ts_builtin_sym_end] = ACTIONS(3026), - [sym_identifier] = ACTIONS(3028), - [anon_sym_SEMI] = ACTIONS(3026), - [anon_sym_macro_rules_BANG] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3026), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_RBRACE] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_u8] = ACTIONS(3028), - [anon_sym_i8] = ACTIONS(3028), - [anon_sym_u16] = ACTIONS(3028), - [anon_sym_i16] = ACTIONS(3028), - [anon_sym_u32] = ACTIONS(3028), - [anon_sym_i32] = ACTIONS(3028), - [anon_sym_u64] = ACTIONS(3028), - [anon_sym_i64] = ACTIONS(3028), - [anon_sym_u128] = ACTIONS(3028), - [anon_sym_i128] = ACTIONS(3028), - [anon_sym_isize] = ACTIONS(3028), - [anon_sym_usize] = ACTIONS(3028), - [anon_sym_f32] = ACTIONS(3028), - [anon_sym_f64] = ACTIONS(3028), - [anon_sym_bool] = ACTIONS(3028), - [anon_sym_str] = ACTIONS(3028), - [anon_sym_char] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_DOT_DOT] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_POUND] = ACTIONS(3026), - [anon_sym_SQUOTE] = ACTIONS(3028), - [anon_sym_async] = ACTIONS(3028), - [anon_sym_break] = ACTIONS(3028), - [anon_sym_const] = ACTIONS(3028), - [anon_sym_continue] = ACTIONS(3028), - [anon_sym_default] = ACTIONS(3028), - [anon_sym_enum] = ACTIONS(3028), - [anon_sym_fn] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3028), - [anon_sym_gen] = ACTIONS(3028), - [anon_sym_if] = ACTIONS(3028), - [anon_sym_impl] = ACTIONS(3028), - [anon_sym_let] = ACTIONS(3028), - [anon_sym_loop] = ACTIONS(3028), - [anon_sym_match] = ACTIONS(3028), - [anon_sym_mod] = ACTIONS(3028), - [anon_sym_pub] = ACTIONS(3028), - [anon_sym_return] = ACTIONS(3028), - [anon_sym_static] = ACTIONS(3028), - [anon_sym_struct] = ACTIONS(3028), - [anon_sym_trait] = ACTIONS(3028), - [anon_sym_type] = ACTIONS(3028), - [anon_sym_union] = ACTIONS(3028), - [anon_sym_unsafe] = ACTIONS(3028), - [anon_sym_use] = ACTIONS(3028), - [anon_sym_while] = ACTIONS(3028), - [anon_sym_extern] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3028), - [anon_sym_move] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3028), - [sym_integer_literal] = ACTIONS(3026), - [aux_sym_string_literal_token1] = ACTIONS(3026), - [sym_char_literal] = ACTIONS(3026), - [anon_sym_true] = ACTIONS(3028), - [anon_sym_false] = ACTIONS(3028), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3028), - [sym_super] = ACTIONS(3028), - [sym_crate] = ACTIONS(3028), - [sym_metavariable] = ACTIONS(3026), - [sym__raw_string_literal_start] = ACTIONS(3026), - [sym_float_literal] = ACTIONS(3026), + [ts_builtin_sym_end] = ACTIONS(3000), + [sym_identifier] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(3000), + [anon_sym_macro_rules_BANG] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(3000), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_RBRACE] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_BANG] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(3000), + [anon_sym_PIPE] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_DOT_DOT] = ACTIONS(3000), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_POUND] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3002), + [anon_sym_async] = ACTIONS(3002), + [anon_sym_break] = ACTIONS(3002), + [anon_sym_const] = ACTIONS(3002), + [anon_sym_continue] = ACTIONS(3002), + [anon_sym_default] = ACTIONS(3002), + [anon_sym_enum] = ACTIONS(3002), + [anon_sym_fn] = ACTIONS(3002), + [anon_sym_for] = ACTIONS(3002), + [anon_sym_gen] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_impl] = ACTIONS(3002), + [anon_sym_let] = ACTIONS(3002), + [anon_sym_loop] = ACTIONS(3002), + [anon_sym_match] = ACTIONS(3002), + [anon_sym_mod] = ACTIONS(3002), + [anon_sym_pub] = ACTIONS(3002), + [anon_sym_return] = ACTIONS(3002), + [anon_sym_static] = ACTIONS(3002), + [anon_sym_struct] = ACTIONS(3002), + [anon_sym_trait] = ACTIONS(3002), + [anon_sym_type] = ACTIONS(3002), + [anon_sym_union] = ACTIONS(3002), + [anon_sym_unsafe] = ACTIONS(3002), + [anon_sym_use] = ACTIONS(3002), + [anon_sym_while] = ACTIONS(3002), + [anon_sym_extern] = ACTIONS(3002), + [anon_sym_yield] = ACTIONS(3002), + [anon_sym_move] = ACTIONS(3002), + [anon_sym_try] = ACTIONS(3002), + [sym_integer_literal] = ACTIONS(3000), + [aux_sym_string_literal_token1] = ACTIONS(3000), + [sym_char_literal] = ACTIONS(3000), + [anon_sym_true] = ACTIONS(3002), + [anon_sym_false] = ACTIONS(3002), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3002), + [sym_super] = ACTIONS(3002), + [sym_crate] = ACTIONS(3002), + [sym_metavariable] = ACTIONS(3000), + [sym__raw_string_literal_start] = ACTIONS(3000), + [sym_float_literal] = ACTIONS(3000), }, [STATE(777)] = { [sym_line_comment] = STATE(777), [sym_block_comment] = STATE(777), + [ts_builtin_sym_end] = ACTIONS(3004), + [sym_identifier] = ACTIONS(3006), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_macro_rules_BANG] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3004), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3004), + [anon_sym_u8] = ACTIONS(3006), + [anon_sym_i8] = ACTIONS(3006), + [anon_sym_u16] = ACTIONS(3006), + [anon_sym_i16] = ACTIONS(3006), + [anon_sym_u32] = ACTIONS(3006), + [anon_sym_i32] = ACTIONS(3006), + [anon_sym_u64] = ACTIONS(3006), + [anon_sym_i64] = ACTIONS(3006), + [anon_sym_u128] = ACTIONS(3006), + [anon_sym_i128] = ACTIONS(3006), + [anon_sym_isize] = ACTIONS(3006), + [anon_sym_usize] = ACTIONS(3006), + [anon_sym_f32] = ACTIONS(3006), + [anon_sym_f64] = ACTIONS(3006), + [anon_sym_bool] = ACTIONS(3006), + [anon_sym_str] = ACTIONS(3006), + [anon_sym_char] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3004), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_PIPE] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(3004), + [anon_sym_DOT_DOT] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_POUND] = ACTIONS(3004), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_async] = ACTIONS(3006), + [anon_sym_break] = ACTIONS(3006), + [anon_sym_const] = ACTIONS(3006), + [anon_sym_continue] = ACTIONS(3006), + [anon_sym_default] = ACTIONS(3006), + [anon_sym_enum] = ACTIONS(3006), + [anon_sym_fn] = ACTIONS(3006), + [anon_sym_for] = ACTIONS(3006), + [anon_sym_gen] = ACTIONS(3006), + [anon_sym_if] = ACTIONS(3006), + [anon_sym_impl] = ACTIONS(3006), + [anon_sym_let] = ACTIONS(3006), + [anon_sym_loop] = ACTIONS(3006), + [anon_sym_match] = ACTIONS(3006), + [anon_sym_mod] = ACTIONS(3006), + [anon_sym_pub] = ACTIONS(3006), + [anon_sym_return] = ACTIONS(3006), + [anon_sym_static] = ACTIONS(3006), + [anon_sym_struct] = ACTIONS(3006), + [anon_sym_trait] = ACTIONS(3006), + [anon_sym_type] = ACTIONS(3006), + [anon_sym_union] = ACTIONS(3006), + [anon_sym_unsafe] = ACTIONS(3006), + [anon_sym_use] = ACTIONS(3006), + [anon_sym_while] = ACTIONS(3006), + [anon_sym_extern] = ACTIONS(3006), + [anon_sym_yield] = ACTIONS(3006), + [anon_sym_move] = ACTIONS(3006), + [anon_sym_try] = ACTIONS(3006), + [sym_integer_literal] = ACTIONS(3004), + [aux_sym_string_literal_token1] = ACTIONS(3004), + [sym_char_literal] = ACTIONS(3004), + [anon_sym_true] = ACTIONS(3006), + [anon_sym_false] = ACTIONS(3006), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3006), + [sym_super] = ACTIONS(3006), + [sym_crate] = ACTIONS(3006), + [sym_metavariable] = ACTIONS(3004), + [sym__raw_string_literal_start] = ACTIONS(3004), + [sym_float_literal] = ACTIONS(3004), + }, + [STATE(778)] = { + [sym_line_comment] = STATE(778), + [sym_block_comment] = STATE(778), + [ts_builtin_sym_end] = ACTIONS(3008), + [sym_identifier] = ACTIONS(3010), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_macro_rules_BANG] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3008), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3008), + [anon_sym_u8] = ACTIONS(3010), + [anon_sym_i8] = ACTIONS(3010), + [anon_sym_u16] = ACTIONS(3010), + [anon_sym_i16] = ACTIONS(3010), + [anon_sym_u32] = ACTIONS(3010), + [anon_sym_i32] = ACTIONS(3010), + [anon_sym_u64] = ACTIONS(3010), + [anon_sym_i64] = ACTIONS(3010), + [anon_sym_u128] = ACTIONS(3010), + [anon_sym_i128] = ACTIONS(3010), + [anon_sym_isize] = ACTIONS(3010), + [anon_sym_usize] = ACTIONS(3010), + [anon_sym_f32] = ACTIONS(3010), + [anon_sym_f64] = ACTIONS(3010), + [anon_sym_bool] = ACTIONS(3010), + [anon_sym_str] = ACTIONS(3010), + [anon_sym_char] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_BANG] = ACTIONS(3008), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_COLON_COLON] = ACTIONS(3008), + [anon_sym_POUND] = ACTIONS(3008), + [anon_sym_SQUOTE] = ACTIONS(3010), + [anon_sym_async] = ACTIONS(3010), + [anon_sym_break] = ACTIONS(3010), + [anon_sym_const] = ACTIONS(3010), + [anon_sym_continue] = ACTIONS(3010), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_enum] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3010), + [anon_sym_gen] = ACTIONS(3010), + [anon_sym_if] = ACTIONS(3010), + [anon_sym_impl] = ACTIONS(3010), + [anon_sym_let] = ACTIONS(3010), + [anon_sym_loop] = ACTIONS(3010), + [anon_sym_match] = ACTIONS(3010), + [anon_sym_mod] = ACTIONS(3010), + [anon_sym_pub] = ACTIONS(3010), + [anon_sym_return] = ACTIONS(3010), + [anon_sym_static] = ACTIONS(3010), + [anon_sym_struct] = ACTIONS(3010), + [anon_sym_trait] = ACTIONS(3010), + [anon_sym_type] = ACTIONS(3010), + [anon_sym_union] = ACTIONS(3010), + [anon_sym_unsafe] = ACTIONS(3010), + [anon_sym_use] = ACTIONS(3010), + [anon_sym_while] = ACTIONS(3010), + [anon_sym_extern] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3010), + [anon_sym_move] = ACTIONS(3010), + [anon_sym_try] = ACTIONS(3010), + [sym_integer_literal] = ACTIONS(3008), + [aux_sym_string_literal_token1] = ACTIONS(3008), + [sym_char_literal] = ACTIONS(3008), + [anon_sym_true] = ACTIONS(3010), + [anon_sym_false] = ACTIONS(3010), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3010), + [sym_super] = ACTIONS(3010), + [sym_crate] = ACTIONS(3010), + [sym_metavariable] = ACTIONS(3008), + [sym__raw_string_literal_start] = ACTIONS(3008), + [sym_float_literal] = ACTIONS(3008), + }, + [STATE(779)] = { + [sym_line_comment] = STATE(779), + [sym_block_comment] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(3012), + [sym_identifier] = ACTIONS(3014), + [anon_sym_SEMI] = ACTIONS(3012), + [anon_sym_macro_rules_BANG] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_RBRACE] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3012), + [anon_sym_u8] = ACTIONS(3014), + [anon_sym_i8] = ACTIONS(3014), + [anon_sym_u16] = ACTIONS(3014), + [anon_sym_i16] = ACTIONS(3014), + [anon_sym_u32] = ACTIONS(3014), + [anon_sym_i32] = ACTIONS(3014), + [anon_sym_u64] = ACTIONS(3014), + [anon_sym_i64] = ACTIONS(3014), + [anon_sym_u128] = ACTIONS(3014), + [anon_sym_i128] = ACTIONS(3014), + [anon_sym_isize] = ACTIONS(3014), + [anon_sym_usize] = ACTIONS(3014), + [anon_sym_f32] = ACTIONS(3014), + [anon_sym_f64] = ACTIONS(3014), + [anon_sym_bool] = ACTIONS(3014), + [anon_sym_str] = ACTIONS(3014), + [anon_sym_char] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3012), + [anon_sym_LT] = ACTIONS(3012), + [anon_sym_DOT_DOT] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3012), + [anon_sym_POUND] = ACTIONS(3012), + [anon_sym_SQUOTE] = ACTIONS(3014), + [anon_sym_async] = ACTIONS(3014), + [anon_sym_break] = ACTIONS(3014), + [anon_sym_const] = ACTIONS(3014), + [anon_sym_continue] = ACTIONS(3014), + [anon_sym_default] = ACTIONS(3014), + [anon_sym_enum] = ACTIONS(3014), + [anon_sym_fn] = ACTIONS(3014), + [anon_sym_for] = ACTIONS(3014), + [anon_sym_gen] = ACTIONS(3014), + [anon_sym_if] = ACTIONS(3014), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_let] = ACTIONS(3014), + [anon_sym_loop] = ACTIONS(3014), + [anon_sym_match] = ACTIONS(3014), + [anon_sym_mod] = ACTIONS(3014), + [anon_sym_pub] = ACTIONS(3014), + [anon_sym_return] = ACTIONS(3014), + [anon_sym_static] = ACTIONS(3014), + [anon_sym_struct] = ACTIONS(3014), + [anon_sym_trait] = ACTIONS(3014), + [anon_sym_type] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3014), + [anon_sym_unsafe] = ACTIONS(3014), + [anon_sym_use] = ACTIONS(3014), + [anon_sym_while] = ACTIONS(3014), + [anon_sym_extern] = ACTIONS(3014), + [anon_sym_yield] = ACTIONS(3014), + [anon_sym_move] = ACTIONS(3014), + [anon_sym_try] = ACTIONS(3014), + [sym_integer_literal] = ACTIONS(3012), + [aux_sym_string_literal_token1] = ACTIONS(3012), + [sym_char_literal] = ACTIONS(3012), + [anon_sym_true] = ACTIONS(3014), + [anon_sym_false] = ACTIONS(3014), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3014), + [sym_super] = ACTIONS(3014), + [sym_crate] = ACTIONS(3014), + [sym_metavariable] = ACTIONS(3012), + [sym__raw_string_literal_start] = ACTIONS(3012), + [sym_float_literal] = ACTIONS(3012), + }, + [STATE(780)] = { + [sym_line_comment] = STATE(780), + [sym_block_comment] = STATE(780), + [ts_builtin_sym_end] = ACTIONS(3016), + [sym_identifier] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(3016), + [anon_sym_macro_rules_BANG] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_RBRACE] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_u8] = ACTIONS(3018), + [anon_sym_i8] = ACTIONS(3018), + [anon_sym_u16] = ACTIONS(3018), + [anon_sym_i16] = ACTIONS(3018), + [anon_sym_u32] = ACTIONS(3018), + [anon_sym_i32] = ACTIONS(3018), + [anon_sym_u64] = ACTIONS(3018), + [anon_sym_i64] = ACTIONS(3018), + [anon_sym_u128] = ACTIONS(3018), + [anon_sym_i128] = ACTIONS(3018), + [anon_sym_isize] = ACTIONS(3018), + [anon_sym_usize] = ACTIONS(3018), + [anon_sym_f32] = ACTIONS(3018), + [anon_sym_f64] = ACTIONS(3018), + [anon_sym_bool] = ACTIONS(3018), + [anon_sym_str] = ACTIONS(3018), + [anon_sym_char] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_BANG] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3016), + [anon_sym_PIPE] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym_DOT_DOT] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_POUND] = ACTIONS(3016), + [anon_sym_SQUOTE] = ACTIONS(3018), + [anon_sym_async] = ACTIONS(3018), + [anon_sym_break] = ACTIONS(3018), + [anon_sym_const] = ACTIONS(3018), + [anon_sym_continue] = ACTIONS(3018), + [anon_sym_default] = ACTIONS(3018), + [anon_sym_enum] = ACTIONS(3018), + [anon_sym_fn] = ACTIONS(3018), + [anon_sym_for] = ACTIONS(3018), + [anon_sym_gen] = ACTIONS(3018), + [anon_sym_if] = ACTIONS(3018), + [anon_sym_impl] = ACTIONS(3018), + [anon_sym_let] = ACTIONS(3018), + [anon_sym_loop] = ACTIONS(3018), + [anon_sym_match] = ACTIONS(3018), + [anon_sym_mod] = ACTIONS(3018), + [anon_sym_pub] = ACTIONS(3018), + [anon_sym_return] = ACTIONS(3018), + [anon_sym_static] = ACTIONS(3018), + [anon_sym_struct] = ACTIONS(3018), + [anon_sym_trait] = ACTIONS(3018), + [anon_sym_type] = ACTIONS(3018), + [anon_sym_union] = ACTIONS(3018), + [anon_sym_unsafe] = ACTIONS(3018), + [anon_sym_use] = ACTIONS(3018), + [anon_sym_while] = ACTIONS(3018), + [anon_sym_extern] = ACTIONS(3018), + [anon_sym_yield] = ACTIONS(3018), + [anon_sym_move] = ACTIONS(3018), + [anon_sym_try] = ACTIONS(3018), + [sym_integer_literal] = ACTIONS(3016), + [aux_sym_string_literal_token1] = ACTIONS(3016), + [sym_char_literal] = ACTIONS(3016), + [anon_sym_true] = ACTIONS(3018), + [anon_sym_false] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3018), + [sym_super] = ACTIONS(3018), + [sym_crate] = ACTIONS(3018), + [sym_metavariable] = ACTIONS(3016), + [sym__raw_string_literal_start] = ACTIONS(3016), + [sym_float_literal] = ACTIONS(3016), + }, + [STATE(781)] = { + [sym_line_comment] = STATE(781), + [sym_block_comment] = STATE(781), + [ts_builtin_sym_end] = ACTIONS(3020), + [sym_identifier] = ACTIONS(3022), + [anon_sym_SEMI] = ACTIONS(3020), + [anon_sym_macro_rules_BANG] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_RBRACE] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_u8] = ACTIONS(3022), + [anon_sym_i8] = ACTIONS(3022), + [anon_sym_u16] = ACTIONS(3022), + [anon_sym_i16] = ACTIONS(3022), + [anon_sym_u32] = ACTIONS(3022), + [anon_sym_i32] = ACTIONS(3022), + [anon_sym_u64] = ACTIONS(3022), + [anon_sym_i64] = ACTIONS(3022), + [anon_sym_u128] = ACTIONS(3022), + [anon_sym_i128] = ACTIONS(3022), + [anon_sym_isize] = ACTIONS(3022), + [anon_sym_usize] = ACTIONS(3022), + [anon_sym_f32] = ACTIONS(3022), + [anon_sym_f64] = ACTIONS(3022), + [anon_sym_bool] = ACTIONS(3022), + [anon_sym_str] = ACTIONS(3022), + [anon_sym_char] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3020), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(3020), + [anon_sym_LT] = ACTIONS(3020), + [anon_sym_DOT_DOT] = ACTIONS(3020), + [anon_sym_COLON_COLON] = ACTIONS(3020), + [anon_sym_POUND] = ACTIONS(3020), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_async] = ACTIONS(3022), + [anon_sym_break] = ACTIONS(3022), + [anon_sym_const] = ACTIONS(3022), + [anon_sym_continue] = ACTIONS(3022), + [anon_sym_default] = ACTIONS(3022), + [anon_sym_enum] = ACTIONS(3022), + [anon_sym_fn] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3022), + [anon_sym_gen] = ACTIONS(3022), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_impl] = ACTIONS(3022), + [anon_sym_let] = ACTIONS(3022), + [anon_sym_loop] = ACTIONS(3022), + [anon_sym_match] = ACTIONS(3022), + [anon_sym_mod] = ACTIONS(3022), + [anon_sym_pub] = ACTIONS(3022), + [anon_sym_return] = ACTIONS(3022), + [anon_sym_static] = ACTIONS(3022), + [anon_sym_struct] = ACTIONS(3022), + [anon_sym_trait] = ACTIONS(3022), + [anon_sym_type] = ACTIONS(3022), + [anon_sym_union] = ACTIONS(3022), + [anon_sym_unsafe] = ACTIONS(3022), + [anon_sym_use] = ACTIONS(3022), + [anon_sym_while] = ACTIONS(3022), + [anon_sym_extern] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3022), + [anon_sym_move] = ACTIONS(3022), + [anon_sym_try] = ACTIONS(3022), + [sym_integer_literal] = ACTIONS(3020), + [aux_sym_string_literal_token1] = ACTIONS(3020), + [sym_char_literal] = ACTIONS(3020), + [anon_sym_true] = ACTIONS(3022), + [anon_sym_false] = ACTIONS(3022), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3020), + [sym__raw_string_literal_start] = ACTIONS(3020), + [sym_float_literal] = ACTIONS(3020), + }, + [STATE(782)] = { + [sym_line_comment] = STATE(782), + [sym_block_comment] = STATE(782), + [ts_builtin_sym_end] = ACTIONS(3024), + [sym_identifier] = ACTIONS(3026), + [anon_sym_SEMI] = ACTIONS(3024), + [anon_sym_macro_rules_BANG] = ACTIONS(3024), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_RBRACE] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3024), + [anon_sym_u8] = ACTIONS(3026), + [anon_sym_i8] = ACTIONS(3026), + [anon_sym_u16] = ACTIONS(3026), + [anon_sym_i16] = ACTIONS(3026), + [anon_sym_u32] = ACTIONS(3026), + [anon_sym_i32] = ACTIONS(3026), + [anon_sym_u64] = ACTIONS(3026), + [anon_sym_i64] = ACTIONS(3026), + [anon_sym_u128] = ACTIONS(3026), + [anon_sym_i128] = ACTIONS(3026), + [anon_sym_isize] = ACTIONS(3026), + [anon_sym_usize] = ACTIONS(3026), + [anon_sym_f32] = ACTIONS(3026), + [anon_sym_f64] = ACTIONS(3026), + [anon_sym_bool] = ACTIONS(3026), + [anon_sym_str] = ACTIONS(3026), + [anon_sym_char] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3024), + [anon_sym_DOT_DOT] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3024), + [anon_sym_POUND] = ACTIONS(3024), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_async] = ACTIONS(3026), + [anon_sym_break] = ACTIONS(3026), + [anon_sym_const] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(3026), + [anon_sym_default] = ACTIONS(3026), + [anon_sym_enum] = ACTIONS(3026), + [anon_sym_fn] = ACTIONS(3026), + [anon_sym_for] = ACTIONS(3026), + [anon_sym_gen] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_impl] = ACTIONS(3026), + [anon_sym_let] = ACTIONS(3026), + [anon_sym_loop] = ACTIONS(3026), + [anon_sym_match] = ACTIONS(3026), + [anon_sym_mod] = ACTIONS(3026), + [anon_sym_pub] = ACTIONS(3026), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_static] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3026), + [anon_sym_trait] = ACTIONS(3026), + [anon_sym_type] = ACTIONS(3026), + [anon_sym_union] = ACTIONS(3026), + [anon_sym_unsafe] = ACTIONS(3026), + [anon_sym_use] = ACTIONS(3026), + [anon_sym_while] = ACTIONS(3026), + [anon_sym_extern] = ACTIONS(3026), + [anon_sym_yield] = ACTIONS(3026), + [anon_sym_move] = ACTIONS(3026), + [anon_sym_try] = ACTIONS(3026), + [sym_integer_literal] = ACTIONS(3024), + [aux_sym_string_literal_token1] = ACTIONS(3024), + [sym_char_literal] = ACTIONS(3024), + [anon_sym_true] = ACTIONS(3026), + [anon_sym_false] = ACTIONS(3026), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3026), + [sym_super] = ACTIONS(3026), + [sym_crate] = ACTIONS(3026), + [sym_metavariable] = ACTIONS(3024), + [sym__raw_string_literal_start] = ACTIONS(3024), + [sym_float_literal] = ACTIONS(3024), + }, + [STATE(783)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym_closure_expression] = STATE(3632), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(3414), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(783), + [sym_block_comment] = STATE(783), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(3028), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [anon_sym_move] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(784)] = { + [sym_line_comment] = STATE(784), + [sym_block_comment] = STATE(784), [ts_builtin_sym_end] = ACTIONS(3030), [sym_identifier] = ACTIONS(3032), [anon_sym_SEMI] = ACTIONS(3030), @@ -94403,9 +96777,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3030), [sym_float_literal] = ACTIONS(3030), }, - [STATE(778)] = { - [sym_line_comment] = STATE(778), - [sym_block_comment] = STATE(778), + [STATE(785)] = { + [sym_line_comment] = STATE(785), + [sym_block_comment] = STATE(785), [ts_builtin_sym_end] = ACTIONS(3034), [sym_identifier] = ACTIONS(3036), [anon_sym_SEMI] = ACTIONS(3034), @@ -94484,9 +96858,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3034), [sym_float_literal] = ACTIONS(3034), }, - [STATE(779)] = { - [sym_line_comment] = STATE(779), - [sym_block_comment] = STATE(779), + [STATE(786)] = { + [sym_line_comment] = STATE(786), + [sym_block_comment] = STATE(786), [ts_builtin_sym_end] = ACTIONS(3038), [sym_identifier] = ACTIONS(3040), [anon_sym_SEMI] = ACTIONS(3038), @@ -94565,9 +96939,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3038), [sym_float_literal] = ACTIONS(3038), }, - [STATE(780)] = { - [sym_line_comment] = STATE(780), - [sym_block_comment] = STATE(780), + [STATE(787)] = { + [sym_line_comment] = STATE(787), + [sym_block_comment] = STATE(787), [ts_builtin_sym_end] = ACTIONS(3042), [sym_identifier] = ACTIONS(3044), [anon_sym_SEMI] = ACTIONS(3042), @@ -94646,9 +97020,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3042), [sym_float_literal] = ACTIONS(3042), }, - [STATE(781)] = { - [sym_line_comment] = STATE(781), - [sym_block_comment] = STATE(781), + [STATE(788)] = { + [sym_line_comment] = STATE(788), + [sym_block_comment] = STATE(788), [ts_builtin_sym_end] = ACTIONS(3046), [sym_identifier] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3046), @@ -94727,120 +97101,8869 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3046), [sym_float_literal] = ACTIONS(3046), }, - [STATE(782)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(934), - [sym__type] = STATE(2591), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(782), - [sym_block_comment] = STATE(782), - [aux_sym_enum_variant_list_repeat1] = STATE(794), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [STATE(789)] = { + [sym_line_comment] = STATE(789), + [sym_block_comment] = STATE(789), + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_macro_rules_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_u8] = ACTIONS(3052), + [anon_sym_i8] = ACTIONS(3052), + [anon_sym_u16] = ACTIONS(3052), + [anon_sym_i16] = ACTIONS(3052), + [anon_sym_u32] = ACTIONS(3052), + [anon_sym_i32] = ACTIONS(3052), + [anon_sym_u64] = ACTIONS(3052), + [anon_sym_i64] = ACTIONS(3052), + [anon_sym_u128] = ACTIONS(3052), + [anon_sym_i128] = ACTIONS(3052), + [anon_sym_isize] = ACTIONS(3052), + [anon_sym_usize] = ACTIONS(3052), + [anon_sym_f32] = ACTIONS(3052), + [anon_sym_f64] = ACTIONS(3052), + [anon_sym_bool] = ACTIONS(3052), + [anon_sym_str] = ACTIONS(3052), + [anon_sym_char] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_POUND] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_async] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_default] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_fn] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_gen] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_impl] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_loop] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_mod] = ACTIONS(3052), + [anon_sym_pub] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_trait] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [anon_sym_unsafe] = ACTIONS(3052), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_extern] = ACTIONS(3052), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_move] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [sym_integer_literal] = ACTIONS(3050), + [aux_sym_string_literal_token1] = ACTIONS(3050), + [sym_char_literal] = ACTIONS(3050), + [anon_sym_true] = ACTIONS(3052), + [anon_sym_false] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3052), + [sym_super] = ACTIONS(3052), + [sym_crate] = ACTIONS(3052), + [sym_metavariable] = ACTIONS(3050), + [sym__raw_string_literal_start] = ACTIONS(3050), + [sym_float_literal] = ACTIONS(3050), + }, + [STATE(790)] = { + [sym_line_comment] = STATE(790), + [sym_block_comment] = STATE(790), + [ts_builtin_sym_end] = ACTIONS(3054), + [sym_identifier] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_macro_rules_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_u8] = ACTIONS(3056), + [anon_sym_i8] = ACTIONS(3056), + [anon_sym_u16] = ACTIONS(3056), + [anon_sym_i16] = ACTIONS(3056), + [anon_sym_u32] = ACTIONS(3056), + [anon_sym_i32] = ACTIONS(3056), + [anon_sym_u64] = ACTIONS(3056), + [anon_sym_i64] = ACTIONS(3056), + [anon_sym_u128] = ACTIONS(3056), + [anon_sym_i128] = ACTIONS(3056), + [anon_sym_isize] = ACTIONS(3056), + [anon_sym_usize] = ACTIONS(3056), + [anon_sym_f32] = ACTIONS(3056), + [anon_sym_f64] = ACTIONS(3056), + [anon_sym_bool] = ACTIONS(3056), + [anon_sym_str] = ACTIONS(3056), + [anon_sym_char] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3054), [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_PIPE] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_DOT_DOT] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_POUND] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_async] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3056), + [anon_sym_const] = ACTIONS(3056), + [anon_sym_continue] = ACTIONS(3056), + [anon_sym_default] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_fn] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_gen] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_impl] = ACTIONS(3056), + [anon_sym_let] = ACTIONS(3056), + [anon_sym_loop] = ACTIONS(3056), + [anon_sym_match] = ACTIONS(3056), + [anon_sym_mod] = ACTIONS(3056), + [anon_sym_pub] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_static] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_trait] = ACTIONS(3056), + [anon_sym_type] = ACTIONS(3056), + [anon_sym_union] = ACTIONS(3056), + [anon_sym_unsafe] = ACTIONS(3056), + [anon_sym_use] = ACTIONS(3056), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_extern] = ACTIONS(3056), + [anon_sym_yield] = ACTIONS(3056), + [anon_sym_move] = ACTIONS(3056), + [anon_sym_try] = ACTIONS(3056), + [sym_integer_literal] = ACTIONS(3054), + [aux_sym_string_literal_token1] = ACTIONS(3054), + [sym_char_literal] = ACTIONS(3054), + [anon_sym_true] = ACTIONS(3056), + [anon_sym_false] = ACTIONS(3056), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3056), + [sym_super] = ACTIONS(3056), + [sym_crate] = ACTIONS(3056), + [sym_metavariable] = ACTIONS(3054), + [sym__raw_string_literal_start] = ACTIONS(3054), + [sym_float_literal] = ACTIONS(3054), + }, + [STATE(791)] = { + [sym_line_comment] = STATE(791), + [sym_block_comment] = STATE(791), + [ts_builtin_sym_end] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3058), + [anon_sym_macro_rules_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_u8] = ACTIONS(3060), + [anon_sym_i8] = ACTIONS(3060), + [anon_sym_u16] = ACTIONS(3060), + [anon_sym_i16] = ACTIONS(3060), + [anon_sym_u32] = ACTIONS(3060), + [anon_sym_i32] = ACTIONS(3060), + [anon_sym_u64] = ACTIONS(3060), + [anon_sym_i64] = ACTIONS(3060), + [anon_sym_u128] = ACTIONS(3060), + [anon_sym_i128] = ACTIONS(3060), + [anon_sym_isize] = ACTIONS(3060), + [anon_sym_usize] = ACTIONS(3060), + [anon_sym_f32] = ACTIONS(3060), + [anon_sym_f64] = ACTIONS(3060), + [anon_sym_bool] = ACTIONS(3060), + [anon_sym_str] = ACTIONS(3060), + [anon_sym_char] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(3058), [anon_sym_POUND] = ACTIONS(3058), [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_default] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_gen] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_impl] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_loop] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_mod] = ACTIONS(3060), + [anon_sym_pub] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_trait] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(3060), + [anon_sym_unsafe] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_extern] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_move] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [sym_integer_literal] = ACTIONS(3058), + [aux_sym_string_literal_token1] = ACTIONS(3058), + [sym_char_literal] = ACTIONS(3058), + [anon_sym_true] = ACTIONS(3060), + [anon_sym_false] = ACTIONS(3060), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_crate] = ACTIONS(3060), + [sym_metavariable] = ACTIONS(3058), + [sym__raw_string_literal_start] = ACTIONS(3058), + [sym_float_literal] = ACTIONS(3058), + }, + [STATE(792)] = { + [sym_line_comment] = STATE(792), + [sym_block_comment] = STATE(792), + [ts_builtin_sym_end] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3064), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_macro_rules_BANG] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_RBRACE] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_u8] = ACTIONS(3064), + [anon_sym_i8] = ACTIONS(3064), + [anon_sym_u16] = ACTIONS(3064), + [anon_sym_i16] = ACTIONS(3064), + [anon_sym_u32] = ACTIONS(3064), + [anon_sym_i32] = ACTIONS(3064), + [anon_sym_u64] = ACTIONS(3064), + [anon_sym_i64] = ACTIONS(3064), + [anon_sym_u128] = ACTIONS(3064), + [anon_sym_i128] = ACTIONS(3064), + [anon_sym_isize] = ACTIONS(3064), + [anon_sym_usize] = ACTIONS(3064), + [anon_sym_f32] = ACTIONS(3064), + [anon_sym_f64] = ACTIONS(3064), + [anon_sym_bool] = ACTIONS(3064), + [anon_sym_str] = ACTIONS(3064), + [anon_sym_char] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_DOT_DOT] = ACTIONS(3062), + [anon_sym_COLON_COLON] = ACTIONS(3062), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_break] = ACTIONS(3064), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_continue] = ACTIONS(3064), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_enum] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3064), + [anon_sym_gen] = ACTIONS(3064), + [anon_sym_if] = ACTIONS(3064), + [anon_sym_impl] = ACTIONS(3064), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_loop] = ACTIONS(3064), + [anon_sym_match] = ACTIONS(3064), + [anon_sym_mod] = ACTIONS(3064), + [anon_sym_pub] = ACTIONS(3064), + [anon_sym_return] = ACTIONS(3064), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3064), + [anon_sym_trait] = ACTIONS(3064), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_union] = ACTIONS(3064), + [anon_sym_unsafe] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3064), + [anon_sym_while] = ACTIONS(3064), + [anon_sym_extern] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3064), + [anon_sym_move] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3064), + [sym_integer_literal] = ACTIONS(3062), + [aux_sym_string_literal_token1] = ACTIONS(3062), + [sym_char_literal] = ACTIONS(3062), + [anon_sym_true] = ACTIONS(3064), + [anon_sym_false] = ACTIONS(3064), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3064), + [sym_super] = ACTIONS(3064), + [sym_crate] = ACTIONS(3064), + [sym_metavariable] = ACTIONS(3062), + [sym__raw_string_literal_start] = ACTIONS(3062), + [sym_float_literal] = ACTIONS(3062), + }, + [STATE(793)] = { + [sym_line_comment] = STATE(793), + [sym_block_comment] = STATE(793), + [ts_builtin_sym_end] = ACTIONS(3066), + [sym_identifier] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym_macro_rules_BANG] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_RBRACE] = ACTIONS(3066), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_u8] = ACTIONS(3068), + [anon_sym_i8] = ACTIONS(3068), + [anon_sym_u16] = ACTIONS(3068), + [anon_sym_i16] = ACTIONS(3068), + [anon_sym_u32] = ACTIONS(3068), + [anon_sym_i32] = ACTIONS(3068), + [anon_sym_u64] = ACTIONS(3068), + [anon_sym_i64] = ACTIONS(3068), + [anon_sym_u128] = ACTIONS(3068), + [anon_sym_i128] = ACTIONS(3068), + [anon_sym_isize] = ACTIONS(3068), + [anon_sym_usize] = ACTIONS(3068), + [anon_sym_f32] = ACTIONS(3068), + [anon_sym_f64] = ACTIONS(3068), + [anon_sym_bool] = ACTIONS(3068), + [anon_sym_str] = ACTIONS(3068), + [anon_sym_char] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3066), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_DOT_DOT] = ACTIONS(3066), + [anon_sym_COLON_COLON] = ACTIONS(3066), + [anon_sym_POUND] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(3068), + [anon_sym_break] = ACTIONS(3068), + [anon_sym_const] = ACTIONS(3068), + [anon_sym_continue] = ACTIONS(3068), + [anon_sym_default] = ACTIONS(3068), + [anon_sym_enum] = ACTIONS(3068), + [anon_sym_fn] = ACTIONS(3068), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_gen] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_impl] = ACTIONS(3068), + [anon_sym_let] = ACTIONS(3068), + [anon_sym_loop] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_mod] = ACTIONS(3068), + [anon_sym_pub] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_static] = ACTIONS(3068), + [anon_sym_struct] = ACTIONS(3068), + [anon_sym_trait] = ACTIONS(3068), + [anon_sym_type] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(3068), + [anon_sym_use] = ACTIONS(3068), + [anon_sym_while] = ACTIONS(3068), + [anon_sym_extern] = ACTIONS(3068), + [anon_sym_yield] = ACTIONS(3068), + [anon_sym_move] = ACTIONS(3068), + [anon_sym_try] = ACTIONS(3068), + [sym_integer_literal] = ACTIONS(3066), + [aux_sym_string_literal_token1] = ACTIONS(3066), + [sym_char_literal] = ACTIONS(3066), + [anon_sym_true] = ACTIONS(3068), + [anon_sym_false] = ACTIONS(3068), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3068), + [sym_super] = ACTIONS(3068), + [sym_crate] = ACTIONS(3068), + [sym_metavariable] = ACTIONS(3066), + [sym__raw_string_literal_start] = ACTIONS(3066), + [sym_float_literal] = ACTIONS(3066), + }, + [STATE(794)] = { + [sym_line_comment] = STATE(794), + [sym_block_comment] = STATE(794), + [ts_builtin_sym_end] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3070), + [anon_sym_macro_rules_BANG] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3070), + [anon_sym_RBRACE] = ACTIONS(3070), + [anon_sym_STAR] = ACTIONS(3070), + [anon_sym_u8] = ACTIONS(3072), + [anon_sym_i8] = ACTIONS(3072), + [anon_sym_u16] = ACTIONS(3072), + [anon_sym_i16] = ACTIONS(3072), + [anon_sym_u32] = ACTIONS(3072), + [anon_sym_i32] = ACTIONS(3072), + [anon_sym_u64] = ACTIONS(3072), + [anon_sym_i64] = ACTIONS(3072), + [anon_sym_u128] = ACTIONS(3072), + [anon_sym_i128] = ACTIONS(3072), + [anon_sym_isize] = ACTIONS(3072), + [anon_sym_usize] = ACTIONS(3072), + [anon_sym_f32] = ACTIONS(3072), + [anon_sym_f64] = ACTIONS(3072), + [anon_sym_bool] = ACTIONS(3072), + [anon_sym_str] = ACTIONS(3072), + [anon_sym_char] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_DOT_DOT] = ACTIONS(3070), + [anon_sym_COLON_COLON] = ACTIONS(3070), + [anon_sym_POUND] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_async] = ACTIONS(3072), + [anon_sym_break] = ACTIONS(3072), + [anon_sym_const] = ACTIONS(3072), + [anon_sym_continue] = ACTIONS(3072), + [anon_sym_default] = ACTIONS(3072), + [anon_sym_enum] = ACTIONS(3072), + [anon_sym_fn] = ACTIONS(3072), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_gen] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_impl] = ACTIONS(3072), + [anon_sym_let] = ACTIONS(3072), + [anon_sym_loop] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_mod] = ACTIONS(3072), + [anon_sym_pub] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_static] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(3072), + [anon_sym_trait] = ACTIONS(3072), + [anon_sym_type] = ACTIONS(3072), + [anon_sym_union] = ACTIONS(3072), + [anon_sym_unsafe] = ACTIONS(3072), + [anon_sym_use] = ACTIONS(3072), + [anon_sym_while] = ACTIONS(3072), + [anon_sym_extern] = ACTIONS(3072), + [anon_sym_yield] = ACTIONS(3072), + [anon_sym_move] = ACTIONS(3072), + [anon_sym_try] = ACTIONS(3072), + [sym_integer_literal] = ACTIONS(3070), + [aux_sym_string_literal_token1] = ACTIONS(3070), + [sym_char_literal] = ACTIONS(3070), + [anon_sym_true] = ACTIONS(3072), + [anon_sym_false] = ACTIONS(3072), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3072), + [sym_super] = ACTIONS(3072), + [sym_crate] = ACTIONS(3072), + [sym_metavariable] = ACTIONS(3070), + [sym__raw_string_literal_start] = ACTIONS(3070), + [sym_float_literal] = ACTIONS(3070), + }, + [STATE(795)] = { + [sym_line_comment] = STATE(795), + [sym_block_comment] = STATE(795), + [ts_builtin_sym_end] = ACTIONS(3074), + [sym_identifier] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3074), + [anon_sym_macro_rules_BANG] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3074), + [anon_sym_LBRACK] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3074), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(3074), + [anon_sym_u8] = ACTIONS(3076), + [anon_sym_i8] = ACTIONS(3076), + [anon_sym_u16] = ACTIONS(3076), + [anon_sym_i16] = ACTIONS(3076), + [anon_sym_u32] = ACTIONS(3076), + [anon_sym_i32] = ACTIONS(3076), + [anon_sym_u64] = ACTIONS(3076), + [anon_sym_i64] = ACTIONS(3076), + [anon_sym_u128] = ACTIONS(3076), + [anon_sym_i128] = ACTIONS(3076), + [anon_sym_isize] = ACTIONS(3076), + [anon_sym_usize] = ACTIONS(3076), + [anon_sym_f32] = ACTIONS(3076), + [anon_sym_f64] = ACTIONS(3076), + [anon_sym_bool] = ACTIONS(3076), + [anon_sym_str] = ACTIONS(3076), + [anon_sym_char] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3074), + [anon_sym_PIPE] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_DOT_DOT] = ACTIONS(3074), + [anon_sym_COLON_COLON] = ACTIONS(3074), + [anon_sym_POUND] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(3076), + [anon_sym_break] = ACTIONS(3076), + [anon_sym_const] = ACTIONS(3076), + [anon_sym_continue] = ACTIONS(3076), + [anon_sym_default] = ACTIONS(3076), + [anon_sym_enum] = ACTIONS(3076), + [anon_sym_fn] = ACTIONS(3076), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_gen] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_impl] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_loop] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_mod] = ACTIONS(3076), + [anon_sym_pub] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_static] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3076), + [anon_sym_trait] = ACTIONS(3076), + [anon_sym_type] = ACTIONS(3076), + [anon_sym_union] = ACTIONS(3076), + [anon_sym_unsafe] = ACTIONS(3076), + [anon_sym_use] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_extern] = ACTIONS(3076), + [anon_sym_yield] = ACTIONS(3076), + [anon_sym_move] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [sym_integer_literal] = ACTIONS(3074), + [aux_sym_string_literal_token1] = ACTIONS(3074), + [sym_char_literal] = ACTIONS(3074), + [anon_sym_true] = ACTIONS(3076), + [anon_sym_false] = ACTIONS(3076), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3076), + [sym_super] = ACTIONS(3076), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(3074), + [sym__raw_string_literal_start] = ACTIONS(3074), + [sym_float_literal] = ACTIONS(3074), + }, + [STATE(796)] = { + [sym_line_comment] = STATE(796), + [sym_block_comment] = STATE(796), + [ts_builtin_sym_end] = ACTIONS(3078), + [sym_identifier] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_macro_rules_BANG] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_u8] = ACTIONS(3080), + [anon_sym_i8] = ACTIONS(3080), + [anon_sym_u16] = ACTIONS(3080), + [anon_sym_i16] = ACTIONS(3080), + [anon_sym_u32] = ACTIONS(3080), + [anon_sym_i32] = ACTIONS(3080), + [anon_sym_u64] = ACTIONS(3080), + [anon_sym_i64] = ACTIONS(3080), + [anon_sym_u128] = ACTIONS(3080), + [anon_sym_i128] = ACTIONS(3080), + [anon_sym_isize] = ACTIONS(3080), + [anon_sym_usize] = ACTIONS(3080), + [anon_sym_f32] = ACTIONS(3080), + [anon_sym_f64] = ACTIONS(3080), + [anon_sym_bool] = ACTIONS(3080), + [anon_sym_str] = ACTIONS(3080), + [anon_sym_char] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(3078), + [anon_sym_DOT_DOT] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3078), + [anon_sym_POUND] = ACTIONS(3078), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_async] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_const] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_default] = ACTIONS(3080), + [anon_sym_enum] = ACTIONS(3080), + [anon_sym_fn] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3080), + [anon_sym_gen] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_impl] = ACTIONS(3080), + [anon_sym_let] = ACTIONS(3080), + [anon_sym_loop] = ACTIONS(3080), + [anon_sym_match] = ACTIONS(3080), + [anon_sym_mod] = ACTIONS(3080), + [anon_sym_pub] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_static] = ACTIONS(3080), + [anon_sym_struct] = ACTIONS(3080), + [anon_sym_trait] = ACTIONS(3080), + [anon_sym_type] = ACTIONS(3080), + [anon_sym_union] = ACTIONS(3080), + [anon_sym_unsafe] = ACTIONS(3080), + [anon_sym_use] = ACTIONS(3080), + [anon_sym_while] = ACTIONS(3080), + [anon_sym_extern] = ACTIONS(3080), + [anon_sym_yield] = ACTIONS(3080), + [anon_sym_move] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3080), + [sym_integer_literal] = ACTIONS(3078), + [aux_sym_string_literal_token1] = ACTIONS(3078), + [sym_char_literal] = ACTIONS(3078), + [anon_sym_true] = ACTIONS(3080), + [anon_sym_false] = ACTIONS(3080), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3080), + [sym_super] = ACTIONS(3080), + [sym_crate] = ACTIONS(3080), + [sym_metavariable] = ACTIONS(3078), + [sym__raw_string_literal_start] = ACTIONS(3078), + [sym_float_literal] = ACTIONS(3078), + }, + [STATE(797)] = { + [sym_line_comment] = STATE(797), + [sym_block_comment] = STATE(797), + [ts_builtin_sym_end] = ACTIONS(3082), + [sym_identifier] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_macro_rules_BANG] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3082), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_u8] = ACTIONS(3084), + [anon_sym_i8] = ACTIONS(3084), + [anon_sym_u16] = ACTIONS(3084), + [anon_sym_i16] = ACTIONS(3084), + [anon_sym_u32] = ACTIONS(3084), + [anon_sym_i32] = ACTIONS(3084), + [anon_sym_u64] = ACTIONS(3084), + [anon_sym_i64] = ACTIONS(3084), + [anon_sym_u128] = ACTIONS(3084), + [anon_sym_i128] = ACTIONS(3084), + [anon_sym_isize] = ACTIONS(3084), + [anon_sym_usize] = ACTIONS(3084), + [anon_sym_f32] = ACTIONS(3084), + [anon_sym_f64] = ACTIONS(3084), + [anon_sym_bool] = ACTIONS(3084), + [anon_sym_str] = ACTIONS(3084), + [anon_sym_char] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3082), + [anon_sym_PIPE] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_DOT_DOT] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(3082), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_const] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_default] = ACTIONS(3084), + [anon_sym_enum] = ACTIONS(3084), + [anon_sym_fn] = ACTIONS(3084), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_gen] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_impl] = ACTIONS(3084), + [anon_sym_let] = ACTIONS(3084), + [anon_sym_loop] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_mod] = ACTIONS(3084), + [anon_sym_pub] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_static] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(3084), + [anon_sym_trait] = ACTIONS(3084), + [anon_sym_type] = ACTIONS(3084), + [anon_sym_union] = ACTIONS(3084), + [anon_sym_unsafe] = ACTIONS(3084), + [anon_sym_use] = ACTIONS(3084), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_extern] = ACTIONS(3084), + [anon_sym_yield] = ACTIONS(3084), + [anon_sym_move] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [sym_integer_literal] = ACTIONS(3082), + [aux_sym_string_literal_token1] = ACTIONS(3082), + [sym_char_literal] = ACTIONS(3082), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3084), + [sym_super] = ACTIONS(3084), + [sym_crate] = ACTIONS(3084), + [sym_metavariable] = ACTIONS(3082), + [sym__raw_string_literal_start] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3082), + }, + [STATE(798)] = { + [sym_line_comment] = STATE(798), + [sym_block_comment] = STATE(798), + [ts_builtin_sym_end] = ACTIONS(3086), + [sym_identifier] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_macro_rules_BANG] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(3086), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3086), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u128] = ACTIONS(3088), + [anon_sym_i128] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_str] = ACTIONS(3088), + [anon_sym_char] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_AMP] = ACTIONS(3086), + [anon_sym_PIPE] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(3086), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_POUND] = ACTIONS(3086), + [anon_sym_SQUOTE] = ACTIONS(3088), + [anon_sym_async] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_default] = ACTIONS(3088), + [anon_sym_enum] = ACTIONS(3088), + [anon_sym_fn] = ACTIONS(3088), + [anon_sym_for] = ACTIONS(3088), + [anon_sym_gen] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_impl] = ACTIONS(3088), + [anon_sym_let] = ACTIONS(3088), + [anon_sym_loop] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_mod] = ACTIONS(3088), + [anon_sym_pub] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_static] = ACTIONS(3088), + [anon_sym_struct] = ACTIONS(3088), + [anon_sym_trait] = ACTIONS(3088), + [anon_sym_type] = ACTIONS(3088), + [anon_sym_union] = ACTIONS(3088), + [anon_sym_unsafe] = ACTIONS(3088), + [anon_sym_use] = ACTIONS(3088), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_extern] = ACTIONS(3088), + [anon_sym_yield] = ACTIONS(3088), + [anon_sym_move] = ACTIONS(3088), + [anon_sym_try] = ACTIONS(3088), + [sym_integer_literal] = ACTIONS(3086), + [aux_sym_string_literal_token1] = ACTIONS(3086), + [sym_char_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3088), + [sym_super] = ACTIONS(3088), + [sym_crate] = ACTIONS(3088), + [sym_metavariable] = ACTIONS(3086), + [sym__raw_string_literal_start] = ACTIONS(3086), + [sym_float_literal] = ACTIONS(3086), + }, + [STATE(799)] = { + [sym_line_comment] = STATE(799), + [sym_block_comment] = STATE(799), + [ts_builtin_sym_end] = ACTIONS(3090), + [sym_identifier] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_macro_rules_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3090), + [anon_sym_u8] = ACTIONS(3092), + [anon_sym_i8] = ACTIONS(3092), + [anon_sym_u16] = ACTIONS(3092), + [anon_sym_i16] = ACTIONS(3092), + [anon_sym_u32] = ACTIONS(3092), + [anon_sym_i32] = ACTIONS(3092), + [anon_sym_u64] = ACTIONS(3092), + [anon_sym_i64] = ACTIONS(3092), + [anon_sym_u128] = ACTIONS(3092), + [anon_sym_i128] = ACTIONS(3092), + [anon_sym_isize] = ACTIONS(3092), + [anon_sym_usize] = ACTIONS(3092), + [anon_sym_f32] = ACTIONS(3092), + [anon_sym_f64] = ACTIONS(3092), + [anon_sym_bool] = ACTIONS(3092), + [anon_sym_str] = ACTIONS(3092), + [anon_sym_char] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_POUND] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3092), + [anon_sym_async] = ACTIONS(3092), + [anon_sym_break] = ACTIONS(3092), + [anon_sym_const] = ACTIONS(3092), + [anon_sym_continue] = ACTIONS(3092), + [anon_sym_default] = ACTIONS(3092), + [anon_sym_enum] = ACTIONS(3092), + [anon_sym_fn] = ACTIONS(3092), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_gen] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_impl] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_loop] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_mod] = ACTIONS(3092), + [anon_sym_pub] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_static] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(3092), + [anon_sym_trait] = ACTIONS(3092), + [anon_sym_type] = ACTIONS(3092), + [anon_sym_union] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3092), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_extern] = ACTIONS(3092), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_move] = ACTIONS(3092), + [anon_sym_try] = ACTIONS(3092), + [sym_integer_literal] = ACTIONS(3090), + [aux_sym_string_literal_token1] = ACTIONS(3090), + [sym_char_literal] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3092), + [sym_super] = ACTIONS(3092), + [sym_crate] = ACTIONS(3092), + [sym_metavariable] = ACTIONS(3090), + [sym__raw_string_literal_start] = ACTIONS(3090), + [sym_float_literal] = ACTIONS(3090), + }, + [STATE(800)] = { + [sym_line_comment] = STATE(800), + [sym_block_comment] = STATE(800), + [ts_builtin_sym_end] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_macro_rules_BANG] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3094), + [anon_sym_LBRACK] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_u8] = ACTIONS(3096), + [anon_sym_i8] = ACTIONS(3096), + [anon_sym_u16] = ACTIONS(3096), + [anon_sym_i16] = ACTIONS(3096), + [anon_sym_u32] = ACTIONS(3096), + [anon_sym_i32] = ACTIONS(3096), + [anon_sym_u64] = ACTIONS(3096), + [anon_sym_i64] = ACTIONS(3096), + [anon_sym_u128] = ACTIONS(3096), + [anon_sym_i128] = ACTIONS(3096), + [anon_sym_isize] = ACTIONS(3096), + [anon_sym_usize] = ACTIONS(3096), + [anon_sym_f32] = ACTIONS(3096), + [anon_sym_f64] = ACTIONS(3096), + [anon_sym_bool] = ACTIONS(3096), + [anon_sym_str] = ACTIONS(3096), + [anon_sym_char] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3094), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3094), + [anon_sym_PIPE] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3094), + [anon_sym_POUND] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_const] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_enum] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3096), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_gen] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_impl] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_loop] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_pub] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_static] = ACTIONS(3096), + [anon_sym_struct] = ACTIONS(3096), + [anon_sym_trait] = ACTIONS(3096), + [anon_sym_type] = ACTIONS(3096), + [anon_sym_union] = ACTIONS(3096), + [anon_sym_unsafe] = ACTIONS(3096), + [anon_sym_use] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_extern] = ACTIONS(3096), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_move] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [sym_integer_literal] = ACTIONS(3094), + [aux_sym_string_literal_token1] = ACTIONS(3094), + [sym_char_literal] = ACTIONS(3094), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3096), + [sym_super] = ACTIONS(3096), + [sym_crate] = ACTIONS(3096), + [sym_metavariable] = ACTIONS(3094), + [sym__raw_string_literal_start] = ACTIONS(3094), + [sym_float_literal] = ACTIONS(3094), + }, + [STATE(801)] = { + [sym_line_comment] = STATE(801), + [sym_block_comment] = STATE(801), + [ts_builtin_sym_end] = ACTIONS(3098), + [sym_identifier] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_macro_rules_BANG] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_u8] = ACTIONS(3100), + [anon_sym_i8] = ACTIONS(3100), + [anon_sym_u16] = ACTIONS(3100), + [anon_sym_i16] = ACTIONS(3100), + [anon_sym_u32] = ACTIONS(3100), + [anon_sym_i32] = ACTIONS(3100), + [anon_sym_u64] = ACTIONS(3100), + [anon_sym_i64] = ACTIONS(3100), + [anon_sym_u128] = ACTIONS(3100), + [anon_sym_i128] = ACTIONS(3100), + [anon_sym_isize] = ACTIONS(3100), + [anon_sym_usize] = ACTIONS(3100), + [anon_sym_f32] = ACTIONS(3100), + [anon_sym_f64] = ACTIONS(3100), + [anon_sym_bool] = ACTIONS(3100), + [anon_sym_str] = ACTIONS(3100), + [anon_sym_char] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_POUND] = ACTIONS(3098), + [anon_sym_SQUOTE] = ACTIONS(3100), + [anon_sym_async] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_const] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_default] = ACTIONS(3100), + [anon_sym_enum] = ACTIONS(3100), + [anon_sym_fn] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3100), + [anon_sym_gen] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_impl] = ACTIONS(3100), + [anon_sym_let] = ACTIONS(3100), + [anon_sym_loop] = ACTIONS(3100), + [anon_sym_match] = ACTIONS(3100), + [anon_sym_mod] = ACTIONS(3100), + [anon_sym_pub] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_static] = ACTIONS(3100), + [anon_sym_struct] = ACTIONS(3100), + [anon_sym_trait] = ACTIONS(3100), + [anon_sym_type] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3100), + [anon_sym_unsafe] = ACTIONS(3100), + [anon_sym_use] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_extern] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3100), + [anon_sym_move] = ACTIONS(3100), + [anon_sym_try] = ACTIONS(3100), + [sym_integer_literal] = ACTIONS(3098), + [aux_sym_string_literal_token1] = ACTIONS(3098), + [sym_char_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3100), + [anon_sym_false] = ACTIONS(3100), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3100), + [sym_super] = ACTIONS(3100), + [sym_crate] = ACTIONS(3100), + [sym_metavariable] = ACTIONS(3098), + [sym__raw_string_literal_start] = ACTIONS(3098), + [sym_float_literal] = ACTIONS(3098), + }, + [STATE(802)] = { + [sym_line_comment] = STATE(802), + [sym_block_comment] = STATE(802), + [ts_builtin_sym_end] = ACTIONS(3102), + [sym_identifier] = ACTIONS(3104), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_macro_rules_BANG] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_u8] = ACTIONS(3104), + [anon_sym_i8] = ACTIONS(3104), + [anon_sym_u16] = ACTIONS(3104), + [anon_sym_i16] = ACTIONS(3104), + [anon_sym_u32] = ACTIONS(3104), + [anon_sym_i32] = ACTIONS(3104), + [anon_sym_u64] = ACTIONS(3104), + [anon_sym_i64] = ACTIONS(3104), + [anon_sym_u128] = ACTIONS(3104), + [anon_sym_i128] = ACTIONS(3104), + [anon_sym_isize] = ACTIONS(3104), + [anon_sym_usize] = ACTIONS(3104), + [anon_sym_f32] = ACTIONS(3104), + [anon_sym_f64] = ACTIONS(3104), + [anon_sym_bool] = ACTIONS(3104), + [anon_sym_str] = ACTIONS(3104), + [anon_sym_char] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3102), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3102), + [anon_sym_POUND] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3104), + [anon_sym_async] = ACTIONS(3104), + [anon_sym_break] = ACTIONS(3104), + [anon_sym_const] = ACTIONS(3104), + [anon_sym_continue] = ACTIONS(3104), + [anon_sym_default] = ACTIONS(3104), + [anon_sym_enum] = ACTIONS(3104), + [anon_sym_fn] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3104), + [anon_sym_gen] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_impl] = ACTIONS(3104), + [anon_sym_let] = ACTIONS(3104), + [anon_sym_loop] = ACTIONS(3104), + [anon_sym_match] = ACTIONS(3104), + [anon_sym_mod] = ACTIONS(3104), + [anon_sym_pub] = ACTIONS(3104), + [anon_sym_return] = ACTIONS(3104), + [anon_sym_static] = ACTIONS(3104), + [anon_sym_struct] = ACTIONS(3104), + [anon_sym_trait] = ACTIONS(3104), + [anon_sym_type] = ACTIONS(3104), + [anon_sym_union] = ACTIONS(3104), + [anon_sym_unsafe] = ACTIONS(3104), + [anon_sym_use] = ACTIONS(3104), + [anon_sym_while] = ACTIONS(3104), + [anon_sym_extern] = ACTIONS(3104), + [anon_sym_yield] = ACTIONS(3104), + [anon_sym_move] = ACTIONS(3104), + [anon_sym_try] = ACTIONS(3104), + [sym_integer_literal] = ACTIONS(3102), + [aux_sym_string_literal_token1] = ACTIONS(3102), + [sym_char_literal] = ACTIONS(3102), + [anon_sym_true] = ACTIONS(3104), + [anon_sym_false] = ACTIONS(3104), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3104), + [sym_super] = ACTIONS(3104), + [sym_crate] = ACTIONS(3104), + [sym_metavariable] = ACTIONS(3102), + [sym__raw_string_literal_start] = ACTIONS(3102), + [sym_float_literal] = ACTIONS(3102), + }, + [STATE(803)] = { + [sym_line_comment] = STATE(803), + [sym_block_comment] = STATE(803), + [ts_builtin_sym_end] = ACTIONS(3106), + [sym_identifier] = ACTIONS(3108), + [anon_sym_SEMI] = ACTIONS(3106), + [anon_sym_macro_rules_BANG] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_RBRACE] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(3106), + [anon_sym_u8] = ACTIONS(3108), + [anon_sym_i8] = ACTIONS(3108), + [anon_sym_u16] = ACTIONS(3108), + [anon_sym_i16] = ACTIONS(3108), + [anon_sym_u32] = ACTIONS(3108), + [anon_sym_i32] = ACTIONS(3108), + [anon_sym_u64] = ACTIONS(3108), + [anon_sym_i64] = ACTIONS(3108), + [anon_sym_u128] = ACTIONS(3108), + [anon_sym_i128] = ACTIONS(3108), + [anon_sym_isize] = ACTIONS(3108), + [anon_sym_usize] = ACTIONS(3108), + [anon_sym_f32] = ACTIONS(3108), + [anon_sym_f64] = ACTIONS(3108), + [anon_sym_bool] = ACTIONS(3108), + [anon_sym_str] = ACTIONS(3108), + [anon_sym_char] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_PIPE] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_DOT_DOT] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(3106), + [anon_sym_POUND] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3108), + [anon_sym_async] = ACTIONS(3108), + [anon_sym_break] = ACTIONS(3108), + [anon_sym_const] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(3108), + [anon_sym_default] = ACTIONS(3108), + [anon_sym_enum] = ACTIONS(3108), + [anon_sym_fn] = ACTIONS(3108), + [anon_sym_for] = ACTIONS(3108), + [anon_sym_gen] = ACTIONS(3108), + [anon_sym_if] = ACTIONS(3108), + [anon_sym_impl] = ACTIONS(3108), + [anon_sym_let] = ACTIONS(3108), + [anon_sym_loop] = ACTIONS(3108), + [anon_sym_match] = ACTIONS(3108), + [anon_sym_mod] = ACTIONS(3108), + [anon_sym_pub] = ACTIONS(3108), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_static] = ACTIONS(3108), + [anon_sym_struct] = ACTIONS(3108), + [anon_sym_trait] = ACTIONS(3108), + [anon_sym_type] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(3108), + [anon_sym_use] = ACTIONS(3108), + [anon_sym_while] = ACTIONS(3108), + [anon_sym_extern] = ACTIONS(3108), + [anon_sym_yield] = ACTIONS(3108), + [anon_sym_move] = ACTIONS(3108), + [anon_sym_try] = ACTIONS(3108), + [sym_integer_literal] = ACTIONS(3106), + [aux_sym_string_literal_token1] = ACTIONS(3106), + [sym_char_literal] = ACTIONS(3106), + [anon_sym_true] = ACTIONS(3108), + [anon_sym_false] = ACTIONS(3108), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_crate] = ACTIONS(3108), + [sym_metavariable] = ACTIONS(3106), + [sym__raw_string_literal_start] = ACTIONS(3106), + [sym_float_literal] = ACTIONS(3106), + }, + [STATE(804)] = { + [sym_line_comment] = STATE(804), + [sym_block_comment] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(3110), + [sym_identifier] = ACTIONS(3112), + [anon_sym_SEMI] = ACTIONS(3110), + [anon_sym_macro_rules_BANG] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3110), + [anon_sym_RBRACE] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_u8] = ACTIONS(3112), + [anon_sym_i8] = ACTIONS(3112), + [anon_sym_u16] = ACTIONS(3112), + [anon_sym_i16] = ACTIONS(3112), + [anon_sym_u32] = ACTIONS(3112), + [anon_sym_i32] = ACTIONS(3112), + [anon_sym_u64] = ACTIONS(3112), + [anon_sym_i64] = ACTIONS(3112), + [anon_sym_u128] = ACTIONS(3112), + [anon_sym_i128] = ACTIONS(3112), + [anon_sym_isize] = ACTIONS(3112), + [anon_sym_usize] = ACTIONS(3112), + [anon_sym_f32] = ACTIONS(3112), + [anon_sym_f64] = ACTIONS(3112), + [anon_sym_bool] = ACTIONS(3112), + [anon_sym_str] = ACTIONS(3112), + [anon_sym_char] = ACTIONS(3112), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_PIPE] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(3110), + [anon_sym_POUND] = ACTIONS(3110), + [anon_sym_SQUOTE] = ACTIONS(3112), + [anon_sym_async] = ACTIONS(3112), + [anon_sym_break] = ACTIONS(3112), + [anon_sym_const] = ACTIONS(3112), + [anon_sym_continue] = ACTIONS(3112), + [anon_sym_default] = ACTIONS(3112), + [anon_sym_enum] = ACTIONS(3112), + [anon_sym_fn] = ACTIONS(3112), + [anon_sym_for] = ACTIONS(3112), + [anon_sym_gen] = ACTIONS(3112), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_impl] = ACTIONS(3112), + [anon_sym_let] = ACTIONS(3112), + [anon_sym_loop] = ACTIONS(3112), + [anon_sym_match] = ACTIONS(3112), + [anon_sym_mod] = ACTIONS(3112), + [anon_sym_pub] = ACTIONS(3112), + [anon_sym_return] = ACTIONS(3112), + [anon_sym_static] = ACTIONS(3112), + [anon_sym_struct] = ACTIONS(3112), + [anon_sym_trait] = ACTIONS(3112), + [anon_sym_type] = ACTIONS(3112), + [anon_sym_union] = ACTIONS(3112), + [anon_sym_unsafe] = ACTIONS(3112), + [anon_sym_use] = ACTIONS(3112), + [anon_sym_while] = ACTIONS(3112), + [anon_sym_extern] = ACTIONS(3112), + [anon_sym_yield] = ACTIONS(3112), + [anon_sym_move] = ACTIONS(3112), + [anon_sym_try] = ACTIONS(3112), + [sym_integer_literal] = ACTIONS(3110), + [aux_sym_string_literal_token1] = ACTIONS(3110), + [sym_char_literal] = ACTIONS(3110), + [anon_sym_true] = ACTIONS(3112), + [anon_sym_false] = ACTIONS(3112), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3112), + [sym_super] = ACTIONS(3112), + [sym_crate] = ACTIONS(3112), + [sym_metavariable] = ACTIONS(3110), + [sym__raw_string_literal_start] = ACTIONS(3110), + [sym_float_literal] = ACTIONS(3110), + }, + [STATE(805)] = { + [sym_line_comment] = STATE(805), + [sym_block_comment] = STATE(805), + [ts_builtin_sym_end] = ACTIONS(3114), + [sym_identifier] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3114), + [anon_sym_macro_rules_BANG] = ACTIONS(3114), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_RBRACE] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3114), + [anon_sym_u8] = ACTIONS(3116), + [anon_sym_i8] = ACTIONS(3116), + [anon_sym_u16] = ACTIONS(3116), + [anon_sym_i16] = ACTIONS(3116), + [anon_sym_u32] = ACTIONS(3116), + [anon_sym_i32] = ACTIONS(3116), + [anon_sym_u64] = ACTIONS(3116), + [anon_sym_i64] = ACTIONS(3116), + [anon_sym_u128] = ACTIONS(3116), + [anon_sym_i128] = ACTIONS(3116), + [anon_sym_isize] = ACTIONS(3116), + [anon_sym_usize] = ACTIONS(3116), + [anon_sym_f32] = ACTIONS(3116), + [anon_sym_f64] = ACTIONS(3116), + [anon_sym_bool] = ACTIONS(3116), + [anon_sym_str] = ACTIONS(3116), + [anon_sym_char] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3114), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3114), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(3114), + [anon_sym_POUND] = ACTIONS(3114), + [anon_sym_SQUOTE] = ACTIONS(3116), + [anon_sym_async] = ACTIONS(3116), + [anon_sym_break] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_continue] = ACTIONS(3116), + [anon_sym_default] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3116), + [anon_sym_gen] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_impl] = ACTIONS(3116), + [anon_sym_let] = ACTIONS(3116), + [anon_sym_loop] = ACTIONS(3116), + [anon_sym_match] = ACTIONS(3116), + [anon_sym_mod] = ACTIONS(3116), + [anon_sym_pub] = ACTIONS(3116), + [anon_sym_return] = ACTIONS(3116), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3116), + [anon_sym_trait] = ACTIONS(3116), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_union] = ACTIONS(3116), + [anon_sym_unsafe] = ACTIONS(3116), + [anon_sym_use] = ACTIONS(3116), + [anon_sym_while] = ACTIONS(3116), + [anon_sym_extern] = ACTIONS(3116), + [anon_sym_yield] = ACTIONS(3116), + [anon_sym_move] = ACTIONS(3116), + [anon_sym_try] = ACTIONS(3116), + [sym_integer_literal] = ACTIONS(3114), + [aux_sym_string_literal_token1] = ACTIONS(3114), + [sym_char_literal] = ACTIONS(3114), + [anon_sym_true] = ACTIONS(3116), + [anon_sym_false] = ACTIONS(3116), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [sym_self] = ACTIONS(3116), + [sym_super] = ACTIONS(3116), + [sym_crate] = ACTIONS(3116), + [sym_metavariable] = ACTIONS(3114), + [sym__raw_string_literal_start] = ACTIONS(3114), + [sym_float_literal] = ACTIONS(3114), }, - [STATE(783)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_const_parameter] = STATE(3034), - [sym_type_parameter] = STATE(3034), - [sym_lifetime_parameter] = STATE(3034), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3022), - [sym_bracketed_type] = STATE(3712), - [sym_qualified_type] = STATE(3744), - [sym_lifetime] = STATE(2505), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(783), - [sym_block_comment] = STATE(783), - [aux_sym_enum_variant_list_repeat1] = STATE(2117), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3066), + [STATE(806)] = { + [sym_line_comment] = STATE(806), + [sym_block_comment] = STATE(806), + [ts_builtin_sym_end] = ACTIONS(3118), + [sym_identifier] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3118), + [anon_sym_macro_rules_BANG] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_RBRACE] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_u8] = ACTIONS(3120), + [anon_sym_i8] = ACTIONS(3120), + [anon_sym_u16] = ACTIONS(3120), + [anon_sym_i16] = ACTIONS(3120), + [anon_sym_u32] = ACTIONS(3120), + [anon_sym_i32] = ACTIONS(3120), + [anon_sym_u64] = ACTIONS(3120), + [anon_sym_i64] = ACTIONS(3120), + [anon_sym_u128] = ACTIONS(3120), + [anon_sym_i128] = ACTIONS(3120), + [anon_sym_isize] = ACTIONS(3120), + [anon_sym_usize] = ACTIONS(3120), + [anon_sym_f32] = ACTIONS(3120), + [anon_sym_f64] = ACTIONS(3120), + [anon_sym_bool] = ACTIONS(3120), + [anon_sym_str] = ACTIONS(3120), + [anon_sym_char] = ACTIONS(3120), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_DOT_DOT] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3118), + [anon_sym_POUND] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3120), + [anon_sym_async] = ACTIONS(3120), + [anon_sym_break] = ACTIONS(3120), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_continue] = ACTIONS(3120), + [anon_sym_default] = ACTIONS(3120), + [anon_sym_enum] = ACTIONS(3120), + [anon_sym_fn] = ACTIONS(3120), + [anon_sym_for] = ACTIONS(3120), + [anon_sym_gen] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3120), + [anon_sym_impl] = ACTIONS(3120), + [anon_sym_let] = ACTIONS(3120), + [anon_sym_loop] = ACTIONS(3120), + [anon_sym_match] = ACTIONS(3120), + [anon_sym_mod] = ACTIONS(3120), + [anon_sym_pub] = ACTIONS(3120), + [anon_sym_return] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3120), + [anon_sym_struct] = ACTIONS(3120), + [anon_sym_trait] = ACTIONS(3120), + [anon_sym_type] = ACTIONS(3120), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(3120), + [anon_sym_use] = ACTIONS(3120), + [anon_sym_while] = ACTIONS(3120), + [anon_sym_extern] = ACTIONS(3120), + [anon_sym_yield] = ACTIONS(3120), + [anon_sym_move] = ACTIONS(3120), + [anon_sym_try] = ACTIONS(3120), + [sym_integer_literal] = ACTIONS(3118), + [aux_sym_string_literal_token1] = ACTIONS(3118), + [sym_char_literal] = ACTIONS(3118), + [anon_sym_true] = ACTIONS(3120), + [anon_sym_false] = ACTIONS(3120), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3120), + [sym_super] = ACTIONS(3120), + [sym_crate] = ACTIONS(3120), + [sym_metavariable] = ACTIONS(3118), + [sym__raw_string_literal_start] = ACTIONS(3118), + [sym_float_literal] = ACTIONS(3118), + }, + [STATE(807)] = { + [sym_line_comment] = STATE(807), + [sym_block_comment] = STATE(807), + [ts_builtin_sym_end] = ACTIONS(3122), + [sym_identifier] = ACTIONS(3124), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym_macro_rules_BANG] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3122), + [anon_sym_RBRACE] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(3124), + [anon_sym_i8] = ACTIONS(3124), + [anon_sym_u16] = ACTIONS(3124), + [anon_sym_i16] = ACTIONS(3124), + [anon_sym_u32] = ACTIONS(3124), + [anon_sym_i32] = ACTIONS(3124), + [anon_sym_u64] = ACTIONS(3124), + [anon_sym_i64] = ACTIONS(3124), + [anon_sym_u128] = ACTIONS(3124), + [anon_sym_i128] = ACTIONS(3124), + [anon_sym_isize] = ACTIONS(3124), + [anon_sym_usize] = ACTIONS(3124), + [anon_sym_f32] = ACTIONS(3124), + [anon_sym_f64] = ACTIONS(3124), + [anon_sym_bool] = ACTIONS(3124), + [anon_sym_str] = ACTIONS(3124), + [anon_sym_char] = ACTIONS(3124), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_DOT_DOT] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(3124), + [anon_sym_async] = ACTIONS(3124), + [anon_sym_break] = ACTIONS(3124), + [anon_sym_const] = ACTIONS(3124), + [anon_sym_continue] = ACTIONS(3124), + [anon_sym_default] = ACTIONS(3124), + [anon_sym_enum] = ACTIONS(3124), + [anon_sym_fn] = ACTIONS(3124), + [anon_sym_for] = ACTIONS(3124), + [anon_sym_gen] = ACTIONS(3124), + [anon_sym_if] = ACTIONS(3124), + [anon_sym_impl] = ACTIONS(3124), + [anon_sym_let] = ACTIONS(3124), + [anon_sym_loop] = ACTIONS(3124), + [anon_sym_match] = ACTIONS(3124), + [anon_sym_mod] = ACTIONS(3124), + [anon_sym_pub] = ACTIONS(3124), + [anon_sym_return] = ACTIONS(3124), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3124), + [anon_sym_trait] = ACTIONS(3124), + [anon_sym_type] = ACTIONS(3124), + [anon_sym_union] = ACTIONS(3124), + [anon_sym_unsafe] = ACTIONS(3124), + [anon_sym_use] = ACTIONS(3124), + [anon_sym_while] = ACTIONS(3124), + [anon_sym_extern] = ACTIONS(3124), + [anon_sym_yield] = ACTIONS(3124), + [anon_sym_move] = ACTIONS(3124), + [anon_sym_try] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3122), + [aux_sym_string_literal_token1] = ACTIONS(3122), + [sym_char_literal] = ACTIONS(3122), + [anon_sym_true] = ACTIONS(3124), + [anon_sym_false] = ACTIONS(3124), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3124), + [sym_super] = ACTIONS(3124), + [sym_crate] = ACTIONS(3124), + [sym_metavariable] = ACTIONS(3122), + [sym__raw_string_literal_start] = ACTIONS(3122), + [sym_float_literal] = ACTIONS(3122), + }, + [STATE(808)] = { + [sym_line_comment] = STATE(808), + [sym_block_comment] = STATE(808), + [ts_builtin_sym_end] = ACTIONS(3126), + [sym_identifier] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3126), + [anon_sym_macro_rules_BANG] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3126), + [anon_sym_RBRACE] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_u8] = ACTIONS(3128), + [anon_sym_i8] = ACTIONS(3128), + [anon_sym_u16] = ACTIONS(3128), + [anon_sym_i16] = ACTIONS(3128), + [anon_sym_u32] = ACTIONS(3128), + [anon_sym_i32] = ACTIONS(3128), + [anon_sym_u64] = ACTIONS(3128), + [anon_sym_i64] = ACTIONS(3128), + [anon_sym_u128] = ACTIONS(3128), + [anon_sym_i128] = ACTIONS(3128), + [anon_sym_isize] = ACTIONS(3128), + [anon_sym_usize] = ACTIONS(3128), + [anon_sym_f32] = ACTIONS(3128), + [anon_sym_f64] = ACTIONS(3128), + [anon_sym_bool] = ACTIONS(3128), + [anon_sym_str] = ACTIONS(3128), + [anon_sym_char] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_DOT_DOT] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3126), + [anon_sym_POUND] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3128), + [anon_sym_async] = ACTIONS(3128), + [anon_sym_break] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_continue] = ACTIONS(3128), + [anon_sym_default] = ACTIONS(3128), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_fn] = ACTIONS(3128), + [anon_sym_for] = ACTIONS(3128), + [anon_sym_gen] = ACTIONS(3128), + [anon_sym_if] = ACTIONS(3128), + [anon_sym_impl] = ACTIONS(3128), + [anon_sym_let] = ACTIONS(3128), + [anon_sym_loop] = ACTIONS(3128), + [anon_sym_match] = ACTIONS(3128), + [anon_sym_mod] = ACTIONS(3128), + [anon_sym_pub] = ACTIONS(3128), + [anon_sym_return] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_trait] = ACTIONS(3128), + [anon_sym_type] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_unsafe] = ACTIONS(3128), + [anon_sym_use] = ACTIONS(3128), + [anon_sym_while] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym_yield] = ACTIONS(3128), + [anon_sym_move] = ACTIONS(3128), + [anon_sym_try] = ACTIONS(3128), + [sym_integer_literal] = ACTIONS(3126), + [aux_sym_string_literal_token1] = ACTIONS(3126), + [sym_char_literal] = ACTIONS(3126), + [anon_sym_true] = ACTIONS(3128), + [anon_sym_false] = ACTIONS(3128), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3128), + [sym_super] = ACTIONS(3128), + [sym_crate] = ACTIONS(3128), + [sym_metavariable] = ACTIONS(3126), + [sym__raw_string_literal_start] = ACTIONS(3126), + [sym_float_literal] = ACTIONS(3126), + }, + [STATE(809)] = { + [sym_line_comment] = STATE(809), + [sym_block_comment] = STATE(809), + [ts_builtin_sym_end] = ACTIONS(3130), + [sym_identifier] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3130), + [anon_sym_macro_rules_BANG] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(3130), + [anon_sym_RBRACE] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3130), + [anon_sym_u8] = ACTIONS(3132), + [anon_sym_i8] = ACTIONS(3132), + [anon_sym_u16] = ACTIONS(3132), + [anon_sym_i16] = ACTIONS(3132), + [anon_sym_u32] = ACTIONS(3132), + [anon_sym_i32] = ACTIONS(3132), + [anon_sym_u64] = ACTIONS(3132), + [anon_sym_i64] = ACTIONS(3132), + [anon_sym_u128] = ACTIONS(3132), + [anon_sym_i128] = ACTIONS(3132), + [anon_sym_isize] = ACTIONS(3132), + [anon_sym_usize] = ACTIONS(3132), + [anon_sym_f32] = ACTIONS(3132), + [anon_sym_f64] = ACTIONS(3132), + [anon_sym_bool] = ACTIONS(3132), + [anon_sym_str] = ACTIONS(3132), + [anon_sym_char] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3130), + [anon_sym_PIPE] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_POUND] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3132), + [anon_sym_async] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_enum] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_gen] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_impl] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_loop] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_mod] = ACTIONS(3132), + [anon_sym_pub] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(3132), + [anon_sym_trait] = ACTIONS(3132), + [anon_sym_type] = ACTIONS(3132), + [anon_sym_union] = ACTIONS(3132), + [anon_sym_unsafe] = ACTIONS(3132), + [anon_sym_use] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_extern] = ACTIONS(3132), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_move] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [sym_integer_literal] = ACTIONS(3130), + [aux_sym_string_literal_token1] = ACTIONS(3130), + [sym_char_literal] = ACTIONS(3130), + [anon_sym_true] = ACTIONS(3132), + [anon_sym_false] = ACTIONS(3132), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3132), + [sym_super] = ACTIONS(3132), + [sym_crate] = ACTIONS(3132), + [sym_metavariable] = ACTIONS(3130), + [sym__raw_string_literal_start] = ACTIONS(3130), + [sym_float_literal] = ACTIONS(3130), + }, + [STATE(810)] = { + [sym_line_comment] = STATE(810), + [sym_block_comment] = STATE(810), + [ts_builtin_sym_end] = ACTIONS(3134), + [sym_identifier] = ACTIONS(3136), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_macro_rules_BANG] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3134), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3134), + [anon_sym_u8] = ACTIONS(3136), + [anon_sym_i8] = ACTIONS(3136), + [anon_sym_u16] = ACTIONS(3136), + [anon_sym_i16] = ACTIONS(3136), + [anon_sym_u32] = ACTIONS(3136), + [anon_sym_i32] = ACTIONS(3136), + [anon_sym_u64] = ACTIONS(3136), + [anon_sym_i64] = ACTIONS(3136), + [anon_sym_u128] = ACTIONS(3136), + [anon_sym_i128] = ACTIONS(3136), + [anon_sym_isize] = ACTIONS(3136), + [anon_sym_usize] = ACTIONS(3136), + [anon_sym_f32] = ACTIONS(3136), + [anon_sym_f64] = ACTIONS(3136), + [anon_sym_bool] = ACTIONS(3136), + [anon_sym_str] = ACTIONS(3136), + [anon_sym_char] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym_PIPE] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_DOT_DOT] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_POUND] = ACTIONS(3134), + [anon_sym_SQUOTE] = ACTIONS(3136), + [anon_sym_async] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_const] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_default] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3136), + [anon_sym_fn] = ACTIONS(3136), + [anon_sym_for] = ACTIONS(3136), + [anon_sym_gen] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_impl] = ACTIONS(3136), + [anon_sym_let] = ACTIONS(3136), + [anon_sym_loop] = ACTIONS(3136), + [anon_sym_match] = ACTIONS(3136), + [anon_sym_mod] = ACTIONS(3136), + [anon_sym_pub] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_static] = ACTIONS(3136), + [anon_sym_struct] = ACTIONS(3136), + [anon_sym_trait] = ACTIONS(3136), + [anon_sym_type] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3136), + [anon_sym_unsafe] = ACTIONS(3136), + [anon_sym_use] = ACTIONS(3136), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_extern] = ACTIONS(3136), + [anon_sym_yield] = ACTIONS(3136), + [anon_sym_move] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [sym_integer_literal] = ACTIONS(3134), + [aux_sym_string_literal_token1] = ACTIONS(3134), + [sym_char_literal] = ACTIONS(3134), + [anon_sym_true] = ACTIONS(3136), + [anon_sym_false] = ACTIONS(3136), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3136), + [sym_super] = ACTIONS(3136), + [sym_crate] = ACTIONS(3136), + [sym_metavariable] = ACTIONS(3134), + [sym__raw_string_literal_start] = ACTIONS(3134), + [sym_float_literal] = ACTIONS(3134), + }, + [STATE(811)] = { + [sym_line_comment] = STATE(811), + [sym_block_comment] = STATE(811), + [ts_builtin_sym_end] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_macro_rules_BANG] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_u8] = ACTIONS(3140), + [anon_sym_i8] = ACTIONS(3140), + [anon_sym_u16] = ACTIONS(3140), + [anon_sym_i16] = ACTIONS(3140), + [anon_sym_u32] = ACTIONS(3140), + [anon_sym_i32] = ACTIONS(3140), + [anon_sym_u64] = ACTIONS(3140), + [anon_sym_i64] = ACTIONS(3140), + [anon_sym_u128] = ACTIONS(3140), + [anon_sym_i128] = ACTIONS(3140), + [anon_sym_isize] = ACTIONS(3140), + [anon_sym_usize] = ACTIONS(3140), + [anon_sym_f32] = ACTIONS(3140), + [anon_sym_f64] = ACTIONS(3140), + [anon_sym_bool] = ACTIONS(3140), + [anon_sym_str] = ACTIONS(3140), + [anon_sym_char] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3138), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_PIPE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_DOT_DOT] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3138), + [anon_sym_POUND] = ACTIONS(3138), + [anon_sym_SQUOTE] = ACTIONS(3140), + [anon_sym_async] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_const] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_default] = ACTIONS(3140), + [anon_sym_enum] = ACTIONS(3140), + [anon_sym_fn] = ACTIONS(3140), + [anon_sym_for] = ACTIONS(3140), + [anon_sym_gen] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_impl] = ACTIONS(3140), + [anon_sym_let] = ACTIONS(3140), + [anon_sym_loop] = ACTIONS(3140), + [anon_sym_match] = ACTIONS(3140), + [anon_sym_mod] = ACTIONS(3140), + [anon_sym_pub] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_static] = ACTIONS(3140), + [anon_sym_struct] = ACTIONS(3140), + [anon_sym_trait] = ACTIONS(3140), + [anon_sym_type] = ACTIONS(3140), + [anon_sym_union] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(3140), + [anon_sym_use] = ACTIONS(3140), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_extern] = ACTIONS(3140), + [anon_sym_yield] = ACTIONS(3140), + [anon_sym_move] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [sym_integer_literal] = ACTIONS(3138), + [aux_sym_string_literal_token1] = ACTIONS(3138), + [sym_char_literal] = ACTIONS(3138), + [anon_sym_true] = ACTIONS(3140), + [anon_sym_false] = ACTIONS(3140), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3140), + [sym_super] = ACTIONS(3140), + [sym_crate] = ACTIONS(3140), + [sym_metavariable] = ACTIONS(3138), + [sym__raw_string_literal_start] = ACTIONS(3138), + [sym_float_literal] = ACTIONS(3138), + }, + [STATE(812)] = { + [sym_line_comment] = STATE(812), + [sym_block_comment] = STATE(812), + [ts_builtin_sym_end] = ACTIONS(3142), + [sym_identifier] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_macro_rules_BANG] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3142), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3142), + [anon_sym_u8] = ACTIONS(3144), + [anon_sym_i8] = ACTIONS(3144), + [anon_sym_u16] = ACTIONS(3144), + [anon_sym_i16] = ACTIONS(3144), + [anon_sym_u32] = ACTIONS(3144), + [anon_sym_i32] = ACTIONS(3144), + [anon_sym_u64] = ACTIONS(3144), + [anon_sym_i64] = ACTIONS(3144), + [anon_sym_u128] = ACTIONS(3144), + [anon_sym_i128] = ACTIONS(3144), + [anon_sym_isize] = ACTIONS(3144), + [anon_sym_usize] = ACTIONS(3144), + [anon_sym_f32] = ACTIONS(3144), + [anon_sym_f64] = ACTIONS(3144), + [anon_sym_bool] = ACTIONS(3144), + [anon_sym_str] = ACTIONS(3144), + [anon_sym_char] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3142), + [anon_sym_AMP] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_DOT_DOT] = ACTIONS(3142), + [anon_sym_COLON_COLON] = ACTIONS(3142), + [anon_sym_POUND] = ACTIONS(3142), + [anon_sym_SQUOTE] = ACTIONS(3144), + [anon_sym_async] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_const] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_default] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3144), + [anon_sym_fn] = ACTIONS(3144), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_gen] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_impl] = ACTIONS(3144), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_loop] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_mod] = ACTIONS(3144), + [anon_sym_pub] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_static] = ACTIONS(3144), + [anon_sym_struct] = ACTIONS(3144), + [anon_sym_trait] = ACTIONS(3144), + [anon_sym_type] = ACTIONS(3144), + [anon_sym_union] = ACTIONS(3144), + [anon_sym_unsafe] = ACTIONS(3144), + [anon_sym_use] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_extern] = ACTIONS(3144), + [anon_sym_yield] = ACTIONS(3144), + [anon_sym_move] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [sym_integer_literal] = ACTIONS(3142), + [aux_sym_string_literal_token1] = ACTIONS(3142), + [sym_char_literal] = ACTIONS(3142), + [anon_sym_true] = ACTIONS(3144), + [anon_sym_false] = ACTIONS(3144), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_crate] = ACTIONS(3144), + [sym_metavariable] = ACTIONS(3142), + [sym__raw_string_literal_start] = ACTIONS(3142), + [sym_float_literal] = ACTIONS(3142), + }, + [STATE(813)] = { + [sym_line_comment] = STATE(813), + [sym_block_comment] = STATE(813), + [ts_builtin_sym_end] = ACTIONS(3146), + [sym_identifier] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_macro_rules_BANG] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3146), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_u8] = ACTIONS(3148), + [anon_sym_i8] = ACTIONS(3148), + [anon_sym_u16] = ACTIONS(3148), + [anon_sym_i16] = ACTIONS(3148), + [anon_sym_u32] = ACTIONS(3148), + [anon_sym_i32] = ACTIONS(3148), + [anon_sym_u64] = ACTIONS(3148), + [anon_sym_i64] = ACTIONS(3148), + [anon_sym_u128] = ACTIONS(3148), + [anon_sym_i128] = ACTIONS(3148), + [anon_sym_isize] = ACTIONS(3148), + [anon_sym_usize] = ACTIONS(3148), + [anon_sym_f32] = ACTIONS(3148), + [anon_sym_f64] = ACTIONS(3148), + [anon_sym_bool] = ACTIONS(3148), + [anon_sym_str] = ACTIONS(3148), + [anon_sym_char] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_BANG] = ACTIONS(3146), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_PIPE] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(3146), + [anon_sym_DOT_DOT] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3146), + [anon_sym_POUND] = ACTIONS(3146), + [anon_sym_SQUOTE] = ACTIONS(3148), + [anon_sym_async] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_const] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_default] = ACTIONS(3148), + [anon_sym_enum] = ACTIONS(3148), + [anon_sym_fn] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [anon_sym_gen] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_impl] = ACTIONS(3148), + [anon_sym_let] = ACTIONS(3148), + [anon_sym_loop] = ACTIONS(3148), + [anon_sym_match] = ACTIONS(3148), + [anon_sym_mod] = ACTIONS(3148), + [anon_sym_pub] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3148), + [anon_sym_trait] = ACTIONS(3148), + [anon_sym_type] = ACTIONS(3148), + [anon_sym_union] = ACTIONS(3148), + [anon_sym_unsafe] = ACTIONS(3148), + [anon_sym_use] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_extern] = ACTIONS(3148), + [anon_sym_yield] = ACTIONS(3148), + [anon_sym_move] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [sym_integer_literal] = ACTIONS(3146), + [aux_sym_string_literal_token1] = ACTIONS(3146), + [sym_char_literal] = ACTIONS(3146), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3148), + [sym_super] = ACTIONS(3148), + [sym_crate] = ACTIONS(3148), + [sym_metavariable] = ACTIONS(3146), + [sym__raw_string_literal_start] = ACTIONS(3146), + [sym_float_literal] = ACTIONS(3146), + }, + [STATE(814)] = { + [sym_line_comment] = STATE(814), + [sym_block_comment] = STATE(814), + [ts_builtin_sym_end] = ACTIONS(3150), + [sym_identifier] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3150), + [anon_sym_macro_rules_BANG] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3150), + [anon_sym_u8] = ACTIONS(3152), + [anon_sym_i8] = ACTIONS(3152), + [anon_sym_u16] = ACTIONS(3152), + [anon_sym_i16] = ACTIONS(3152), + [anon_sym_u32] = ACTIONS(3152), + [anon_sym_i32] = ACTIONS(3152), + [anon_sym_u64] = ACTIONS(3152), + [anon_sym_i64] = ACTIONS(3152), + [anon_sym_u128] = ACTIONS(3152), + [anon_sym_i128] = ACTIONS(3152), + [anon_sym_isize] = ACTIONS(3152), + [anon_sym_usize] = ACTIONS(3152), + [anon_sym_f32] = ACTIONS(3152), + [anon_sym_f64] = ACTIONS(3152), + [anon_sym_bool] = ACTIONS(3152), + [anon_sym_str] = ACTIONS(3152), + [anon_sym_char] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3150), + [anon_sym_LT] = ACTIONS(3150), + [anon_sym_DOT_DOT] = ACTIONS(3150), + [anon_sym_COLON_COLON] = ACTIONS(3150), + [anon_sym_POUND] = ACTIONS(3150), + [anon_sym_SQUOTE] = ACTIONS(3152), + [anon_sym_async] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_const] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_default] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3152), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(3152), + [anon_sym_gen] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_impl] = ACTIONS(3152), + [anon_sym_let] = ACTIONS(3152), + [anon_sym_loop] = ACTIONS(3152), + [anon_sym_match] = ACTIONS(3152), + [anon_sym_mod] = ACTIONS(3152), + [anon_sym_pub] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_static] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(3152), + [anon_sym_trait] = ACTIONS(3152), + [anon_sym_type] = ACTIONS(3152), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_unsafe] = ACTIONS(3152), + [anon_sym_use] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_extern] = ACTIONS(3152), + [anon_sym_yield] = ACTIONS(3152), + [anon_sym_move] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [sym_integer_literal] = ACTIONS(3150), + [aux_sym_string_literal_token1] = ACTIONS(3150), + [sym_char_literal] = ACTIONS(3150), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3152), + [sym_super] = ACTIONS(3152), + [sym_crate] = ACTIONS(3152), + [sym_metavariable] = ACTIONS(3150), + [sym__raw_string_literal_start] = ACTIONS(3150), + [sym_float_literal] = ACTIONS(3150), + }, + [STATE(815)] = { + [sym_line_comment] = STATE(815), + [sym_block_comment] = STATE(815), + [ts_builtin_sym_end] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_macro_rules_BANG] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3154), + [anon_sym_u8] = ACTIONS(3156), + [anon_sym_i8] = ACTIONS(3156), + [anon_sym_u16] = ACTIONS(3156), + [anon_sym_i16] = ACTIONS(3156), + [anon_sym_u32] = ACTIONS(3156), + [anon_sym_i32] = ACTIONS(3156), + [anon_sym_u64] = ACTIONS(3156), + [anon_sym_i64] = ACTIONS(3156), + [anon_sym_u128] = ACTIONS(3156), + [anon_sym_i128] = ACTIONS(3156), + [anon_sym_isize] = ACTIONS(3156), + [anon_sym_usize] = ACTIONS(3156), + [anon_sym_f32] = ACTIONS(3156), + [anon_sym_f64] = ACTIONS(3156), + [anon_sym_bool] = ACTIONS(3156), + [anon_sym_str] = ACTIONS(3156), + [anon_sym_char] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_PIPE] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_POUND] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_async] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_default] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), + [anon_sym_fn] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_gen] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_impl] = ACTIONS(3156), + [anon_sym_let] = ACTIONS(3156), + [anon_sym_loop] = ACTIONS(3156), + [anon_sym_match] = ACTIONS(3156), + [anon_sym_mod] = ACTIONS(3156), + [anon_sym_pub] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3156), + [anon_sym_trait] = ACTIONS(3156), + [anon_sym_type] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(3156), + [anon_sym_use] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_extern] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3156), + [anon_sym_move] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(3154), + [aux_sym_string_literal_token1] = ACTIONS(3154), + [sym_char_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3156), + [sym_super] = ACTIONS(3156), + [sym_crate] = ACTIONS(3156), + [sym_metavariable] = ACTIONS(3154), + [sym__raw_string_literal_start] = ACTIONS(3154), + [sym_float_literal] = ACTIONS(3154), + }, + [STATE(816)] = { + [sym_line_comment] = STATE(816), + [sym_block_comment] = STATE(816), + [ts_builtin_sym_end] = ACTIONS(3158), + [sym_identifier] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_macro_rules_BANG] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_u8] = ACTIONS(3160), + [anon_sym_i8] = ACTIONS(3160), + [anon_sym_u16] = ACTIONS(3160), + [anon_sym_i16] = ACTIONS(3160), + [anon_sym_u32] = ACTIONS(3160), + [anon_sym_i32] = ACTIONS(3160), + [anon_sym_u64] = ACTIONS(3160), + [anon_sym_i64] = ACTIONS(3160), + [anon_sym_u128] = ACTIONS(3160), + [anon_sym_i128] = ACTIONS(3160), + [anon_sym_isize] = ACTIONS(3160), + [anon_sym_usize] = ACTIONS(3160), + [anon_sym_f32] = ACTIONS(3160), + [anon_sym_f64] = ACTIONS(3160), + [anon_sym_bool] = ACTIONS(3160), + [anon_sym_str] = ACTIONS(3160), + [anon_sym_char] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3158), + [anon_sym_PIPE] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3158), + [anon_sym_DOT_DOT] = ACTIONS(3158), + [anon_sym_COLON_COLON] = ACTIONS(3158), + [anon_sym_POUND] = ACTIONS(3158), + [anon_sym_SQUOTE] = ACTIONS(3160), + [anon_sym_async] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_default] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + [anon_sym_fn] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_gen] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_impl] = ACTIONS(3160), + [anon_sym_let] = ACTIONS(3160), + [anon_sym_loop] = ACTIONS(3160), + [anon_sym_match] = ACTIONS(3160), + [anon_sym_mod] = ACTIONS(3160), + [anon_sym_pub] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_struct] = ACTIONS(3160), + [anon_sym_trait] = ACTIONS(3160), + [anon_sym_type] = ACTIONS(3160), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(3160), + [anon_sym_use] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_extern] = ACTIONS(3160), + [anon_sym_yield] = ACTIONS(3160), + [anon_sym_move] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [sym_integer_literal] = ACTIONS(3158), + [aux_sym_string_literal_token1] = ACTIONS(3158), + [sym_char_literal] = ACTIONS(3158), + [anon_sym_true] = ACTIONS(3160), + [anon_sym_false] = ACTIONS(3160), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3160), + [sym_super] = ACTIONS(3160), + [sym_crate] = ACTIONS(3160), + [sym_metavariable] = ACTIONS(3158), + [sym__raw_string_literal_start] = ACTIONS(3158), + [sym_float_literal] = ACTIONS(3158), + }, + [STATE(817)] = { + [sym_line_comment] = STATE(817), + [sym_block_comment] = STATE(817), + [ts_builtin_sym_end] = ACTIONS(3162), + [sym_identifier] = ACTIONS(3164), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_macro_rules_BANG] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_u8] = ACTIONS(3164), + [anon_sym_i8] = ACTIONS(3164), + [anon_sym_u16] = ACTIONS(3164), + [anon_sym_i16] = ACTIONS(3164), + [anon_sym_u32] = ACTIONS(3164), + [anon_sym_i32] = ACTIONS(3164), + [anon_sym_u64] = ACTIONS(3164), + [anon_sym_i64] = ACTIONS(3164), + [anon_sym_u128] = ACTIONS(3164), + [anon_sym_i128] = ACTIONS(3164), + [anon_sym_isize] = ACTIONS(3164), + [anon_sym_usize] = ACTIONS(3164), + [anon_sym_f32] = ACTIONS(3164), + [anon_sym_f64] = ACTIONS(3164), + [anon_sym_bool] = ACTIONS(3164), + [anon_sym_str] = ACTIONS(3164), + [anon_sym_char] = ACTIONS(3164), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_DOT_DOT] = ACTIONS(3162), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_POUND] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3164), + [anon_sym_async] = ACTIONS(3164), + [anon_sym_break] = ACTIONS(3164), + [anon_sym_const] = ACTIONS(3164), + [anon_sym_continue] = ACTIONS(3164), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_enum] = ACTIONS(3164), + [anon_sym_fn] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3164), + [anon_sym_gen] = ACTIONS(3164), + [anon_sym_if] = ACTIONS(3164), + [anon_sym_impl] = ACTIONS(3164), + [anon_sym_let] = ACTIONS(3164), + [anon_sym_loop] = ACTIONS(3164), + [anon_sym_match] = ACTIONS(3164), + [anon_sym_mod] = ACTIONS(3164), + [anon_sym_pub] = ACTIONS(3164), + [anon_sym_return] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3164), + [anon_sym_struct] = ACTIONS(3164), + [anon_sym_trait] = ACTIONS(3164), + [anon_sym_type] = ACTIONS(3164), + [anon_sym_union] = ACTIONS(3164), + [anon_sym_unsafe] = ACTIONS(3164), + [anon_sym_use] = ACTIONS(3164), + [anon_sym_while] = ACTIONS(3164), + [anon_sym_extern] = ACTIONS(3164), + [anon_sym_yield] = ACTIONS(3164), + [anon_sym_move] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3164), + [sym_integer_literal] = ACTIONS(3162), + [aux_sym_string_literal_token1] = ACTIONS(3162), + [sym_char_literal] = ACTIONS(3162), + [anon_sym_true] = ACTIONS(3164), + [anon_sym_false] = ACTIONS(3164), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3164), + [sym_super] = ACTIONS(3164), + [sym_crate] = ACTIONS(3164), + [sym_metavariable] = ACTIONS(3162), + [sym__raw_string_literal_start] = ACTIONS(3162), + [sym_float_literal] = ACTIONS(3162), + }, + [STATE(818)] = { + [sym_line_comment] = STATE(818), + [sym_block_comment] = STATE(818), + [ts_builtin_sym_end] = ACTIONS(3166), + [sym_identifier] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_macro_rules_BANG] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_u8] = ACTIONS(3168), + [anon_sym_i8] = ACTIONS(3168), + [anon_sym_u16] = ACTIONS(3168), + [anon_sym_i16] = ACTIONS(3168), + [anon_sym_u32] = ACTIONS(3168), + [anon_sym_i32] = ACTIONS(3168), + [anon_sym_u64] = ACTIONS(3168), + [anon_sym_i64] = ACTIONS(3168), + [anon_sym_u128] = ACTIONS(3168), + [anon_sym_i128] = ACTIONS(3168), + [anon_sym_isize] = ACTIONS(3168), + [anon_sym_usize] = ACTIONS(3168), + [anon_sym_f32] = ACTIONS(3168), + [anon_sym_f64] = ACTIONS(3168), + [anon_sym_bool] = ACTIONS(3168), + [anon_sym_str] = ACTIONS(3168), + [anon_sym_char] = ACTIONS(3168), + [anon_sym_DASH] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_PIPE] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3166), + [anon_sym_DOT_DOT] = ACTIONS(3166), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_POUND] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_async] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_fn] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_gen] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_impl] = ACTIONS(3168), + [anon_sym_let] = ACTIONS(3168), + [anon_sym_loop] = ACTIONS(3168), + [anon_sym_match] = ACTIONS(3168), + [anon_sym_mod] = ACTIONS(3168), + [anon_sym_pub] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_trait] = ACTIONS(3168), + [anon_sym_type] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(3168), + [anon_sym_use] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym_yield] = ACTIONS(3168), + [anon_sym_move] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [sym_integer_literal] = ACTIONS(3166), + [aux_sym_string_literal_token1] = ACTIONS(3166), + [sym_char_literal] = ACTIONS(3166), + [anon_sym_true] = ACTIONS(3168), + [anon_sym_false] = ACTIONS(3168), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3168), + [sym_super] = ACTIONS(3168), + [sym_crate] = ACTIONS(3168), + [sym_metavariable] = ACTIONS(3166), + [sym__raw_string_literal_start] = ACTIONS(3166), + [sym_float_literal] = ACTIONS(3166), + }, + [STATE(819)] = { + [sym_line_comment] = STATE(819), + [sym_block_comment] = STATE(819), + [ts_builtin_sym_end] = ACTIONS(3170), + [sym_identifier] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym_macro_rules_BANG] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_u8] = ACTIONS(3172), + [anon_sym_i8] = ACTIONS(3172), + [anon_sym_u16] = ACTIONS(3172), + [anon_sym_i16] = ACTIONS(3172), + [anon_sym_u32] = ACTIONS(3172), + [anon_sym_i32] = ACTIONS(3172), + [anon_sym_u64] = ACTIONS(3172), + [anon_sym_i64] = ACTIONS(3172), + [anon_sym_u128] = ACTIONS(3172), + [anon_sym_i128] = ACTIONS(3172), + [anon_sym_isize] = ACTIONS(3172), + [anon_sym_usize] = ACTIONS(3172), + [anon_sym_f32] = ACTIONS(3172), + [anon_sym_f64] = ACTIONS(3172), + [anon_sym_bool] = ACTIONS(3172), + [anon_sym_str] = ACTIONS(3172), + [anon_sym_char] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_PIPE] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_DOT_DOT] = ACTIONS(3170), + [anon_sym_COLON_COLON] = ACTIONS(3170), + [anon_sym_POUND] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3172), + [anon_sym_async] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_default] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_gen] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_impl] = ACTIONS(3172), + [anon_sym_let] = ACTIONS(3172), + [anon_sym_loop] = ACTIONS(3172), + [anon_sym_match] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3172), + [anon_sym_pub] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3172), + [anon_sym_trait] = ACTIONS(3172), + [anon_sym_type] = ACTIONS(3172), + [anon_sym_union] = ACTIONS(3172), + [anon_sym_unsafe] = ACTIONS(3172), + [anon_sym_use] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_extern] = ACTIONS(3172), + [anon_sym_yield] = ACTIONS(3172), + [anon_sym_move] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [sym_integer_literal] = ACTIONS(3170), + [aux_sym_string_literal_token1] = ACTIONS(3170), + [sym_char_literal] = ACTIONS(3170), + [anon_sym_true] = ACTIONS(3172), + [anon_sym_false] = ACTIONS(3172), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3172), + [sym_super] = ACTIONS(3172), + [sym_crate] = ACTIONS(3172), + [sym_metavariable] = ACTIONS(3170), + [sym__raw_string_literal_start] = ACTIONS(3170), + [sym_float_literal] = ACTIONS(3170), + }, + [STATE(820)] = { + [sym_line_comment] = STATE(820), + [sym_block_comment] = STATE(820), + [ts_builtin_sym_end] = ACTIONS(3174), + [sym_identifier] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym_macro_rules_BANG] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_RBRACE] = ACTIONS(3174), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_u8] = ACTIONS(3176), + [anon_sym_i8] = ACTIONS(3176), + [anon_sym_u16] = ACTIONS(3176), + [anon_sym_i16] = ACTIONS(3176), + [anon_sym_u32] = ACTIONS(3176), + [anon_sym_i32] = ACTIONS(3176), + [anon_sym_u64] = ACTIONS(3176), + [anon_sym_i64] = ACTIONS(3176), + [anon_sym_u128] = ACTIONS(3176), + [anon_sym_i128] = ACTIONS(3176), + [anon_sym_isize] = ACTIONS(3176), + [anon_sym_usize] = ACTIONS(3176), + [anon_sym_f32] = ACTIONS(3176), + [anon_sym_f64] = ACTIONS(3176), + [anon_sym_bool] = ACTIONS(3176), + [anon_sym_str] = ACTIONS(3176), + [anon_sym_char] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_PIPE] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_DOT_DOT] = ACTIONS(3174), + [anon_sym_COLON_COLON] = ACTIONS(3174), + [anon_sym_POUND] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_async] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_fn] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_gen] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_let] = ACTIONS(3176), + [anon_sym_loop] = ACTIONS(3176), + [anon_sym_match] = ACTIONS(3176), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_pub] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_trait] = ACTIONS(3176), + [anon_sym_type] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_unsafe] = ACTIONS(3176), + [anon_sym_use] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3176), + [anon_sym_move] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [sym_integer_literal] = ACTIONS(3174), + [aux_sym_string_literal_token1] = ACTIONS(3174), + [sym_char_literal] = ACTIONS(3174), + [anon_sym_true] = ACTIONS(3176), + [anon_sym_false] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_crate] = ACTIONS(3176), + [sym_metavariable] = ACTIONS(3174), + [sym__raw_string_literal_start] = ACTIONS(3174), + [sym_float_literal] = ACTIONS(3174), + }, + [STATE(821)] = { + [sym_line_comment] = STATE(821), + [sym_block_comment] = STATE(821), + [ts_builtin_sym_end] = ACTIONS(3178), + [sym_identifier] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym_macro_rules_BANG] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_u8] = ACTIONS(3180), + [anon_sym_i8] = ACTIONS(3180), + [anon_sym_u16] = ACTIONS(3180), + [anon_sym_i16] = ACTIONS(3180), + [anon_sym_u32] = ACTIONS(3180), + [anon_sym_i32] = ACTIONS(3180), + [anon_sym_u64] = ACTIONS(3180), + [anon_sym_i64] = ACTIONS(3180), + [anon_sym_u128] = ACTIONS(3180), + [anon_sym_i128] = ACTIONS(3180), + [anon_sym_isize] = ACTIONS(3180), + [anon_sym_usize] = ACTIONS(3180), + [anon_sym_f32] = ACTIONS(3180), + [anon_sym_f64] = ACTIONS(3180), + [anon_sym_bool] = ACTIONS(3180), + [anon_sym_str] = ACTIONS(3180), + [anon_sym_char] = ACTIONS(3180), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_DOT_DOT] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_POUND] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3180), + [anon_sym_async] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_default] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_fn] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_gen] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_impl] = ACTIONS(3180), + [anon_sym_let] = ACTIONS(3180), + [anon_sym_loop] = ACTIONS(3180), + [anon_sym_match] = ACTIONS(3180), + [anon_sym_mod] = ACTIONS(3180), + [anon_sym_pub] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_trait] = ACTIONS(3180), + [anon_sym_type] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_unsafe] = ACTIONS(3180), + [anon_sym_use] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3180), + [anon_sym_move] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [sym_integer_literal] = ACTIONS(3178), + [aux_sym_string_literal_token1] = ACTIONS(3178), + [sym_char_literal] = ACTIONS(3178), + [anon_sym_true] = ACTIONS(3180), + [anon_sym_false] = ACTIONS(3180), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3180), + [sym_super] = ACTIONS(3180), + [sym_crate] = ACTIONS(3180), + [sym_metavariable] = ACTIONS(3178), + [sym__raw_string_literal_start] = ACTIONS(3178), + [sym_float_literal] = ACTIONS(3178), + }, + [STATE(822)] = { + [sym_line_comment] = STATE(822), + [sym_block_comment] = STATE(822), + [ts_builtin_sym_end] = ACTIONS(3182), + [sym_identifier] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_macro_rules_BANG] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_u8] = ACTIONS(3184), + [anon_sym_i8] = ACTIONS(3184), + [anon_sym_u16] = ACTIONS(3184), + [anon_sym_i16] = ACTIONS(3184), + [anon_sym_u32] = ACTIONS(3184), + [anon_sym_i32] = ACTIONS(3184), + [anon_sym_u64] = ACTIONS(3184), + [anon_sym_i64] = ACTIONS(3184), + [anon_sym_u128] = ACTIONS(3184), + [anon_sym_i128] = ACTIONS(3184), + [anon_sym_isize] = ACTIONS(3184), + [anon_sym_usize] = ACTIONS(3184), + [anon_sym_f32] = ACTIONS(3184), + [anon_sym_f64] = ACTIONS(3184), + [anon_sym_bool] = ACTIONS(3184), + [anon_sym_str] = ACTIONS(3184), + [anon_sym_char] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_PIPE] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_POUND] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3184), + [anon_sym_async] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_fn] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_gen] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_impl] = ACTIONS(3184), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_loop] = ACTIONS(3184), + [anon_sym_match] = ACTIONS(3184), + [anon_sym_mod] = ACTIONS(3184), + [anon_sym_pub] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_trait] = ACTIONS(3184), + [anon_sym_type] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_unsafe] = ACTIONS(3184), + [anon_sym_use] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym_yield] = ACTIONS(3184), + [anon_sym_move] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3184), + [sym_integer_literal] = ACTIONS(3182), + [aux_sym_string_literal_token1] = ACTIONS(3182), + [sym_char_literal] = ACTIONS(3182), + [anon_sym_true] = ACTIONS(3184), + [anon_sym_false] = ACTIONS(3184), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3184), + [sym_super] = ACTIONS(3184), + [sym_crate] = ACTIONS(3184), + [sym_metavariable] = ACTIONS(3182), + [sym__raw_string_literal_start] = ACTIONS(3182), + [sym_float_literal] = ACTIONS(3182), + }, + [STATE(823)] = { + [sym_line_comment] = STATE(823), + [sym_block_comment] = STATE(823), + [ts_builtin_sym_end] = ACTIONS(3186), + [sym_identifier] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_macro_rules_BANG] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_u8] = ACTIONS(3188), + [anon_sym_i8] = ACTIONS(3188), + [anon_sym_u16] = ACTIONS(3188), + [anon_sym_i16] = ACTIONS(3188), + [anon_sym_u32] = ACTIONS(3188), + [anon_sym_i32] = ACTIONS(3188), + [anon_sym_u64] = ACTIONS(3188), + [anon_sym_i64] = ACTIONS(3188), + [anon_sym_u128] = ACTIONS(3188), + [anon_sym_i128] = ACTIONS(3188), + [anon_sym_isize] = ACTIONS(3188), + [anon_sym_usize] = ACTIONS(3188), + [anon_sym_f32] = ACTIONS(3188), + [anon_sym_f64] = ACTIONS(3188), + [anon_sym_bool] = ACTIONS(3188), + [anon_sym_str] = ACTIONS(3188), + [anon_sym_char] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3186), + [anon_sym_PIPE] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_POUND] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3188), + [anon_sym_async] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_default] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_gen] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_impl] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_loop] = ACTIONS(3188), + [anon_sym_match] = ACTIONS(3188), + [anon_sym_mod] = ACTIONS(3188), + [anon_sym_pub] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3188), + [anon_sym_trait] = ACTIONS(3188), + [anon_sym_type] = ACTIONS(3188), + [anon_sym_union] = ACTIONS(3188), + [anon_sym_unsafe] = ACTIONS(3188), + [anon_sym_use] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_extern] = ACTIONS(3188), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_move] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [sym_integer_literal] = ACTIONS(3186), + [aux_sym_string_literal_token1] = ACTIONS(3186), + [sym_char_literal] = ACTIONS(3186), + [anon_sym_true] = ACTIONS(3188), + [anon_sym_false] = ACTIONS(3188), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3188), + [sym_super] = ACTIONS(3188), + [sym_crate] = ACTIONS(3188), + [sym_metavariable] = ACTIONS(3186), + [sym__raw_string_literal_start] = ACTIONS(3186), + [sym_float_literal] = ACTIONS(3186), + }, + [STATE(824)] = { + [sym_line_comment] = STATE(824), + [sym_block_comment] = STATE(824), + [ts_builtin_sym_end] = ACTIONS(3190), + [sym_identifier] = ACTIONS(3192), + [anon_sym_SEMI] = ACTIONS(3190), + [anon_sym_macro_rules_BANG] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_u8] = ACTIONS(3192), + [anon_sym_i8] = ACTIONS(3192), + [anon_sym_u16] = ACTIONS(3192), + [anon_sym_i16] = ACTIONS(3192), + [anon_sym_u32] = ACTIONS(3192), + [anon_sym_i32] = ACTIONS(3192), + [anon_sym_u64] = ACTIONS(3192), + [anon_sym_i64] = ACTIONS(3192), + [anon_sym_u128] = ACTIONS(3192), + [anon_sym_i128] = ACTIONS(3192), + [anon_sym_isize] = ACTIONS(3192), + [anon_sym_usize] = ACTIONS(3192), + [anon_sym_f32] = ACTIONS(3192), + [anon_sym_f64] = ACTIONS(3192), + [anon_sym_bool] = ACTIONS(3192), + [anon_sym_str] = ACTIONS(3192), + [anon_sym_char] = ACTIONS(3192), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3190), + [anon_sym_PIPE] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_DOT_DOT] = ACTIONS(3190), + [anon_sym_COLON_COLON] = ACTIONS(3190), + [anon_sym_POUND] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3192), + [anon_sym_async] = ACTIONS(3192), + [anon_sym_break] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3192), + [anon_sym_continue] = ACTIONS(3192), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_enum] = ACTIONS(3192), + [anon_sym_fn] = ACTIONS(3192), + [anon_sym_for] = ACTIONS(3192), + [anon_sym_gen] = ACTIONS(3192), + [anon_sym_if] = ACTIONS(3192), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_let] = ACTIONS(3192), + [anon_sym_loop] = ACTIONS(3192), + [anon_sym_match] = ACTIONS(3192), + [anon_sym_mod] = ACTIONS(3192), + [anon_sym_pub] = ACTIONS(3192), + [anon_sym_return] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3192), + [anon_sym_trait] = ACTIONS(3192), + [anon_sym_type] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3192), + [anon_sym_unsafe] = ACTIONS(3192), + [anon_sym_use] = ACTIONS(3192), + [anon_sym_while] = ACTIONS(3192), + [anon_sym_extern] = ACTIONS(3192), + [anon_sym_yield] = ACTIONS(3192), + [anon_sym_move] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(3192), + [sym_integer_literal] = ACTIONS(3190), + [aux_sym_string_literal_token1] = ACTIONS(3190), + [sym_char_literal] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3192), + [sym_super] = ACTIONS(3192), + [sym_crate] = ACTIONS(3192), + [sym_metavariable] = ACTIONS(3190), + [sym__raw_string_literal_start] = ACTIONS(3190), + [sym_float_literal] = ACTIONS(3190), + }, + [STATE(825)] = { + [sym_line_comment] = STATE(825), + [sym_block_comment] = STATE(825), + [ts_builtin_sym_end] = ACTIONS(3194), + [sym_identifier] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_macro_rules_BANG] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_u8] = ACTIONS(3196), + [anon_sym_i8] = ACTIONS(3196), + [anon_sym_u16] = ACTIONS(3196), + [anon_sym_i16] = ACTIONS(3196), + [anon_sym_u32] = ACTIONS(3196), + [anon_sym_i32] = ACTIONS(3196), + [anon_sym_u64] = ACTIONS(3196), + [anon_sym_i64] = ACTIONS(3196), + [anon_sym_u128] = ACTIONS(3196), + [anon_sym_i128] = ACTIONS(3196), + [anon_sym_isize] = ACTIONS(3196), + [anon_sym_usize] = ACTIONS(3196), + [anon_sym_f32] = ACTIONS(3196), + [anon_sym_f64] = ACTIONS(3196), + [anon_sym_bool] = ACTIONS(3196), + [anon_sym_str] = ACTIONS(3196), + [anon_sym_char] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_PIPE] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_DOT_DOT] = ACTIONS(3194), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_POUND] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3196), + [anon_sym_async] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_const] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_default] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3196), + [anon_sym_fn] = ACTIONS(3196), + [anon_sym_for] = ACTIONS(3196), + [anon_sym_gen] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_impl] = ACTIONS(3196), + [anon_sym_let] = ACTIONS(3196), + [anon_sym_loop] = ACTIONS(3196), + [anon_sym_match] = ACTIONS(3196), + [anon_sym_mod] = ACTIONS(3196), + [anon_sym_pub] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_static] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3196), + [anon_sym_trait] = ACTIONS(3196), + [anon_sym_type] = ACTIONS(3196), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_unsafe] = ACTIONS(3196), + [anon_sym_use] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), + [anon_sym_extern] = ACTIONS(3196), + [anon_sym_yield] = ACTIONS(3196), + [anon_sym_move] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [sym_integer_literal] = ACTIONS(3194), + [aux_sym_string_literal_token1] = ACTIONS(3194), + [sym_char_literal] = ACTIONS(3194), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_crate] = ACTIONS(3196), + [sym_metavariable] = ACTIONS(3194), + [sym__raw_string_literal_start] = ACTIONS(3194), + [sym_float_literal] = ACTIONS(3194), + }, + [STATE(826)] = { + [sym_line_comment] = STATE(826), + [sym_block_comment] = STATE(826), + [ts_builtin_sym_end] = ACTIONS(3198), + [sym_identifier] = ACTIONS(3200), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_macro_rules_BANG] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_u8] = ACTIONS(3200), + [anon_sym_i8] = ACTIONS(3200), + [anon_sym_u16] = ACTIONS(3200), + [anon_sym_i16] = ACTIONS(3200), + [anon_sym_u32] = ACTIONS(3200), + [anon_sym_i32] = ACTIONS(3200), + [anon_sym_u64] = ACTIONS(3200), + [anon_sym_i64] = ACTIONS(3200), + [anon_sym_u128] = ACTIONS(3200), + [anon_sym_i128] = ACTIONS(3200), + [anon_sym_isize] = ACTIONS(3200), + [anon_sym_usize] = ACTIONS(3200), + [anon_sym_f32] = ACTIONS(3200), + [anon_sym_f64] = ACTIONS(3200), + [anon_sym_bool] = ACTIONS(3200), + [anon_sym_str] = ACTIONS(3200), + [anon_sym_char] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_DOT_DOT] = ACTIONS(3198), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_POUND] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_async] = ACTIONS(3200), + [anon_sym_break] = ACTIONS(3200), + [anon_sym_const] = ACTIONS(3200), + [anon_sym_continue] = ACTIONS(3200), + [anon_sym_default] = ACTIONS(3200), + [anon_sym_enum] = ACTIONS(3200), + [anon_sym_fn] = ACTIONS(3200), + [anon_sym_for] = ACTIONS(3200), + [anon_sym_gen] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3200), + [anon_sym_impl] = ACTIONS(3200), + [anon_sym_let] = ACTIONS(3200), + [anon_sym_loop] = ACTIONS(3200), + [anon_sym_match] = ACTIONS(3200), + [anon_sym_mod] = ACTIONS(3200), + [anon_sym_pub] = ACTIONS(3200), + [anon_sym_return] = ACTIONS(3200), + [anon_sym_static] = ACTIONS(3200), + [anon_sym_struct] = ACTIONS(3200), + [anon_sym_trait] = ACTIONS(3200), + [anon_sym_type] = ACTIONS(3200), + [anon_sym_union] = ACTIONS(3200), + [anon_sym_unsafe] = ACTIONS(3200), + [anon_sym_use] = ACTIONS(3200), + [anon_sym_while] = ACTIONS(3200), + [anon_sym_extern] = ACTIONS(3200), + [anon_sym_yield] = ACTIONS(3200), + [anon_sym_move] = ACTIONS(3200), + [anon_sym_try] = ACTIONS(3200), + [sym_integer_literal] = ACTIONS(3198), + [aux_sym_string_literal_token1] = ACTIONS(3198), + [sym_char_literal] = ACTIONS(3198), + [anon_sym_true] = ACTIONS(3200), + [anon_sym_false] = ACTIONS(3200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3200), + [sym_super] = ACTIONS(3200), + [sym_crate] = ACTIONS(3200), + [sym_metavariable] = ACTIONS(3198), + [sym__raw_string_literal_start] = ACTIONS(3198), + [sym_float_literal] = ACTIONS(3198), + }, + [STATE(827)] = { + [sym_line_comment] = STATE(827), + [sym_block_comment] = STATE(827), + [ts_builtin_sym_end] = ACTIONS(3202), + [sym_identifier] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3202), + [anon_sym_macro_rules_BANG] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_PIPE] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_DOT_DOT] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3202), + [anon_sym_POUND] = ACTIONS(3202), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_async] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_const] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_default] = ACTIONS(3204), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_fn] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3204), + [anon_sym_gen] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_impl] = ACTIONS(3204), + [anon_sym_let] = ACTIONS(3204), + [anon_sym_loop] = ACTIONS(3204), + [anon_sym_match] = ACTIONS(3204), + [anon_sym_mod] = ACTIONS(3204), + [anon_sym_pub] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_static] = ACTIONS(3204), + [anon_sym_struct] = ACTIONS(3204), + [anon_sym_trait] = ACTIONS(3204), + [anon_sym_type] = ACTIONS(3204), + [anon_sym_union] = ACTIONS(3204), + [anon_sym_unsafe] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_extern] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3204), + [anon_sym_move] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [sym_integer_literal] = ACTIONS(3202), + [aux_sym_string_literal_token1] = ACTIONS(3202), + [sym_char_literal] = ACTIONS(3202), + [anon_sym_true] = ACTIONS(3204), + [anon_sym_false] = ACTIONS(3204), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_crate] = ACTIONS(3204), + [sym_metavariable] = ACTIONS(3202), + [sym__raw_string_literal_start] = ACTIONS(3202), + [sym_float_literal] = ACTIONS(3202), + }, + [STATE(828)] = { + [sym_line_comment] = STATE(828), + [sym_block_comment] = STATE(828), + [ts_builtin_sym_end] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3208), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_macro_rules_BANG] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_STAR] = ACTIONS(3206), + [anon_sym_u8] = ACTIONS(3208), + [anon_sym_i8] = ACTIONS(3208), + [anon_sym_u16] = ACTIONS(3208), + [anon_sym_i16] = ACTIONS(3208), + [anon_sym_u32] = ACTIONS(3208), + [anon_sym_i32] = ACTIONS(3208), + [anon_sym_u64] = ACTIONS(3208), + [anon_sym_i64] = ACTIONS(3208), + [anon_sym_u128] = ACTIONS(3208), + [anon_sym_i128] = ACTIONS(3208), + [anon_sym_isize] = ACTIONS(3208), + [anon_sym_usize] = ACTIONS(3208), + [anon_sym_f32] = ACTIONS(3208), + [anon_sym_f64] = ACTIONS(3208), + [anon_sym_bool] = ACTIONS(3208), + [anon_sym_str] = ACTIONS(3208), + [anon_sym_char] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_PIPE] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_COLON_COLON] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(3206), + [anon_sym_SQUOTE] = ACTIONS(3208), + [anon_sym_async] = ACTIONS(3208), + [anon_sym_break] = ACTIONS(3208), + [anon_sym_const] = ACTIONS(3208), + [anon_sym_continue] = ACTIONS(3208), + [anon_sym_default] = ACTIONS(3208), + [anon_sym_enum] = ACTIONS(3208), + [anon_sym_fn] = ACTIONS(3208), + [anon_sym_for] = ACTIONS(3208), + [anon_sym_gen] = ACTIONS(3208), + [anon_sym_if] = ACTIONS(3208), + [anon_sym_impl] = ACTIONS(3208), + [anon_sym_let] = ACTIONS(3208), + [anon_sym_loop] = ACTIONS(3208), + [anon_sym_match] = ACTIONS(3208), + [anon_sym_mod] = ACTIONS(3208), + [anon_sym_pub] = ACTIONS(3208), + [anon_sym_return] = ACTIONS(3208), + [anon_sym_static] = ACTIONS(3208), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_trait] = ACTIONS(3208), + [anon_sym_type] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3208), + [anon_sym_unsafe] = ACTIONS(3208), + [anon_sym_use] = ACTIONS(3208), + [anon_sym_while] = ACTIONS(3208), + [anon_sym_extern] = ACTIONS(3208), + [anon_sym_yield] = ACTIONS(3208), + [anon_sym_move] = ACTIONS(3208), + [anon_sym_try] = ACTIONS(3208), + [sym_integer_literal] = ACTIONS(3206), + [aux_sym_string_literal_token1] = ACTIONS(3206), + [sym_char_literal] = ACTIONS(3206), + [anon_sym_true] = ACTIONS(3208), + [anon_sym_false] = ACTIONS(3208), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3208), + [sym_super] = ACTIONS(3208), + [sym_crate] = ACTIONS(3208), + [sym_metavariable] = ACTIONS(3206), + [sym__raw_string_literal_start] = ACTIONS(3206), + [sym_float_literal] = ACTIONS(3206), + }, + [STATE(829)] = { + [sym_line_comment] = STATE(829), + [sym_block_comment] = STATE(829), + [ts_builtin_sym_end] = ACTIONS(3210), + [sym_identifier] = ACTIONS(3212), + [anon_sym_SEMI] = ACTIONS(3210), + [anon_sym_macro_rules_BANG] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3210), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_AMP] = ACTIONS(3210), + [anon_sym_PIPE] = ACTIONS(3210), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_DOT_DOT] = ACTIONS(3210), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_POUND] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3212), + [anon_sym_async] = ACTIONS(3212), + [anon_sym_break] = ACTIONS(3212), + [anon_sym_const] = ACTIONS(3212), + [anon_sym_continue] = ACTIONS(3212), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_enum] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_gen] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_impl] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_loop] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_mod] = ACTIONS(3212), + [anon_sym_pub] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_struct] = ACTIONS(3212), + [anon_sym_trait] = ACTIONS(3212), + [anon_sym_type] = ACTIONS(3212), + [anon_sym_union] = ACTIONS(3212), + [anon_sym_unsafe] = ACTIONS(3212), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_extern] = ACTIONS(3212), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_move] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [sym_integer_literal] = ACTIONS(3210), + [aux_sym_string_literal_token1] = ACTIONS(3210), + [sym_char_literal] = ACTIONS(3210), + [anon_sym_true] = ACTIONS(3212), + [anon_sym_false] = ACTIONS(3212), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3212), + [sym_super] = ACTIONS(3212), + [sym_crate] = ACTIONS(3212), + [sym_metavariable] = ACTIONS(3210), + [sym__raw_string_literal_start] = ACTIONS(3210), + [sym_float_literal] = ACTIONS(3210), + }, + [STATE(830)] = { + [sym_line_comment] = STATE(830), + [sym_block_comment] = STATE(830), + [ts_builtin_sym_end] = ACTIONS(3214), + [sym_identifier] = ACTIONS(3216), + [anon_sym_SEMI] = ACTIONS(3214), + [anon_sym_macro_rules_BANG] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_RBRACE] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_u8] = ACTIONS(3216), + [anon_sym_i8] = ACTIONS(3216), + [anon_sym_u16] = ACTIONS(3216), + [anon_sym_i16] = ACTIONS(3216), + [anon_sym_u32] = ACTIONS(3216), + [anon_sym_i32] = ACTIONS(3216), + [anon_sym_u64] = ACTIONS(3216), + [anon_sym_i64] = ACTIONS(3216), + [anon_sym_u128] = ACTIONS(3216), + [anon_sym_i128] = ACTIONS(3216), + [anon_sym_isize] = ACTIONS(3216), + [anon_sym_usize] = ACTIONS(3216), + [anon_sym_f32] = ACTIONS(3216), + [anon_sym_f64] = ACTIONS(3216), + [anon_sym_bool] = ACTIONS(3216), + [anon_sym_str] = ACTIONS(3216), + [anon_sym_char] = ACTIONS(3216), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3214), + [anon_sym_PIPE] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3216), + [anon_sym_async] = ACTIONS(3216), + [anon_sym_break] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3216), + [anon_sym_continue] = ACTIONS(3216), + [anon_sym_default] = ACTIONS(3216), + [anon_sym_enum] = ACTIONS(3216), + [anon_sym_fn] = ACTIONS(3216), + [anon_sym_for] = ACTIONS(3216), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_if] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3216), + [anon_sym_let] = ACTIONS(3216), + [anon_sym_loop] = ACTIONS(3216), + [anon_sym_match] = ACTIONS(3216), + [anon_sym_mod] = ACTIONS(3216), + [anon_sym_pub] = ACTIONS(3216), + [anon_sym_return] = ACTIONS(3216), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_struct] = ACTIONS(3216), + [anon_sym_trait] = ACTIONS(3216), + [anon_sym_type] = ACTIONS(3216), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(3216), + [anon_sym_use] = ACTIONS(3216), + [anon_sym_while] = ACTIONS(3216), + [anon_sym_extern] = ACTIONS(3216), + [anon_sym_yield] = ACTIONS(3216), + [anon_sym_move] = ACTIONS(3216), + [anon_sym_try] = ACTIONS(3216), + [sym_integer_literal] = ACTIONS(3214), + [aux_sym_string_literal_token1] = ACTIONS(3214), + [sym_char_literal] = ACTIONS(3214), + [anon_sym_true] = ACTIONS(3216), + [anon_sym_false] = ACTIONS(3216), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3216), + [sym_super] = ACTIONS(3216), + [sym_crate] = ACTIONS(3216), + [sym_metavariable] = ACTIONS(3214), + [sym__raw_string_literal_start] = ACTIONS(3214), + [sym_float_literal] = ACTIONS(3214), + }, + [STATE(831)] = { + [sym_line_comment] = STATE(831), + [sym_block_comment] = STATE(831), + [ts_builtin_sym_end] = ACTIONS(3218), + [sym_identifier] = ACTIONS(3220), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_macro_rules_BANG] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_u8] = ACTIONS(3220), + [anon_sym_i8] = ACTIONS(3220), + [anon_sym_u16] = ACTIONS(3220), + [anon_sym_i16] = ACTIONS(3220), + [anon_sym_u32] = ACTIONS(3220), + [anon_sym_i32] = ACTIONS(3220), + [anon_sym_u64] = ACTIONS(3220), + [anon_sym_i64] = ACTIONS(3220), + [anon_sym_u128] = ACTIONS(3220), + [anon_sym_i128] = ACTIONS(3220), + [anon_sym_isize] = ACTIONS(3220), + [anon_sym_usize] = ACTIONS(3220), + [anon_sym_f32] = ACTIONS(3220), + [anon_sym_f64] = ACTIONS(3220), + [anon_sym_bool] = ACTIONS(3220), + [anon_sym_str] = ACTIONS(3220), + [anon_sym_char] = ACTIONS(3220), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_PIPE] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_POUND] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3220), + [anon_sym_async] = ACTIONS(3220), + [anon_sym_break] = ACTIONS(3220), + [anon_sym_const] = ACTIONS(3220), + [anon_sym_continue] = ACTIONS(3220), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_enum] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3220), + [anon_sym_for] = ACTIONS(3220), + [anon_sym_gen] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3220), + [anon_sym_impl] = ACTIONS(3220), + [anon_sym_let] = ACTIONS(3220), + [anon_sym_loop] = ACTIONS(3220), + [anon_sym_match] = ACTIONS(3220), + [anon_sym_mod] = ACTIONS(3220), + [anon_sym_pub] = ACTIONS(3220), + [anon_sym_return] = ACTIONS(3220), + [anon_sym_static] = ACTIONS(3220), + [anon_sym_struct] = ACTIONS(3220), + [anon_sym_trait] = ACTIONS(3220), + [anon_sym_type] = ACTIONS(3220), + [anon_sym_union] = ACTIONS(3220), + [anon_sym_unsafe] = ACTIONS(3220), + [anon_sym_use] = ACTIONS(3220), + [anon_sym_while] = ACTIONS(3220), + [anon_sym_extern] = ACTIONS(3220), + [anon_sym_yield] = ACTIONS(3220), + [anon_sym_move] = ACTIONS(3220), + [anon_sym_try] = ACTIONS(3220), + [sym_integer_literal] = ACTIONS(3218), + [aux_sym_string_literal_token1] = ACTIONS(3218), + [sym_char_literal] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3220), + [sym_super] = ACTIONS(3220), + [sym_crate] = ACTIONS(3220), + [sym_metavariable] = ACTIONS(3218), + [sym__raw_string_literal_start] = ACTIONS(3218), + [sym_float_literal] = ACTIONS(3218), + }, + [STATE(832)] = { + [sym_line_comment] = STATE(832), + [sym_block_comment] = STATE(832), + [ts_builtin_sym_end] = ACTIONS(3222), + [sym_identifier] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_macro_rules_BANG] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_u8] = ACTIONS(3224), + [anon_sym_i8] = ACTIONS(3224), + [anon_sym_u16] = ACTIONS(3224), + [anon_sym_i16] = ACTIONS(3224), + [anon_sym_u32] = ACTIONS(3224), + [anon_sym_i32] = ACTIONS(3224), + [anon_sym_u64] = ACTIONS(3224), + [anon_sym_i64] = ACTIONS(3224), + [anon_sym_u128] = ACTIONS(3224), + [anon_sym_i128] = ACTIONS(3224), + [anon_sym_isize] = ACTIONS(3224), + [anon_sym_usize] = ACTIONS(3224), + [anon_sym_f32] = ACTIONS(3224), + [anon_sym_f64] = ACTIONS(3224), + [anon_sym_bool] = ACTIONS(3224), + [anon_sym_str] = ACTIONS(3224), + [anon_sym_char] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym_PIPE] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_POUND] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), + [anon_sym_fn] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_loop] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3224), + [anon_sym_mod] = ACTIONS(3224), + [anon_sym_pub] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_struct] = ACTIONS(3224), + [anon_sym_trait] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(3224), + [anon_sym_use] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_extern] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_move] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [sym_integer_literal] = ACTIONS(3222), + [aux_sym_string_literal_token1] = ACTIONS(3222), + [sym_char_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3224), + [anon_sym_false] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3222), + [sym__raw_string_literal_start] = ACTIONS(3222), + [sym_float_literal] = ACTIONS(3222), + }, + [STATE(833)] = { + [sym_line_comment] = STATE(833), + [sym_block_comment] = STATE(833), + [ts_builtin_sym_end] = ACTIONS(3226), + [sym_identifier] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym_macro_rules_BANG] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_RBRACE] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_u8] = ACTIONS(3228), + [anon_sym_i8] = ACTIONS(3228), + [anon_sym_u16] = ACTIONS(3228), + [anon_sym_i16] = ACTIONS(3228), + [anon_sym_u32] = ACTIONS(3228), + [anon_sym_i32] = ACTIONS(3228), + [anon_sym_u64] = ACTIONS(3228), + [anon_sym_i64] = ACTIONS(3228), + [anon_sym_u128] = ACTIONS(3228), + [anon_sym_i128] = ACTIONS(3228), + [anon_sym_isize] = ACTIONS(3228), + [anon_sym_usize] = ACTIONS(3228), + [anon_sym_f32] = ACTIONS(3228), + [anon_sym_f64] = ACTIONS(3228), + [anon_sym_bool] = ACTIONS(3228), + [anon_sym_str] = ACTIONS(3228), + [anon_sym_char] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_POUND] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_async] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_enum] = ACTIONS(3228), + [anon_sym_fn] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_gen] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_impl] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_loop] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3228), + [anon_sym_mod] = ACTIONS(3228), + [anon_sym_pub] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3228), + [anon_sym_struct] = ACTIONS(3228), + [anon_sym_trait] = ACTIONS(3228), + [anon_sym_type] = ACTIONS(3228), + [anon_sym_union] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(3228), + [anon_sym_use] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_extern] = ACTIONS(3228), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_move] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [sym_integer_literal] = ACTIONS(3226), + [aux_sym_string_literal_token1] = ACTIONS(3226), + [sym_char_literal] = ACTIONS(3226), + [anon_sym_true] = ACTIONS(3228), + [anon_sym_false] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3228), + [sym_super] = ACTIONS(3228), + [sym_crate] = ACTIONS(3228), + [sym_metavariable] = ACTIONS(3226), + [sym__raw_string_literal_start] = ACTIONS(3226), + [sym_float_literal] = ACTIONS(3226), + }, + [STATE(834)] = { + [sym_line_comment] = STATE(834), + [sym_block_comment] = STATE(834), + [ts_builtin_sym_end] = ACTIONS(3230), + [sym_identifier] = ACTIONS(3232), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_macro_rules_BANG] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_u8] = ACTIONS(3232), + [anon_sym_i8] = ACTIONS(3232), + [anon_sym_u16] = ACTIONS(3232), + [anon_sym_i16] = ACTIONS(3232), + [anon_sym_u32] = ACTIONS(3232), + [anon_sym_i32] = ACTIONS(3232), + [anon_sym_u64] = ACTIONS(3232), + [anon_sym_i64] = ACTIONS(3232), + [anon_sym_u128] = ACTIONS(3232), + [anon_sym_i128] = ACTIONS(3232), + [anon_sym_isize] = ACTIONS(3232), + [anon_sym_usize] = ACTIONS(3232), + [anon_sym_f32] = ACTIONS(3232), + [anon_sym_f64] = ACTIONS(3232), + [anon_sym_bool] = ACTIONS(3232), + [anon_sym_str] = ACTIONS(3232), + [anon_sym_char] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_POUND] = ACTIONS(3230), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_async] = ACTIONS(3232), + [anon_sym_break] = ACTIONS(3232), + [anon_sym_const] = ACTIONS(3232), + [anon_sym_continue] = ACTIONS(3232), + [anon_sym_default] = ACTIONS(3232), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_fn] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3232), + [anon_sym_gen] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3232), + [anon_sym_impl] = ACTIONS(3232), + [anon_sym_let] = ACTIONS(3232), + [anon_sym_loop] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3232), + [anon_sym_mod] = ACTIONS(3232), + [anon_sym_pub] = ACTIONS(3232), + [anon_sym_return] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3232), + [anon_sym_struct] = ACTIONS(3232), + [anon_sym_trait] = ACTIONS(3232), + [anon_sym_type] = ACTIONS(3232), + [anon_sym_union] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_use] = ACTIONS(3232), + [anon_sym_while] = ACTIONS(3232), + [anon_sym_extern] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3232), + [anon_sym_move] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3232), + [sym_integer_literal] = ACTIONS(3230), + [aux_sym_string_literal_token1] = ACTIONS(3230), + [sym_char_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3232), + [anon_sym_false] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3230), + [sym__raw_string_literal_start] = ACTIONS(3230), + [sym_float_literal] = ACTIONS(3230), + }, + [STATE(835)] = { + [sym_line_comment] = STATE(835), + [sym_block_comment] = STATE(835), + [ts_builtin_sym_end] = ACTIONS(3234), + [sym_identifier] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3234), + [anon_sym_macro_rules_BANG] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [anon_sym_u8] = ACTIONS(3236), + [anon_sym_i8] = ACTIONS(3236), + [anon_sym_u16] = ACTIONS(3236), + [anon_sym_i16] = ACTIONS(3236), + [anon_sym_u32] = ACTIONS(3236), + [anon_sym_i32] = ACTIONS(3236), + [anon_sym_u64] = ACTIONS(3236), + [anon_sym_i64] = ACTIONS(3236), + [anon_sym_u128] = ACTIONS(3236), + [anon_sym_i128] = ACTIONS(3236), + [anon_sym_isize] = ACTIONS(3236), + [anon_sym_usize] = ACTIONS(3236), + [anon_sym_f32] = ACTIONS(3236), + [anon_sym_f64] = ACTIONS(3236), + [anon_sym_bool] = ACTIONS(3236), + [anon_sym_str] = ACTIONS(3236), + [anon_sym_char] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_AMP] = ACTIONS(3234), + [anon_sym_PIPE] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_DOT_DOT] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3234), + [anon_sym_POUND] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3236), + [anon_sym_async] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_default] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3236), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3236), + [anon_sym_gen] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_impl] = ACTIONS(3236), + [anon_sym_let] = ACTIONS(3236), + [anon_sym_loop] = ACTIONS(3236), + [anon_sym_match] = ACTIONS(3236), + [anon_sym_mod] = ACTIONS(3236), + [anon_sym_pub] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_trait] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3236), + [anon_sym_unsafe] = ACTIONS(3236), + [anon_sym_use] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_extern] = ACTIONS(3236), + [anon_sym_yield] = ACTIONS(3236), + [anon_sym_move] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [sym_integer_literal] = ACTIONS(3234), + [aux_sym_string_literal_token1] = ACTIONS(3234), + [sym_char_literal] = ACTIONS(3234), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3234), + [sym__raw_string_literal_start] = ACTIONS(3234), + [sym_float_literal] = ACTIONS(3234), + }, + [STATE(836)] = { + [sym_line_comment] = STATE(836), + [sym_block_comment] = STATE(836), + [ts_builtin_sym_end] = ACTIONS(3238), + [sym_identifier] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_macro_rules_BANG] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_u8] = ACTIONS(3240), + [anon_sym_i8] = ACTIONS(3240), + [anon_sym_u16] = ACTIONS(3240), + [anon_sym_i16] = ACTIONS(3240), + [anon_sym_u32] = ACTIONS(3240), + [anon_sym_i32] = ACTIONS(3240), + [anon_sym_u64] = ACTIONS(3240), + [anon_sym_i64] = ACTIONS(3240), + [anon_sym_u128] = ACTIONS(3240), + [anon_sym_i128] = ACTIONS(3240), + [anon_sym_isize] = ACTIONS(3240), + [anon_sym_usize] = ACTIONS(3240), + [anon_sym_f32] = ACTIONS(3240), + [anon_sym_f64] = ACTIONS(3240), + [anon_sym_bool] = ACTIONS(3240), + [anon_sym_str] = ACTIONS(3240), + [anon_sym_char] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_PIPE] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3238), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_POUND] = ACTIONS(3238), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_async] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_default] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), + [anon_sym_fn] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_gen] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_let] = ACTIONS(3240), + [anon_sym_loop] = ACTIONS(3240), + [anon_sym_match] = ACTIONS(3240), + [anon_sym_mod] = ACTIONS(3240), + [anon_sym_pub] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_struct] = ACTIONS(3240), + [anon_sym_trait] = ACTIONS(3240), + [anon_sym_type] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3240), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_use] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3240), + [anon_sym_extern] = ACTIONS(3240), + [anon_sym_yield] = ACTIONS(3240), + [anon_sym_move] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3238), + [aux_sym_string_literal_token1] = ACTIONS(3238), + [sym_char_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3240), + [sym_super] = ACTIONS(3240), + [sym_crate] = ACTIONS(3240), + [sym_metavariable] = ACTIONS(3238), + [sym__raw_string_literal_start] = ACTIONS(3238), + [sym_float_literal] = ACTIONS(3238), + }, + [STATE(837)] = { + [sym_line_comment] = STATE(837), + [sym_block_comment] = STATE(837), + [ts_builtin_sym_end] = ACTIONS(3242), + [sym_identifier] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym_macro_rules_BANG] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_u8] = ACTIONS(3244), + [anon_sym_i8] = ACTIONS(3244), + [anon_sym_u16] = ACTIONS(3244), + [anon_sym_i16] = ACTIONS(3244), + [anon_sym_u32] = ACTIONS(3244), + [anon_sym_i32] = ACTIONS(3244), + [anon_sym_u64] = ACTIONS(3244), + [anon_sym_i64] = ACTIONS(3244), + [anon_sym_u128] = ACTIONS(3244), + [anon_sym_i128] = ACTIONS(3244), + [anon_sym_isize] = ACTIONS(3244), + [anon_sym_usize] = ACTIONS(3244), + [anon_sym_f32] = ACTIONS(3244), + [anon_sym_f64] = ACTIONS(3244), + [anon_sym_bool] = ACTIONS(3244), + [anon_sym_str] = ACTIONS(3244), + [anon_sym_char] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_DOT_DOT] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_POUND] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3244), + [anon_sym_async] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_default] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), + [anon_sym_fn] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3244), + [anon_sym_gen] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_impl] = ACTIONS(3244), + [anon_sym_let] = ACTIONS(3244), + [anon_sym_loop] = ACTIONS(3244), + [anon_sym_match] = ACTIONS(3244), + [anon_sym_mod] = ACTIONS(3244), + [anon_sym_pub] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3244), + [anon_sym_trait] = ACTIONS(3244), + [anon_sym_type] = ACTIONS(3244), + [anon_sym_union] = ACTIONS(3244), + [anon_sym_unsafe] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_extern] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3244), + [anon_sym_move] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [sym_integer_literal] = ACTIONS(3242), + [aux_sym_string_literal_token1] = ACTIONS(3242), + [sym_char_literal] = ACTIONS(3242), + [anon_sym_true] = ACTIONS(3244), + [anon_sym_false] = ACTIONS(3244), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3244), + [sym_super] = ACTIONS(3244), + [sym_crate] = ACTIONS(3244), + [sym_metavariable] = ACTIONS(3242), + [sym__raw_string_literal_start] = ACTIONS(3242), + [sym_float_literal] = ACTIONS(3242), + }, + [STATE(838)] = { + [sym_line_comment] = STATE(838), + [sym_block_comment] = STATE(838), + [ts_builtin_sym_end] = ACTIONS(3246), + [sym_identifier] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_macro_rules_BANG] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_DOT_DOT] = ACTIONS(3246), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_POUND] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_async] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_default] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_fn] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_gen] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_impl] = ACTIONS(3248), + [anon_sym_let] = ACTIONS(3248), + [anon_sym_loop] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3248), + [anon_sym_mod] = ACTIONS(3248), + [anon_sym_pub] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3248), + [anon_sym_trait] = ACTIONS(3248), + [anon_sym_type] = ACTIONS(3248), + [anon_sym_union] = ACTIONS(3248), + [anon_sym_unsafe] = ACTIONS(3248), + [anon_sym_use] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_extern] = ACTIONS(3248), + [anon_sym_yield] = ACTIONS(3248), + [anon_sym_move] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [sym_integer_literal] = ACTIONS(3246), + [aux_sym_string_literal_token1] = ACTIONS(3246), + [sym_char_literal] = ACTIONS(3246), + [anon_sym_true] = ACTIONS(3248), + [anon_sym_false] = ACTIONS(3248), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3248), + [sym_super] = ACTIONS(3248), + [sym_crate] = ACTIONS(3248), + [sym_metavariable] = ACTIONS(3246), + [sym__raw_string_literal_start] = ACTIONS(3246), + [sym_float_literal] = ACTIONS(3246), + }, + [STATE(839)] = { + [sym_line_comment] = STATE(839), + [sym_block_comment] = STATE(839), + [ts_builtin_sym_end] = ACTIONS(3250), + [sym_identifier] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_macro_rules_BANG] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_u8] = ACTIONS(3252), + [anon_sym_i8] = ACTIONS(3252), + [anon_sym_u16] = ACTIONS(3252), + [anon_sym_i16] = ACTIONS(3252), + [anon_sym_u32] = ACTIONS(3252), + [anon_sym_i32] = ACTIONS(3252), + [anon_sym_u64] = ACTIONS(3252), + [anon_sym_i64] = ACTIONS(3252), + [anon_sym_u128] = ACTIONS(3252), + [anon_sym_i128] = ACTIONS(3252), + [anon_sym_isize] = ACTIONS(3252), + [anon_sym_usize] = ACTIONS(3252), + [anon_sym_f32] = ACTIONS(3252), + [anon_sym_f64] = ACTIONS(3252), + [anon_sym_bool] = ACTIONS(3252), + [anon_sym_str] = ACTIONS(3252), + [anon_sym_char] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_DOT_DOT] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_POUND] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_default] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), + [anon_sym_fn] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_gen] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_impl] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_loop] = ACTIONS(3252), + [anon_sym_match] = ACTIONS(3252), + [anon_sym_mod] = ACTIONS(3252), + [anon_sym_pub] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_trait] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3252), + [anon_sym_unsafe] = ACTIONS(3252), + [anon_sym_use] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_extern] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_move] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [sym_integer_literal] = ACTIONS(3250), + [aux_sym_string_literal_token1] = ACTIONS(3250), + [sym_char_literal] = ACTIONS(3250), + [anon_sym_true] = ACTIONS(3252), + [anon_sym_false] = ACTIONS(3252), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_crate] = ACTIONS(3252), + [sym_metavariable] = ACTIONS(3250), + [sym__raw_string_literal_start] = ACTIONS(3250), + [sym_float_literal] = ACTIONS(3250), + }, + [STATE(840)] = { + [sym_line_comment] = STATE(840), + [sym_block_comment] = STATE(840), + [ts_builtin_sym_end] = ACTIONS(3254), + [sym_identifier] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_macro_rules_BANG] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_u8] = ACTIONS(3256), + [anon_sym_i8] = ACTIONS(3256), + [anon_sym_u16] = ACTIONS(3256), + [anon_sym_i16] = ACTIONS(3256), + [anon_sym_u32] = ACTIONS(3256), + [anon_sym_i32] = ACTIONS(3256), + [anon_sym_u64] = ACTIONS(3256), + [anon_sym_i64] = ACTIONS(3256), + [anon_sym_u128] = ACTIONS(3256), + [anon_sym_i128] = ACTIONS(3256), + [anon_sym_isize] = ACTIONS(3256), + [anon_sym_usize] = ACTIONS(3256), + [anon_sym_f32] = ACTIONS(3256), + [anon_sym_f64] = ACTIONS(3256), + [anon_sym_bool] = ACTIONS(3256), + [anon_sym_str] = ACTIONS(3256), + [anon_sym_char] = ACTIONS(3256), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_AMP] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_DOT_DOT] = ACTIONS(3254), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_POUND] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_async] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_gen] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_impl] = ACTIONS(3256), + [anon_sym_let] = ACTIONS(3256), + [anon_sym_loop] = ACTIONS(3256), + [anon_sym_match] = ACTIONS(3256), + [anon_sym_mod] = ACTIONS(3256), + [anon_sym_pub] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_struct] = ACTIONS(3256), + [anon_sym_trait] = ACTIONS(3256), + [anon_sym_type] = ACTIONS(3256), + [anon_sym_union] = ACTIONS(3256), + [anon_sym_unsafe] = ACTIONS(3256), + [anon_sym_use] = ACTIONS(3256), + [anon_sym_while] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3256), + [anon_sym_yield] = ACTIONS(3256), + [anon_sym_move] = ACTIONS(3256), + [anon_sym_try] = ACTIONS(3256), + [sym_integer_literal] = ACTIONS(3254), + [aux_sym_string_literal_token1] = ACTIONS(3254), + [sym_char_literal] = ACTIONS(3254), + [anon_sym_true] = ACTIONS(3256), + [anon_sym_false] = ACTIONS(3256), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3256), + [sym_super] = ACTIONS(3256), + [sym_crate] = ACTIONS(3256), + [sym_metavariable] = ACTIONS(3254), + [sym__raw_string_literal_start] = ACTIONS(3254), + [sym_float_literal] = ACTIONS(3254), + }, + [STATE(841)] = { + [sym_line_comment] = STATE(841), + [sym_block_comment] = STATE(841), + [ts_builtin_sym_end] = ACTIONS(3258), + [sym_identifier] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym_macro_rules_BANG] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_STAR] = ACTIONS(3258), + [anon_sym_u8] = ACTIONS(3260), + [anon_sym_i8] = ACTIONS(3260), + [anon_sym_u16] = ACTIONS(3260), + [anon_sym_i16] = ACTIONS(3260), + [anon_sym_u32] = ACTIONS(3260), + [anon_sym_i32] = ACTIONS(3260), + [anon_sym_u64] = ACTIONS(3260), + [anon_sym_i64] = ACTIONS(3260), + [anon_sym_u128] = ACTIONS(3260), + [anon_sym_i128] = ACTIONS(3260), + [anon_sym_isize] = ACTIONS(3260), + [anon_sym_usize] = ACTIONS(3260), + [anon_sym_f32] = ACTIONS(3260), + [anon_sym_f64] = ACTIONS(3260), + [anon_sym_bool] = ACTIONS(3260), + [anon_sym_str] = ACTIONS(3260), + [anon_sym_char] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3258), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_DOT_DOT] = ACTIONS(3258), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym_POUND] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_async] = ACTIONS(3260), + [anon_sym_break] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_continue] = ACTIONS(3260), + [anon_sym_default] = ACTIONS(3260), + [anon_sym_enum] = ACTIONS(3260), + [anon_sym_fn] = ACTIONS(3260), + [anon_sym_for] = ACTIONS(3260), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_if] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3260), + [anon_sym_let] = ACTIONS(3260), + [anon_sym_loop] = ACTIONS(3260), + [anon_sym_match] = ACTIONS(3260), + [anon_sym_mod] = ACTIONS(3260), + [anon_sym_pub] = ACTIONS(3260), + [anon_sym_return] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_struct] = ACTIONS(3260), + [anon_sym_trait] = ACTIONS(3260), + [anon_sym_type] = ACTIONS(3260), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(3260), + [anon_sym_use] = ACTIONS(3260), + [anon_sym_while] = ACTIONS(3260), + [anon_sym_extern] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3260), + [anon_sym_move] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3260), + [sym_integer_literal] = ACTIONS(3258), + [aux_sym_string_literal_token1] = ACTIONS(3258), + [sym_char_literal] = ACTIONS(3258), + [anon_sym_true] = ACTIONS(3260), + [anon_sym_false] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3260), + [sym_super] = ACTIONS(3260), + [sym_crate] = ACTIONS(3260), + [sym_metavariable] = ACTIONS(3258), + [sym__raw_string_literal_start] = ACTIONS(3258), + [sym_float_literal] = ACTIONS(3258), + }, + [STATE(842)] = { + [sym_line_comment] = STATE(842), + [sym_block_comment] = STATE(842), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_macro_rules_BANG] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_u8] = ACTIONS(3264), + [anon_sym_i8] = ACTIONS(3264), + [anon_sym_u16] = ACTIONS(3264), + [anon_sym_i16] = ACTIONS(3264), + [anon_sym_u32] = ACTIONS(3264), + [anon_sym_i32] = ACTIONS(3264), + [anon_sym_u64] = ACTIONS(3264), + [anon_sym_i64] = ACTIONS(3264), + [anon_sym_u128] = ACTIONS(3264), + [anon_sym_i128] = ACTIONS(3264), + [anon_sym_isize] = ACTIONS(3264), + [anon_sym_usize] = ACTIONS(3264), + [anon_sym_f32] = ACTIONS(3264), + [anon_sym_f64] = ACTIONS(3264), + [anon_sym_bool] = ACTIONS(3264), + [anon_sym_str] = ACTIONS(3264), + [anon_sym_char] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_DOT_DOT] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3262), + [anon_sym_POUND] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_const] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_enum] = ACTIONS(3264), + [anon_sym_fn] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_gen] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_impl] = ACTIONS(3264), + [anon_sym_let] = ACTIONS(3264), + [anon_sym_loop] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_mod] = ACTIONS(3264), + [anon_sym_pub] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_static] = ACTIONS(3264), + [anon_sym_struct] = ACTIONS(3264), + [anon_sym_trait] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_union] = ACTIONS(3264), + [anon_sym_unsafe] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_extern] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [sym_integer_literal] = ACTIONS(3262), + [aux_sym_string_literal_token1] = ACTIONS(3262), + [sym_char_literal] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3264), + [sym_super] = ACTIONS(3264), + [sym_crate] = ACTIONS(3264), + [sym_metavariable] = ACTIONS(3262), + [sym__raw_string_literal_start] = ACTIONS(3262), + [sym_float_literal] = ACTIONS(3262), + }, + [STATE(843)] = { + [sym_line_comment] = STATE(843), + [sym_block_comment] = STATE(843), + [ts_builtin_sym_end] = ACTIONS(3266), + [sym_identifier] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_macro_rules_BANG] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_u8] = ACTIONS(3268), + [anon_sym_i8] = ACTIONS(3268), + [anon_sym_u16] = ACTIONS(3268), + [anon_sym_i16] = ACTIONS(3268), + [anon_sym_u32] = ACTIONS(3268), + [anon_sym_i32] = ACTIONS(3268), + [anon_sym_u64] = ACTIONS(3268), + [anon_sym_i64] = ACTIONS(3268), + [anon_sym_u128] = ACTIONS(3268), + [anon_sym_i128] = ACTIONS(3268), + [anon_sym_isize] = ACTIONS(3268), + [anon_sym_usize] = ACTIONS(3268), + [anon_sym_f32] = ACTIONS(3268), + [anon_sym_f64] = ACTIONS(3268), + [anon_sym_bool] = ACTIONS(3268), + [anon_sym_str] = ACTIONS(3268), + [anon_sym_char] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(3266), + [anon_sym_POUND] = ACTIONS(3266), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_async] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_default] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), + [anon_sym_fn] = ACTIONS(3268), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_gen] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_impl] = ACTIONS(3268), + [anon_sym_let] = ACTIONS(3268), + [anon_sym_loop] = ACTIONS(3268), + [anon_sym_match] = ACTIONS(3268), + [anon_sym_mod] = ACTIONS(3268), + [anon_sym_pub] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_struct] = ACTIONS(3268), + [anon_sym_trait] = ACTIONS(3268), + [anon_sym_type] = ACTIONS(3268), + [anon_sym_union] = ACTIONS(3268), + [anon_sym_unsafe] = ACTIONS(3268), + [anon_sym_use] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_extern] = ACTIONS(3268), + [anon_sym_yield] = ACTIONS(3268), + [anon_sym_move] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [sym_integer_literal] = ACTIONS(3266), + [aux_sym_string_literal_token1] = ACTIONS(3266), + [sym_char_literal] = ACTIONS(3266), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3266), + [sym__raw_string_literal_start] = ACTIONS(3266), + [sym_float_literal] = ACTIONS(3266), + }, + [STATE(844)] = { + [sym_line_comment] = STATE(844), + [sym_block_comment] = STATE(844), + [ts_builtin_sym_end] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym_macro_rules_BANG] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_u8] = ACTIONS(3272), + [anon_sym_i8] = ACTIONS(3272), + [anon_sym_u16] = ACTIONS(3272), + [anon_sym_i16] = ACTIONS(3272), + [anon_sym_u32] = ACTIONS(3272), + [anon_sym_i32] = ACTIONS(3272), + [anon_sym_u64] = ACTIONS(3272), + [anon_sym_i64] = ACTIONS(3272), + [anon_sym_u128] = ACTIONS(3272), + [anon_sym_i128] = ACTIONS(3272), + [anon_sym_isize] = ACTIONS(3272), + [anon_sym_usize] = ACTIONS(3272), + [anon_sym_f32] = ACTIONS(3272), + [anon_sym_f64] = ACTIONS(3272), + [anon_sym_bool] = ACTIONS(3272), + [anon_sym_str] = ACTIONS(3272), + [anon_sym_char] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_DOT_DOT] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3270), + [anon_sym_POUND] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_default] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), + [anon_sym_fn] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_gen] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_impl] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_loop] = ACTIONS(3272), + [anon_sym_match] = ACTIONS(3272), + [anon_sym_mod] = ACTIONS(3272), + [anon_sym_pub] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_struct] = ACTIONS(3272), + [anon_sym_trait] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_union] = ACTIONS(3272), + [anon_sym_unsafe] = ACTIONS(3272), + [anon_sym_use] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_extern] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_move] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3270), + [aux_sym_string_literal_token1] = ACTIONS(3270), + [sym_char_literal] = ACTIONS(3270), + [anon_sym_true] = ACTIONS(3272), + [anon_sym_false] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_crate] = ACTIONS(3272), + [sym_metavariable] = ACTIONS(3270), + [sym__raw_string_literal_start] = ACTIONS(3270), + [sym_float_literal] = ACTIONS(3270), + }, + [STATE(845)] = { + [sym_line_comment] = STATE(845), + [sym_block_comment] = STATE(845), + [ts_builtin_sym_end] = ACTIONS(3274), + [sym_identifier] = ACTIONS(3276), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_macro_rules_BANG] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_u8] = ACTIONS(3276), + [anon_sym_i8] = ACTIONS(3276), + [anon_sym_u16] = ACTIONS(3276), + [anon_sym_i16] = ACTIONS(3276), + [anon_sym_u32] = ACTIONS(3276), + [anon_sym_i32] = ACTIONS(3276), + [anon_sym_u64] = ACTIONS(3276), + [anon_sym_i64] = ACTIONS(3276), + [anon_sym_u128] = ACTIONS(3276), + [anon_sym_i128] = ACTIONS(3276), + [anon_sym_isize] = ACTIONS(3276), + [anon_sym_usize] = ACTIONS(3276), + [anon_sym_f32] = ACTIONS(3276), + [anon_sym_f64] = ACTIONS(3276), + [anon_sym_bool] = ACTIONS(3276), + [anon_sym_str] = ACTIONS(3276), + [anon_sym_char] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_PIPE] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3274), + [anon_sym_DOT_DOT] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3274), + [anon_sym_POUND] = ACTIONS(3274), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_async] = ACTIONS(3276), + [anon_sym_break] = ACTIONS(3276), + [anon_sym_const] = ACTIONS(3276), + [anon_sym_continue] = ACTIONS(3276), + [anon_sym_default] = ACTIONS(3276), + [anon_sym_enum] = ACTIONS(3276), + [anon_sym_fn] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3276), + [anon_sym_gen] = ACTIONS(3276), + [anon_sym_if] = ACTIONS(3276), + [anon_sym_impl] = ACTIONS(3276), + [anon_sym_let] = ACTIONS(3276), + [anon_sym_loop] = ACTIONS(3276), + [anon_sym_match] = ACTIONS(3276), + [anon_sym_mod] = ACTIONS(3276), + [anon_sym_pub] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3276), + [anon_sym_struct] = ACTIONS(3276), + [anon_sym_trait] = ACTIONS(3276), + [anon_sym_type] = ACTIONS(3276), + [anon_sym_union] = ACTIONS(3276), + [anon_sym_unsafe] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3276), + [anon_sym_while] = ACTIONS(3276), + [anon_sym_extern] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3276), + [anon_sym_move] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3276), + [sym_integer_literal] = ACTIONS(3274), + [aux_sym_string_literal_token1] = ACTIONS(3274), + [sym_char_literal] = ACTIONS(3274), + [anon_sym_true] = ACTIONS(3276), + [anon_sym_false] = ACTIONS(3276), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3276), + [sym_super] = ACTIONS(3276), + [sym_crate] = ACTIONS(3276), + [sym_metavariable] = ACTIONS(3274), + [sym__raw_string_literal_start] = ACTIONS(3274), + [sym_float_literal] = ACTIONS(3274), + }, + [STATE(846)] = { + [sym_line_comment] = STATE(846), + [sym_block_comment] = STATE(846), + [ts_builtin_sym_end] = ACTIONS(3278), + [sym_identifier] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3278), + [anon_sym_macro_rules_BANG] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3278), + [anon_sym_RBRACE] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3278), + [anon_sym_u8] = ACTIONS(3280), + [anon_sym_i8] = ACTIONS(3280), + [anon_sym_u16] = ACTIONS(3280), + [anon_sym_i16] = ACTIONS(3280), + [anon_sym_u32] = ACTIONS(3280), + [anon_sym_i32] = ACTIONS(3280), + [anon_sym_u64] = ACTIONS(3280), + [anon_sym_i64] = ACTIONS(3280), + [anon_sym_u128] = ACTIONS(3280), + [anon_sym_i128] = ACTIONS(3280), + [anon_sym_isize] = ACTIONS(3280), + [anon_sym_usize] = ACTIONS(3280), + [anon_sym_f32] = ACTIONS(3280), + [anon_sym_f64] = ACTIONS(3280), + [anon_sym_bool] = ACTIONS(3280), + [anon_sym_str] = ACTIONS(3280), + [anon_sym_char] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_AMP] = ACTIONS(3278), + [anon_sym_PIPE] = ACTIONS(3278), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_DOT_DOT] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3278), + [anon_sym_POUND] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_async] = ACTIONS(3280), + [anon_sym_break] = ACTIONS(3280), + [anon_sym_const] = ACTIONS(3280), + [anon_sym_continue] = ACTIONS(3280), + [anon_sym_default] = ACTIONS(3280), + [anon_sym_enum] = ACTIONS(3280), + [anon_sym_fn] = ACTIONS(3280), + [anon_sym_for] = ACTIONS(3280), + [anon_sym_gen] = ACTIONS(3280), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_impl] = ACTIONS(3280), + [anon_sym_let] = ACTIONS(3280), + [anon_sym_loop] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3280), + [anon_sym_mod] = ACTIONS(3280), + [anon_sym_pub] = ACTIONS(3280), + [anon_sym_return] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3280), + [anon_sym_struct] = ACTIONS(3280), + [anon_sym_trait] = ACTIONS(3280), + [anon_sym_type] = ACTIONS(3280), + [anon_sym_union] = ACTIONS(3280), + [anon_sym_unsafe] = ACTIONS(3280), + [anon_sym_use] = ACTIONS(3280), + [anon_sym_while] = ACTIONS(3280), + [anon_sym_extern] = ACTIONS(3280), + [anon_sym_yield] = ACTIONS(3280), + [anon_sym_move] = ACTIONS(3280), + [anon_sym_try] = ACTIONS(3280), + [sym_integer_literal] = ACTIONS(3278), + [aux_sym_string_literal_token1] = ACTIONS(3278), + [sym_char_literal] = ACTIONS(3278), + [anon_sym_true] = ACTIONS(3280), + [anon_sym_false] = ACTIONS(3280), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3280), + [sym_super] = ACTIONS(3280), + [sym_crate] = ACTIONS(3280), + [sym_metavariable] = ACTIONS(3278), + [sym__raw_string_literal_start] = ACTIONS(3278), + [sym_float_literal] = ACTIONS(3278), + }, + [STATE(847)] = { + [sym_line_comment] = STATE(847), + [sym_block_comment] = STATE(847), + [ts_builtin_sym_end] = ACTIONS(3282), + [sym_identifier] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3282), + [anon_sym_macro_rules_BANG] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_STAR] = ACTIONS(3282), + [anon_sym_u8] = ACTIONS(3284), + [anon_sym_i8] = ACTIONS(3284), + [anon_sym_u16] = ACTIONS(3284), + [anon_sym_i16] = ACTIONS(3284), + [anon_sym_u32] = ACTIONS(3284), + [anon_sym_i32] = ACTIONS(3284), + [anon_sym_u64] = ACTIONS(3284), + [anon_sym_i64] = ACTIONS(3284), + [anon_sym_u128] = ACTIONS(3284), + [anon_sym_i128] = ACTIONS(3284), + [anon_sym_isize] = ACTIONS(3284), + [anon_sym_usize] = ACTIONS(3284), + [anon_sym_f32] = ACTIONS(3284), + [anon_sym_f64] = ACTIONS(3284), + [anon_sym_bool] = ACTIONS(3284), + [anon_sym_str] = ACTIONS(3284), + [anon_sym_char] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3282), + [anon_sym_AMP] = ACTIONS(3282), + [anon_sym_PIPE] = ACTIONS(3282), + [anon_sym_LT] = ACTIONS(3282), + [anon_sym_DOT_DOT] = ACTIONS(3282), + [anon_sym_COLON_COLON] = ACTIONS(3282), + [anon_sym_POUND] = ACTIONS(3282), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_async] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_const] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_default] = ACTIONS(3284), + [anon_sym_enum] = ACTIONS(3284), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_for] = ACTIONS(3284), + [anon_sym_gen] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_impl] = ACTIONS(3284), + [anon_sym_let] = ACTIONS(3284), + [anon_sym_loop] = ACTIONS(3284), + [anon_sym_match] = ACTIONS(3284), + [anon_sym_mod] = ACTIONS(3284), + [anon_sym_pub] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_static] = ACTIONS(3284), + [anon_sym_struct] = ACTIONS(3284), + [anon_sym_trait] = ACTIONS(3284), + [anon_sym_type] = ACTIONS(3284), + [anon_sym_union] = ACTIONS(3284), + [anon_sym_unsafe] = ACTIONS(3284), + [anon_sym_use] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_extern] = ACTIONS(3284), + [anon_sym_yield] = ACTIONS(3284), + [anon_sym_move] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [sym_integer_literal] = ACTIONS(3282), + [aux_sym_string_literal_token1] = ACTIONS(3282), + [sym_char_literal] = ACTIONS(3282), + [anon_sym_true] = ACTIONS(3284), + [anon_sym_false] = ACTIONS(3284), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3284), + [sym_super] = ACTIONS(3284), + [sym_crate] = ACTIONS(3284), + [sym_metavariable] = ACTIONS(3282), + [sym__raw_string_literal_start] = ACTIONS(3282), + [sym_float_literal] = ACTIONS(3282), + }, + [STATE(848)] = { + [sym_line_comment] = STATE(848), + [sym_block_comment] = STATE(848), + [ts_builtin_sym_end] = ACTIONS(3286), + [sym_identifier] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3286), + [anon_sym_macro_rules_BANG] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_u8] = ACTIONS(3288), + [anon_sym_i8] = ACTIONS(3288), + [anon_sym_u16] = ACTIONS(3288), + [anon_sym_i16] = ACTIONS(3288), + [anon_sym_u32] = ACTIONS(3288), + [anon_sym_i32] = ACTIONS(3288), + [anon_sym_u64] = ACTIONS(3288), + [anon_sym_i64] = ACTIONS(3288), + [anon_sym_u128] = ACTIONS(3288), + [anon_sym_i128] = ACTIONS(3288), + [anon_sym_isize] = ACTIONS(3288), + [anon_sym_usize] = ACTIONS(3288), + [anon_sym_f32] = ACTIONS(3288), + [anon_sym_f64] = ACTIONS(3288), + [anon_sym_bool] = ACTIONS(3288), + [anon_sym_str] = ACTIONS(3288), + [anon_sym_char] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_PIPE] = ACTIONS(3286), + [anon_sym_LT] = ACTIONS(3286), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_POUND] = ACTIONS(3286), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_const] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_default] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), + [anon_sym_fn] = ACTIONS(3288), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_gen] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_impl] = ACTIONS(3288), + [anon_sym_let] = ACTIONS(3288), + [anon_sym_loop] = ACTIONS(3288), + [anon_sym_match] = ACTIONS(3288), + [anon_sym_mod] = ACTIONS(3288), + [anon_sym_pub] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(3288), + [anon_sym_trait] = ACTIONS(3288), + [anon_sym_type] = ACTIONS(3288), + [anon_sym_union] = ACTIONS(3288), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_use] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_extern] = ACTIONS(3288), + [anon_sym_yield] = ACTIONS(3288), + [anon_sym_move] = ACTIONS(3288), + [anon_sym_try] = ACTIONS(3288), + [sym_integer_literal] = ACTIONS(3286), + [aux_sym_string_literal_token1] = ACTIONS(3286), + [sym_char_literal] = ACTIONS(3286), + [anon_sym_true] = ACTIONS(3288), + [anon_sym_false] = ACTIONS(3288), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3288), + [sym_super] = ACTIONS(3288), + [sym_crate] = ACTIONS(3288), + [sym_metavariable] = ACTIONS(3286), + [sym__raw_string_literal_start] = ACTIONS(3286), + [sym_float_literal] = ACTIONS(3286), + }, + [STATE(849)] = { + [sym_line_comment] = STATE(849), + [sym_block_comment] = STATE(849), + [ts_builtin_sym_end] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3292), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_macro_rules_BANG] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3290), + [anon_sym_u8] = ACTIONS(3292), + [anon_sym_i8] = ACTIONS(3292), + [anon_sym_u16] = ACTIONS(3292), + [anon_sym_i16] = ACTIONS(3292), + [anon_sym_u32] = ACTIONS(3292), + [anon_sym_i32] = ACTIONS(3292), + [anon_sym_u64] = ACTIONS(3292), + [anon_sym_i64] = ACTIONS(3292), + [anon_sym_u128] = ACTIONS(3292), + [anon_sym_i128] = ACTIONS(3292), + [anon_sym_isize] = ACTIONS(3292), + [anon_sym_usize] = ACTIONS(3292), + [anon_sym_f32] = ACTIONS(3292), + [anon_sym_f64] = ACTIONS(3292), + [anon_sym_bool] = ACTIONS(3292), + [anon_sym_str] = ACTIONS(3292), + [anon_sym_char] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3290), + [anon_sym_AMP] = ACTIONS(3290), + [anon_sym_PIPE] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3290), + [anon_sym_DOT_DOT] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(3290), + [anon_sym_POUND] = ACTIONS(3290), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_async] = ACTIONS(3292), + [anon_sym_break] = ACTIONS(3292), + [anon_sym_const] = ACTIONS(3292), + [anon_sym_continue] = ACTIONS(3292), + [anon_sym_default] = ACTIONS(3292), + [anon_sym_enum] = ACTIONS(3292), + [anon_sym_fn] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_gen] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_impl] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_loop] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_mod] = ACTIONS(3292), + [anon_sym_pub] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_static] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3292), + [anon_sym_trait] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_union] = ACTIONS(3292), + [anon_sym_unsafe] = ACTIONS(3292), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_extern] = ACTIONS(3292), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_move] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [sym_integer_literal] = ACTIONS(3290), + [aux_sym_string_literal_token1] = ACTIONS(3290), + [sym_char_literal] = ACTIONS(3290), + [anon_sym_true] = ACTIONS(3292), + [anon_sym_false] = ACTIONS(3292), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3292), + [sym_super] = ACTIONS(3292), + [sym_crate] = ACTIONS(3292), + [sym_metavariable] = ACTIONS(3290), + [sym__raw_string_literal_start] = ACTIONS(3290), + [sym_float_literal] = ACTIONS(3290), + }, + [STATE(850)] = { + [sym_line_comment] = STATE(850), + [sym_block_comment] = STATE(850), + [ts_builtin_sym_end] = ACTIONS(3294), + [sym_identifier] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3294), + [anon_sym_macro_rules_BANG] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3294), + [anon_sym_RBRACE] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3294), + [anon_sym_u8] = ACTIONS(3296), + [anon_sym_i8] = ACTIONS(3296), + [anon_sym_u16] = ACTIONS(3296), + [anon_sym_i16] = ACTIONS(3296), + [anon_sym_u32] = ACTIONS(3296), + [anon_sym_i32] = ACTIONS(3296), + [anon_sym_u64] = ACTIONS(3296), + [anon_sym_i64] = ACTIONS(3296), + [anon_sym_u128] = ACTIONS(3296), + [anon_sym_i128] = ACTIONS(3296), + [anon_sym_isize] = ACTIONS(3296), + [anon_sym_usize] = ACTIONS(3296), + [anon_sym_f32] = ACTIONS(3296), + [anon_sym_f64] = ACTIONS(3296), + [anon_sym_bool] = ACTIONS(3296), + [anon_sym_str] = ACTIONS(3296), + [anon_sym_char] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym_PIPE] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_DOT_DOT] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3294), + [anon_sym_POUND] = ACTIONS(3294), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_async] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_default] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), + [anon_sym_fn] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_gen] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_impl] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_loop] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_mod] = ACTIONS(3296), + [anon_sym_pub] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3296), + [anon_sym_struct] = ACTIONS(3296), + [anon_sym_trait] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_union] = ACTIONS(3296), + [anon_sym_unsafe] = ACTIONS(3296), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_extern] = ACTIONS(3296), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_move] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [sym_integer_literal] = ACTIONS(3294), + [aux_sym_string_literal_token1] = ACTIONS(3294), + [sym_char_literal] = ACTIONS(3294), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3296), + [sym_super] = ACTIONS(3296), + [sym_crate] = ACTIONS(3296), + [sym_metavariable] = ACTIONS(3294), + [sym__raw_string_literal_start] = ACTIONS(3294), + [sym_float_literal] = ACTIONS(3294), + }, + [STATE(851)] = { + [sym_line_comment] = STATE(851), + [sym_block_comment] = STATE(851), + [ts_builtin_sym_end] = ACTIONS(3298), + [sym_identifier] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_macro_rules_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_u8] = ACTIONS(3300), + [anon_sym_i8] = ACTIONS(3300), + [anon_sym_u16] = ACTIONS(3300), + [anon_sym_i16] = ACTIONS(3300), + [anon_sym_u32] = ACTIONS(3300), + [anon_sym_i32] = ACTIONS(3300), + [anon_sym_u64] = ACTIONS(3300), + [anon_sym_i64] = ACTIONS(3300), + [anon_sym_u128] = ACTIONS(3300), + [anon_sym_i128] = ACTIONS(3300), + [anon_sym_isize] = ACTIONS(3300), + [anon_sym_usize] = ACTIONS(3300), + [anon_sym_f32] = ACTIONS(3300), + [anon_sym_f64] = ACTIONS(3300), + [anon_sym_bool] = ACTIONS(3300), + [anon_sym_str] = ACTIONS(3300), + [anon_sym_char] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3298), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_POUND] = ACTIONS(3298), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_default] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), + [anon_sym_fn] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_gen] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_impl] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_loop] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_mod] = ACTIONS(3300), + [anon_sym_pub] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_struct] = ACTIONS(3300), + [anon_sym_trait] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_union] = ACTIONS(3300), + [anon_sym_unsafe] = ACTIONS(3300), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_extern] = ACTIONS(3300), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_move] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [sym_integer_literal] = ACTIONS(3298), + [aux_sym_string_literal_token1] = ACTIONS(3298), + [sym_char_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3300), + [anon_sym_false] = ACTIONS(3300), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3300), + [sym_super] = ACTIONS(3300), + [sym_crate] = ACTIONS(3300), + [sym_metavariable] = ACTIONS(3298), + [sym__raw_string_literal_start] = ACTIONS(3298), + [sym_float_literal] = ACTIONS(3298), + }, + [STATE(852)] = { + [sym_line_comment] = STATE(852), + [sym_block_comment] = STATE(852), + [ts_builtin_sym_end] = ACTIONS(3302), + [sym_identifier] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_macro_rules_BANG] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3302), + [anon_sym_u8] = ACTIONS(3304), + [anon_sym_i8] = ACTIONS(3304), + [anon_sym_u16] = ACTIONS(3304), + [anon_sym_i16] = ACTIONS(3304), + [anon_sym_u32] = ACTIONS(3304), + [anon_sym_i32] = ACTIONS(3304), + [anon_sym_u64] = ACTIONS(3304), + [anon_sym_i64] = ACTIONS(3304), + [anon_sym_u128] = ACTIONS(3304), + [anon_sym_i128] = ACTIONS(3304), + [anon_sym_isize] = ACTIONS(3304), + [anon_sym_usize] = ACTIONS(3304), + [anon_sym_f32] = ACTIONS(3304), + [anon_sym_f64] = ACTIONS(3304), + [anon_sym_bool] = ACTIONS(3304), + [anon_sym_str] = ACTIONS(3304), + [anon_sym_char] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_PIPE] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_DOT_DOT] = ACTIONS(3302), + [anon_sym_COLON_COLON] = ACTIONS(3302), + [anon_sym_POUND] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_async] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_default] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), + [anon_sym_fn] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_gen] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_impl] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_loop] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_mod] = ACTIONS(3304), + [anon_sym_pub] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3304), + [anon_sym_trait] = ACTIONS(3304), + [anon_sym_type] = ACTIONS(3304), + [anon_sym_union] = ACTIONS(3304), + [anon_sym_unsafe] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_extern] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_move] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [sym_integer_literal] = ACTIONS(3302), + [aux_sym_string_literal_token1] = ACTIONS(3302), + [sym_char_literal] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3304), + [anon_sym_false] = ACTIONS(3304), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3304), + [sym_super] = ACTIONS(3304), + [sym_crate] = ACTIONS(3304), + [sym_metavariable] = ACTIONS(3302), + [sym__raw_string_literal_start] = ACTIONS(3302), + [sym_float_literal] = ACTIONS(3302), + }, + [STATE(853)] = { + [sym_line_comment] = STATE(853), + [sym_block_comment] = STATE(853), + [ts_builtin_sym_end] = ACTIONS(3306), + [sym_identifier] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_macro_rules_BANG] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_u8] = ACTIONS(3308), + [anon_sym_i8] = ACTIONS(3308), + [anon_sym_u16] = ACTIONS(3308), + [anon_sym_i16] = ACTIONS(3308), + [anon_sym_u32] = ACTIONS(3308), + [anon_sym_i32] = ACTIONS(3308), + [anon_sym_u64] = ACTIONS(3308), + [anon_sym_i64] = ACTIONS(3308), + [anon_sym_u128] = ACTIONS(3308), + [anon_sym_i128] = ACTIONS(3308), + [anon_sym_isize] = ACTIONS(3308), + [anon_sym_usize] = ACTIONS(3308), + [anon_sym_f32] = ACTIONS(3308), + [anon_sym_f64] = ACTIONS(3308), + [anon_sym_bool] = ACTIONS(3308), + [anon_sym_str] = ACTIONS(3308), + [anon_sym_char] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_DOT_DOT] = ACTIONS(3306), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_POUND] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_default] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), + [anon_sym_fn] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_gen] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_impl] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_loop] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_mod] = ACTIONS(3308), + [anon_sym_pub] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_struct] = ACTIONS(3308), + [anon_sym_trait] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_union] = ACTIONS(3308), + [anon_sym_unsafe] = ACTIONS(3308), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_extern] = ACTIONS(3308), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_move] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [sym_integer_literal] = ACTIONS(3306), + [aux_sym_string_literal_token1] = ACTIONS(3306), + [sym_char_literal] = ACTIONS(3306), + [anon_sym_true] = ACTIONS(3308), + [anon_sym_false] = ACTIONS(3308), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3308), + [sym_super] = ACTIONS(3308), + [sym_crate] = ACTIONS(3308), + [sym_metavariable] = ACTIONS(3306), + [sym__raw_string_literal_start] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3306), + }, + [STATE(854)] = { + [sym_line_comment] = STATE(854), + [sym_block_comment] = STATE(854), + [ts_builtin_sym_end] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_macro_rules_BANG] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_RBRACE] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_u8] = ACTIONS(3312), + [anon_sym_i8] = ACTIONS(3312), + [anon_sym_u16] = ACTIONS(3312), + [anon_sym_i16] = ACTIONS(3312), + [anon_sym_u32] = ACTIONS(3312), + [anon_sym_i32] = ACTIONS(3312), + [anon_sym_u64] = ACTIONS(3312), + [anon_sym_i64] = ACTIONS(3312), + [anon_sym_u128] = ACTIONS(3312), + [anon_sym_i128] = ACTIONS(3312), + [anon_sym_isize] = ACTIONS(3312), + [anon_sym_usize] = ACTIONS(3312), + [anon_sym_f32] = ACTIONS(3312), + [anon_sym_f64] = ACTIONS(3312), + [anon_sym_bool] = ACTIONS(3312), + [anon_sym_str] = ACTIONS(3312), + [anon_sym_char] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3310), + [anon_sym_PIPE] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_POUND] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_async] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [anon_sym_fn] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_gen] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_impl] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_loop] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_mod] = ACTIONS(3312), + [anon_sym_pub] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_trait] = ACTIONS(3312), + [anon_sym_type] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [anon_sym_unsafe] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3312), + [anon_sym_move] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [sym_integer_literal] = ACTIONS(3310), + [aux_sym_string_literal_token1] = ACTIONS(3310), + [sym_char_literal] = ACTIONS(3310), + [anon_sym_true] = ACTIONS(3312), + [anon_sym_false] = ACTIONS(3312), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3312), + [sym_super] = ACTIONS(3312), + [sym_crate] = ACTIONS(3312), + [sym_metavariable] = ACTIONS(3310), + [sym__raw_string_literal_start] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3310), + }, + [STATE(855)] = { + [sym_line_comment] = STATE(855), + [sym_block_comment] = STATE(855), + [ts_builtin_sym_end] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3316), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_macro_rules_BANG] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3314), + [anon_sym_STAR] = ACTIONS(3314), + [anon_sym_u8] = ACTIONS(3316), + [anon_sym_i8] = ACTIONS(3316), + [anon_sym_u16] = ACTIONS(3316), + [anon_sym_i16] = ACTIONS(3316), + [anon_sym_u32] = ACTIONS(3316), + [anon_sym_i32] = ACTIONS(3316), + [anon_sym_u64] = ACTIONS(3316), + [anon_sym_i64] = ACTIONS(3316), + [anon_sym_u128] = ACTIONS(3316), + [anon_sym_i128] = ACTIONS(3316), + [anon_sym_isize] = ACTIONS(3316), + [anon_sym_usize] = ACTIONS(3316), + [anon_sym_f32] = ACTIONS(3316), + [anon_sym_f64] = ACTIONS(3316), + [anon_sym_bool] = ACTIONS(3316), + [anon_sym_str] = ACTIONS(3316), + [anon_sym_char] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_PIPE] = ACTIONS(3314), + [anon_sym_LT] = ACTIONS(3314), + [anon_sym_DOT_DOT] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3314), + [anon_sym_POUND] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3316), + [anon_sym_async] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_const] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_default] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), + [anon_sym_fn] = ACTIONS(3316), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_gen] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_impl] = ACTIONS(3316), + [anon_sym_let] = ACTIONS(3316), + [anon_sym_loop] = ACTIONS(3316), + [anon_sym_match] = ACTIONS(3316), + [anon_sym_mod] = ACTIONS(3316), + [anon_sym_pub] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3316), + [anon_sym_trait] = ACTIONS(3316), + [anon_sym_type] = ACTIONS(3316), + [anon_sym_union] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3316), + [anon_sym_use] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_extern] = ACTIONS(3316), + [anon_sym_yield] = ACTIONS(3316), + [anon_sym_move] = ACTIONS(3316), + [anon_sym_try] = ACTIONS(3316), + [sym_integer_literal] = ACTIONS(3314), + [aux_sym_string_literal_token1] = ACTIONS(3314), + [sym_char_literal] = ACTIONS(3314), + [anon_sym_true] = ACTIONS(3316), + [anon_sym_false] = ACTIONS(3316), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3316), + [sym_super] = ACTIONS(3316), + [sym_crate] = ACTIONS(3316), + [sym_metavariable] = ACTIONS(3314), + [sym__raw_string_literal_start] = ACTIONS(3314), + [sym_float_literal] = ACTIONS(3314), + }, + [STATE(856)] = { + [sym_line_comment] = STATE(856), + [sym_block_comment] = STATE(856), + [ts_builtin_sym_end] = ACTIONS(3318), + [sym_identifier] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_macro_rules_BANG] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_u8] = ACTIONS(3320), + [anon_sym_i8] = ACTIONS(3320), + [anon_sym_u16] = ACTIONS(3320), + [anon_sym_i16] = ACTIONS(3320), + [anon_sym_u32] = ACTIONS(3320), + [anon_sym_i32] = ACTIONS(3320), + [anon_sym_u64] = ACTIONS(3320), + [anon_sym_i64] = ACTIONS(3320), + [anon_sym_u128] = ACTIONS(3320), + [anon_sym_i128] = ACTIONS(3320), + [anon_sym_isize] = ACTIONS(3320), + [anon_sym_usize] = ACTIONS(3320), + [anon_sym_f32] = ACTIONS(3320), + [anon_sym_f64] = ACTIONS(3320), + [anon_sym_bool] = ACTIONS(3320), + [anon_sym_str] = ACTIONS(3320), + [anon_sym_char] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3320), + [anon_sym_async] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_const] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_default] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), + [anon_sym_fn] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_gen] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_impl] = ACTIONS(3320), + [anon_sym_let] = ACTIONS(3320), + [anon_sym_loop] = ACTIONS(3320), + [anon_sym_match] = ACTIONS(3320), + [anon_sym_mod] = ACTIONS(3320), + [anon_sym_pub] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_struct] = ACTIONS(3320), + [anon_sym_trait] = ACTIONS(3320), + [anon_sym_type] = ACTIONS(3320), + [anon_sym_union] = ACTIONS(3320), + [anon_sym_unsafe] = ACTIONS(3320), + [anon_sym_use] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_extern] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3320), + [anon_sym_move] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3320), + [sym_integer_literal] = ACTIONS(3318), + [aux_sym_string_literal_token1] = ACTIONS(3318), + [sym_char_literal] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3320), + [anon_sym_false] = ACTIONS(3320), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3320), + [sym_super] = ACTIONS(3320), + [sym_crate] = ACTIONS(3320), + [sym_metavariable] = ACTIONS(3318), + [sym__raw_string_literal_start] = ACTIONS(3318), + [sym_float_literal] = ACTIONS(3318), + }, + [STATE(857)] = { + [sym_line_comment] = STATE(857), + [sym_block_comment] = STATE(857), + [ts_builtin_sym_end] = ACTIONS(3322), + [sym_identifier] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_macro_rules_BANG] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_u8] = ACTIONS(3324), + [anon_sym_i8] = ACTIONS(3324), + [anon_sym_u16] = ACTIONS(3324), + [anon_sym_i16] = ACTIONS(3324), + [anon_sym_u32] = ACTIONS(3324), + [anon_sym_i32] = ACTIONS(3324), + [anon_sym_u64] = ACTIONS(3324), + [anon_sym_i64] = ACTIONS(3324), + [anon_sym_u128] = ACTIONS(3324), + [anon_sym_i128] = ACTIONS(3324), + [anon_sym_isize] = ACTIONS(3324), + [anon_sym_usize] = ACTIONS(3324), + [anon_sym_f32] = ACTIONS(3324), + [anon_sym_f64] = ACTIONS(3324), + [anon_sym_bool] = ACTIONS(3324), + [anon_sym_str] = ACTIONS(3324), + [anon_sym_char] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_DOT_DOT] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_async] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_const] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_default] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), + [anon_sym_fn] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_gen] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_impl] = ACTIONS(3324), + [anon_sym_let] = ACTIONS(3324), + [anon_sym_loop] = ACTIONS(3324), + [anon_sym_match] = ACTIONS(3324), + [anon_sym_mod] = ACTIONS(3324), + [anon_sym_pub] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3324), + [anon_sym_struct] = ACTIONS(3324), + [anon_sym_trait] = ACTIONS(3324), + [anon_sym_type] = ACTIONS(3324), + [anon_sym_union] = ACTIONS(3324), + [anon_sym_unsafe] = ACTIONS(3324), + [anon_sym_use] = ACTIONS(3324), + [anon_sym_while] = ACTIONS(3324), + [anon_sym_extern] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3324), + [anon_sym_move] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3324), + [sym_integer_literal] = ACTIONS(3322), + [aux_sym_string_literal_token1] = ACTIONS(3322), + [sym_char_literal] = ACTIONS(3322), + [anon_sym_true] = ACTIONS(3324), + [anon_sym_false] = ACTIONS(3324), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3324), + [sym_super] = ACTIONS(3324), + [sym_crate] = ACTIONS(3324), + [sym_metavariable] = ACTIONS(3322), + [sym__raw_string_literal_start] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3322), + }, + [STATE(858)] = { + [sym_line_comment] = STATE(858), + [sym_block_comment] = STATE(858), + [ts_builtin_sym_end] = ACTIONS(3326), + [sym_identifier] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_macro_rules_BANG] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_u8] = ACTIONS(3328), + [anon_sym_i8] = ACTIONS(3328), + [anon_sym_u16] = ACTIONS(3328), + [anon_sym_i16] = ACTIONS(3328), + [anon_sym_u32] = ACTIONS(3328), + [anon_sym_i32] = ACTIONS(3328), + [anon_sym_u64] = ACTIONS(3328), + [anon_sym_i64] = ACTIONS(3328), + [anon_sym_u128] = ACTIONS(3328), + [anon_sym_i128] = ACTIONS(3328), + [anon_sym_isize] = ACTIONS(3328), + [anon_sym_usize] = ACTIONS(3328), + [anon_sym_f32] = ACTIONS(3328), + [anon_sym_f64] = ACTIONS(3328), + [anon_sym_bool] = ACTIONS(3328), + [anon_sym_str] = ACTIONS(3328), + [anon_sym_char] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_POUND] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_default] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_fn] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_gen] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_impl] = ACTIONS(3328), + [anon_sym_let] = ACTIONS(3328), + [anon_sym_loop] = ACTIONS(3328), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_mod] = ACTIONS(3328), + [anon_sym_pub] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_struct] = ACTIONS(3328), + [anon_sym_trait] = ACTIONS(3328), + [anon_sym_type] = ACTIONS(3328), + [anon_sym_union] = ACTIONS(3328), + [anon_sym_unsafe] = ACTIONS(3328), + [anon_sym_use] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_extern] = ACTIONS(3328), + [anon_sym_yield] = ACTIONS(3328), + [anon_sym_move] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [sym_integer_literal] = ACTIONS(3326), + [aux_sym_string_literal_token1] = ACTIONS(3326), + [sym_char_literal] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3328), + [anon_sym_false] = ACTIONS(3328), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3328), + [sym_super] = ACTIONS(3328), + [sym_crate] = ACTIONS(3328), + [sym_metavariable] = ACTIONS(3326), + [sym__raw_string_literal_start] = ACTIONS(3326), + [sym_float_literal] = ACTIONS(3326), + }, + [STATE(859)] = { + [sym_line_comment] = STATE(859), + [sym_block_comment] = STATE(859), + [ts_builtin_sym_end] = ACTIONS(3330), + [sym_identifier] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_macro_rules_BANG] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_u8] = ACTIONS(3332), + [anon_sym_i8] = ACTIONS(3332), + [anon_sym_u16] = ACTIONS(3332), + [anon_sym_i16] = ACTIONS(3332), + [anon_sym_u32] = ACTIONS(3332), + [anon_sym_i32] = ACTIONS(3332), + [anon_sym_u64] = ACTIONS(3332), + [anon_sym_i64] = ACTIONS(3332), + [anon_sym_u128] = ACTIONS(3332), + [anon_sym_i128] = ACTIONS(3332), + [anon_sym_isize] = ACTIONS(3332), + [anon_sym_usize] = ACTIONS(3332), + [anon_sym_f32] = ACTIONS(3332), + [anon_sym_f64] = ACTIONS(3332), + [anon_sym_bool] = ACTIONS(3332), + [anon_sym_str] = ACTIONS(3332), + [anon_sym_char] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3330), + [anon_sym_PIPE] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_DOT_DOT] = ACTIONS(3330), + [anon_sym_COLON_COLON] = ACTIONS(3330), + [anon_sym_POUND] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3332), + [anon_sym_async] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_fn] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_gen] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_impl] = ACTIONS(3332), + [anon_sym_let] = ACTIONS(3332), + [anon_sym_loop] = ACTIONS(3332), + [anon_sym_match] = ACTIONS(3332), + [anon_sym_mod] = ACTIONS(3332), + [anon_sym_pub] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_trait] = ACTIONS(3332), + [anon_sym_type] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3332), + [anon_sym_use] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_extern] = ACTIONS(3332), + [anon_sym_yield] = ACTIONS(3332), + [anon_sym_move] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [sym_integer_literal] = ACTIONS(3330), + [aux_sym_string_literal_token1] = ACTIONS(3330), + [sym_char_literal] = ACTIONS(3330), + [anon_sym_true] = ACTIONS(3332), + [anon_sym_false] = ACTIONS(3332), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3332), + [sym_super] = ACTIONS(3332), + [sym_crate] = ACTIONS(3332), + [sym_metavariable] = ACTIONS(3330), + [sym__raw_string_literal_start] = ACTIONS(3330), + [sym_float_literal] = ACTIONS(3330), + }, + [STATE(860)] = { + [sym_line_comment] = STATE(860), + [sym_block_comment] = STATE(860), + [ts_builtin_sym_end] = ACTIONS(3334), + [sym_identifier] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_macro_rules_BANG] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_u8] = ACTIONS(3336), + [anon_sym_i8] = ACTIONS(3336), + [anon_sym_u16] = ACTIONS(3336), + [anon_sym_i16] = ACTIONS(3336), + [anon_sym_u32] = ACTIONS(3336), + [anon_sym_i32] = ACTIONS(3336), + [anon_sym_u64] = ACTIONS(3336), + [anon_sym_i64] = ACTIONS(3336), + [anon_sym_u128] = ACTIONS(3336), + [anon_sym_i128] = ACTIONS(3336), + [anon_sym_isize] = ACTIONS(3336), + [anon_sym_usize] = ACTIONS(3336), + [anon_sym_f32] = ACTIONS(3336), + [anon_sym_f64] = ACTIONS(3336), + [anon_sym_bool] = ACTIONS(3336), + [anon_sym_str] = ACTIONS(3336), + [anon_sym_char] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_POUND] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3336), + [anon_sym_async] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_default] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), + [anon_sym_fn] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_gen] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_impl] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_loop] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_mod] = ACTIONS(3336), + [anon_sym_pub] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_struct] = ACTIONS(3336), + [anon_sym_trait] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_union] = ACTIONS(3336), + [anon_sym_unsafe] = ACTIONS(3336), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_extern] = ACTIONS(3336), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_move] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [sym_integer_literal] = ACTIONS(3334), + [aux_sym_string_literal_token1] = ACTIONS(3334), + [sym_char_literal] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3336), + [anon_sym_false] = ACTIONS(3336), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3336), + [sym_super] = ACTIONS(3336), + [sym_crate] = ACTIONS(3336), + [sym_metavariable] = ACTIONS(3334), + [sym__raw_string_literal_start] = ACTIONS(3334), + [sym_float_literal] = ACTIONS(3334), + }, + [STATE(861)] = { + [sym_attribute_item] = STATE(1539), + [sym_inner_attribute_item] = STATE(1539), + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_match_pattern] = STATE(4276), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3496), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), + [sym_line_comment] = STATE(861), + [sym_block_comment] = STATE(861), + [aux_sym_match_arm_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), + }, + [STATE(862)] = { + [sym_line_comment] = STATE(862), + [sym_block_comment] = STATE(862), + [ts_builtin_sym_end] = ACTIONS(3338), + [sym_identifier] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_macro_rules_BANG] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_u8] = ACTIONS(3340), + [anon_sym_i8] = ACTIONS(3340), + [anon_sym_u16] = ACTIONS(3340), + [anon_sym_i16] = ACTIONS(3340), + [anon_sym_u32] = ACTIONS(3340), + [anon_sym_i32] = ACTIONS(3340), + [anon_sym_u64] = ACTIONS(3340), + [anon_sym_i64] = ACTIONS(3340), + [anon_sym_u128] = ACTIONS(3340), + [anon_sym_i128] = ACTIONS(3340), + [anon_sym_isize] = ACTIONS(3340), + [anon_sym_usize] = ACTIONS(3340), + [anon_sym_f32] = ACTIONS(3340), + [anon_sym_f64] = ACTIONS(3340), + [anon_sym_bool] = ACTIONS(3340), + [anon_sym_str] = ACTIONS(3340), + [anon_sym_char] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3338), + [anon_sym_PIPE] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_POUND] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_async] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_default] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), + [anon_sym_fn] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_gen] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_impl] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_loop] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_mod] = ACTIONS(3340), + [anon_sym_pub] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_trait] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_union] = ACTIONS(3340), + [anon_sym_unsafe] = ACTIONS(3340), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_extern] = ACTIONS(3340), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_move] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [aux_sym_string_literal_token1] = ACTIONS(3338), + [sym_char_literal] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3340), + [sym_super] = ACTIONS(3340), + [sym_crate] = ACTIONS(3340), + [sym_metavariable] = ACTIONS(3338), + [sym__raw_string_literal_start] = ACTIONS(3338), + [sym_float_literal] = ACTIONS(3338), + }, + [STATE(863)] = { + [sym_line_comment] = STATE(863), + [sym_block_comment] = STATE(863), + [ts_builtin_sym_end] = ACTIONS(3342), + [sym_identifier] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_macro_rules_BANG] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_u8] = ACTIONS(3344), + [anon_sym_i8] = ACTIONS(3344), + [anon_sym_u16] = ACTIONS(3344), + [anon_sym_i16] = ACTIONS(3344), + [anon_sym_u32] = ACTIONS(3344), + [anon_sym_i32] = ACTIONS(3344), + [anon_sym_u64] = ACTIONS(3344), + [anon_sym_i64] = ACTIONS(3344), + [anon_sym_u128] = ACTIONS(3344), + [anon_sym_i128] = ACTIONS(3344), + [anon_sym_isize] = ACTIONS(3344), + [anon_sym_usize] = ACTIONS(3344), + [anon_sym_f32] = ACTIONS(3344), + [anon_sym_f64] = ACTIONS(3344), + [anon_sym_bool] = ACTIONS(3344), + [anon_sym_str] = ACTIONS(3344), + [anon_sym_char] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_POUND] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(3344), + [anon_sym_async] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_const] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_default] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), + [anon_sym_fn] = ACTIONS(3344), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_gen] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_impl] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_loop] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_mod] = ACTIONS(3344), + [anon_sym_pub] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3344), + [anon_sym_trait] = ACTIONS(3344), + [anon_sym_type] = ACTIONS(3344), + [anon_sym_union] = ACTIONS(3344), + [anon_sym_unsafe] = ACTIONS(3344), + [anon_sym_use] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_extern] = ACTIONS(3344), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_move] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [sym_integer_literal] = ACTIONS(3342), + [aux_sym_string_literal_token1] = ACTIONS(3342), + [sym_char_literal] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3344), + [sym_super] = ACTIONS(3344), + [sym_crate] = ACTIONS(3344), + [sym_metavariable] = ACTIONS(3342), + [sym__raw_string_literal_start] = ACTIONS(3342), + [sym_float_literal] = ACTIONS(3342), + }, + [STATE(864)] = { + [sym_line_comment] = STATE(864), + [sym_block_comment] = STATE(864), + [ts_builtin_sym_end] = ACTIONS(3346), + [sym_identifier] = ACTIONS(3348), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_macro_rules_BANG] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_u8] = ACTIONS(3348), + [anon_sym_i8] = ACTIONS(3348), + [anon_sym_u16] = ACTIONS(3348), + [anon_sym_i16] = ACTIONS(3348), + [anon_sym_u32] = ACTIONS(3348), + [anon_sym_i32] = ACTIONS(3348), + [anon_sym_u64] = ACTIONS(3348), + [anon_sym_i64] = ACTIONS(3348), + [anon_sym_u128] = ACTIONS(3348), + [anon_sym_i128] = ACTIONS(3348), + [anon_sym_isize] = ACTIONS(3348), + [anon_sym_usize] = ACTIONS(3348), + [anon_sym_f32] = ACTIONS(3348), + [anon_sym_f64] = ACTIONS(3348), + [anon_sym_bool] = ACTIONS(3348), + [anon_sym_str] = ACTIONS(3348), + [anon_sym_char] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3346), + [anon_sym_PIPE] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_POUND] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3348), + [anon_sym_async] = ACTIONS(3348), + [anon_sym_break] = ACTIONS(3348), + [anon_sym_const] = ACTIONS(3348), + [anon_sym_continue] = ACTIONS(3348), + [anon_sym_default] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3348), + [anon_sym_fn] = ACTIONS(3348), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_gen] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_impl] = ACTIONS(3348), + [anon_sym_let] = ACTIONS(3348), + [anon_sym_loop] = ACTIONS(3348), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_mod] = ACTIONS(3348), + [anon_sym_pub] = ACTIONS(3348), + [anon_sym_return] = ACTIONS(3348), + [anon_sym_static] = ACTIONS(3348), + [anon_sym_struct] = ACTIONS(3348), + [anon_sym_trait] = ACTIONS(3348), + [anon_sym_type] = ACTIONS(3348), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_unsafe] = ACTIONS(3348), + [anon_sym_use] = ACTIONS(3348), + [anon_sym_while] = ACTIONS(3348), + [anon_sym_extern] = ACTIONS(3348), + [anon_sym_yield] = ACTIONS(3348), + [anon_sym_move] = ACTIONS(3348), + [anon_sym_try] = ACTIONS(3348), + [sym_integer_literal] = ACTIONS(3346), + [aux_sym_string_literal_token1] = ACTIONS(3346), + [sym_char_literal] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3348), + [anon_sym_false] = ACTIONS(3348), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3348), + [sym_super] = ACTIONS(3348), + [sym_crate] = ACTIONS(3348), + [sym_metavariable] = ACTIONS(3346), + [sym__raw_string_literal_start] = ACTIONS(3346), + [sym_float_literal] = ACTIONS(3346), + }, + [STATE(865)] = { + [sym_line_comment] = STATE(865), + [sym_block_comment] = STATE(865), + [ts_builtin_sym_end] = ACTIONS(3350), + [sym_identifier] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_macro_rules_BANG] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_u8] = ACTIONS(3352), + [anon_sym_i8] = ACTIONS(3352), + [anon_sym_u16] = ACTIONS(3352), + [anon_sym_i16] = ACTIONS(3352), + [anon_sym_u32] = ACTIONS(3352), + [anon_sym_i32] = ACTIONS(3352), + [anon_sym_u64] = ACTIONS(3352), + [anon_sym_i64] = ACTIONS(3352), + [anon_sym_u128] = ACTIONS(3352), + [anon_sym_i128] = ACTIONS(3352), + [anon_sym_isize] = ACTIONS(3352), + [anon_sym_usize] = ACTIONS(3352), + [anon_sym_f32] = ACTIONS(3352), + [anon_sym_f64] = ACTIONS(3352), + [anon_sym_bool] = ACTIONS(3352), + [anon_sym_str] = ACTIONS(3352), + [anon_sym_char] = ACTIONS(3352), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_DOT_DOT] = ACTIONS(3350), + [anon_sym_COLON_COLON] = ACTIONS(3350), + [anon_sym_POUND] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3352), + [anon_sym_async] = ACTIONS(3352), + [anon_sym_break] = ACTIONS(3352), + [anon_sym_const] = ACTIONS(3352), + [anon_sym_continue] = ACTIONS(3352), + [anon_sym_default] = ACTIONS(3352), + [anon_sym_enum] = ACTIONS(3352), + [anon_sym_fn] = ACTIONS(3352), + [anon_sym_for] = ACTIONS(3352), + [anon_sym_gen] = ACTIONS(3352), + [anon_sym_if] = ACTIONS(3352), + [anon_sym_impl] = ACTIONS(3352), + [anon_sym_let] = ACTIONS(3352), + [anon_sym_loop] = ACTIONS(3352), + [anon_sym_match] = ACTIONS(3352), + [anon_sym_mod] = ACTIONS(3352), + [anon_sym_pub] = ACTIONS(3352), + [anon_sym_return] = ACTIONS(3352), + [anon_sym_static] = ACTIONS(3352), + [anon_sym_struct] = ACTIONS(3352), + [anon_sym_trait] = ACTIONS(3352), + [anon_sym_type] = ACTIONS(3352), + [anon_sym_union] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3352), + [anon_sym_use] = ACTIONS(3352), + [anon_sym_while] = ACTIONS(3352), + [anon_sym_extern] = ACTIONS(3352), + [anon_sym_yield] = ACTIONS(3352), + [anon_sym_move] = ACTIONS(3352), + [anon_sym_try] = ACTIONS(3352), + [sym_integer_literal] = ACTIONS(3350), + [aux_sym_string_literal_token1] = ACTIONS(3350), + [sym_char_literal] = ACTIONS(3350), + [anon_sym_true] = ACTIONS(3352), + [anon_sym_false] = ACTIONS(3352), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3352), + [sym_super] = ACTIONS(3352), + [sym_crate] = ACTIONS(3352), + [sym_metavariable] = ACTIONS(3350), + [sym__raw_string_literal_start] = ACTIONS(3350), + [sym_float_literal] = ACTIONS(3350), + }, + [STATE(866)] = { + [sym_line_comment] = STATE(866), + [sym_block_comment] = STATE(866), + [ts_builtin_sym_end] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3356), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_macro_rules_BANG] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_u8] = ACTIONS(3356), + [anon_sym_i8] = ACTIONS(3356), + [anon_sym_u16] = ACTIONS(3356), + [anon_sym_i16] = ACTIONS(3356), + [anon_sym_u32] = ACTIONS(3356), + [anon_sym_i32] = ACTIONS(3356), + [anon_sym_u64] = ACTIONS(3356), + [anon_sym_i64] = ACTIONS(3356), + [anon_sym_u128] = ACTIONS(3356), + [anon_sym_i128] = ACTIONS(3356), + [anon_sym_isize] = ACTIONS(3356), + [anon_sym_usize] = ACTIONS(3356), + [anon_sym_f32] = ACTIONS(3356), + [anon_sym_f64] = ACTIONS(3356), + [anon_sym_bool] = ACTIONS(3356), + [anon_sym_str] = ACTIONS(3356), + [anon_sym_char] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_COLON_COLON] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_async] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_default] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), + [anon_sym_fn] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_gen] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_impl] = ACTIONS(3356), + [anon_sym_let] = ACTIONS(3356), + [anon_sym_loop] = ACTIONS(3356), + [anon_sym_match] = ACTIONS(3356), + [anon_sym_mod] = ACTIONS(3356), + [anon_sym_pub] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_static] = ACTIONS(3356), + [anon_sym_struct] = ACTIONS(3356), + [anon_sym_trait] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_union] = ACTIONS(3356), + [anon_sym_unsafe] = ACTIONS(3356), + [anon_sym_use] = ACTIONS(3356), + [anon_sym_while] = ACTIONS(3356), + [anon_sym_extern] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3356), + [anon_sym_move] = ACTIONS(3356), + [anon_sym_try] = ACTIONS(3356), + [sym_integer_literal] = ACTIONS(3354), + [aux_sym_string_literal_token1] = ACTIONS(3354), + [sym_char_literal] = ACTIONS(3354), + [anon_sym_true] = ACTIONS(3356), + [anon_sym_false] = ACTIONS(3356), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3356), + [sym_super] = ACTIONS(3356), + [sym_crate] = ACTIONS(3356), + [sym_metavariable] = ACTIONS(3354), + [sym__raw_string_literal_start] = ACTIONS(3354), + [sym_float_literal] = ACTIONS(3354), + }, + [STATE(867)] = { + [sym_line_comment] = STATE(867), + [sym_block_comment] = STATE(867), + [ts_builtin_sym_end] = ACTIONS(3358), + [sym_identifier] = ACTIONS(3360), + [anon_sym_SEMI] = ACTIONS(3358), + [anon_sym_macro_rules_BANG] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_RBRACE] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_u8] = ACTIONS(3360), + [anon_sym_i8] = ACTIONS(3360), + [anon_sym_u16] = ACTIONS(3360), + [anon_sym_i16] = ACTIONS(3360), + [anon_sym_u32] = ACTIONS(3360), + [anon_sym_i32] = ACTIONS(3360), + [anon_sym_u64] = ACTIONS(3360), + [anon_sym_i64] = ACTIONS(3360), + [anon_sym_u128] = ACTIONS(3360), + [anon_sym_i128] = ACTIONS(3360), + [anon_sym_isize] = ACTIONS(3360), + [anon_sym_usize] = ACTIONS(3360), + [anon_sym_f32] = ACTIONS(3360), + [anon_sym_f64] = ACTIONS(3360), + [anon_sym_bool] = ACTIONS(3360), + [anon_sym_str] = ACTIONS(3360), + [anon_sym_char] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_PIPE] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3358), + [anon_sym_POUND] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3360), + [anon_sym_async] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_const] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_default] = ACTIONS(3360), + [anon_sym_enum] = ACTIONS(3360), + [anon_sym_fn] = ACTIONS(3360), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_gen] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_impl] = ACTIONS(3360), + [anon_sym_let] = ACTIONS(3360), + [anon_sym_loop] = ACTIONS(3360), + [anon_sym_match] = ACTIONS(3360), + [anon_sym_mod] = ACTIONS(3360), + [anon_sym_pub] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(3360), + [anon_sym_trait] = ACTIONS(3360), + [anon_sym_type] = ACTIONS(3360), + [anon_sym_union] = ACTIONS(3360), + [anon_sym_unsafe] = ACTIONS(3360), + [anon_sym_use] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_extern] = ACTIONS(3360), + [anon_sym_yield] = ACTIONS(3360), + [anon_sym_move] = ACTIONS(3360), + [anon_sym_try] = ACTIONS(3360), + [sym_integer_literal] = ACTIONS(3358), + [aux_sym_string_literal_token1] = ACTIONS(3358), + [sym_char_literal] = ACTIONS(3358), + [anon_sym_true] = ACTIONS(3360), + [anon_sym_false] = ACTIONS(3360), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3360), + [sym_super] = ACTIONS(3360), + [sym_crate] = ACTIONS(3360), + [sym_metavariable] = ACTIONS(3358), + [sym__raw_string_literal_start] = ACTIONS(3358), + [sym_float_literal] = ACTIONS(3358), + }, + [STATE(868)] = { + [sym_line_comment] = STATE(868), + [sym_block_comment] = STATE(868), + [ts_builtin_sym_end] = ACTIONS(3362), + [sym_identifier] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3362), + [anon_sym_macro_rules_BANG] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_RBRACE] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_u8] = ACTIONS(3364), + [anon_sym_i8] = ACTIONS(3364), + [anon_sym_u16] = ACTIONS(3364), + [anon_sym_i16] = ACTIONS(3364), + [anon_sym_u32] = ACTIONS(3364), + [anon_sym_i32] = ACTIONS(3364), + [anon_sym_u64] = ACTIONS(3364), + [anon_sym_i64] = ACTIONS(3364), + [anon_sym_u128] = ACTIONS(3364), + [anon_sym_i128] = ACTIONS(3364), + [anon_sym_isize] = ACTIONS(3364), + [anon_sym_usize] = ACTIONS(3364), + [anon_sym_f32] = ACTIONS(3364), + [anon_sym_f64] = ACTIONS(3364), + [anon_sym_bool] = ACTIONS(3364), + [anon_sym_str] = ACTIONS(3364), + [anon_sym_char] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3362), + [anon_sym_COLON_COLON] = ACTIONS(3362), + [anon_sym_POUND] = ACTIONS(3362), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_async] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_default] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), + [anon_sym_fn] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_gen] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_impl] = ACTIONS(3364), + [anon_sym_let] = ACTIONS(3364), + [anon_sym_loop] = ACTIONS(3364), + [anon_sym_match] = ACTIONS(3364), + [anon_sym_mod] = ACTIONS(3364), + [anon_sym_pub] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_struct] = ACTIONS(3364), + [anon_sym_trait] = ACTIONS(3364), + [anon_sym_type] = ACTIONS(3364), + [anon_sym_union] = ACTIONS(3364), + [anon_sym_unsafe] = ACTIONS(3364), + [anon_sym_use] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_extern] = ACTIONS(3364), + [anon_sym_yield] = ACTIONS(3364), + [anon_sym_move] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [sym_integer_literal] = ACTIONS(3362), + [aux_sym_string_literal_token1] = ACTIONS(3362), + [sym_char_literal] = ACTIONS(3362), + [anon_sym_true] = ACTIONS(3364), + [anon_sym_false] = ACTIONS(3364), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3364), + [sym_super] = ACTIONS(3364), + [sym_crate] = ACTIONS(3364), + [sym_metavariable] = ACTIONS(3362), + [sym__raw_string_literal_start] = ACTIONS(3362), + [sym_float_literal] = ACTIONS(3362), + }, + [STATE(869)] = { + [sym_line_comment] = STATE(869), + [sym_block_comment] = STATE(869), + [ts_builtin_sym_end] = ACTIONS(3366), + [sym_identifier] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_macro_rules_BANG] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3366), + [anon_sym_u8] = ACTIONS(3368), + [anon_sym_i8] = ACTIONS(3368), + [anon_sym_u16] = ACTIONS(3368), + [anon_sym_i16] = ACTIONS(3368), + [anon_sym_u32] = ACTIONS(3368), + [anon_sym_i32] = ACTIONS(3368), + [anon_sym_u64] = ACTIONS(3368), + [anon_sym_i64] = ACTIONS(3368), + [anon_sym_u128] = ACTIONS(3368), + [anon_sym_i128] = ACTIONS(3368), + [anon_sym_isize] = ACTIONS(3368), + [anon_sym_usize] = ACTIONS(3368), + [anon_sym_f32] = ACTIONS(3368), + [anon_sym_f64] = ACTIONS(3368), + [anon_sym_bool] = ACTIONS(3368), + [anon_sym_str] = ACTIONS(3368), + [anon_sym_char] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3366), + [anon_sym_PIPE] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3366), + [anon_sym_POUND] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_default] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), + [anon_sym_fn] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_gen] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_impl] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_loop] = ACTIONS(3368), + [anon_sym_match] = ACTIONS(3368), + [anon_sym_mod] = ACTIONS(3368), + [anon_sym_pub] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(3368), + [anon_sym_trait] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_union] = ACTIONS(3368), + [anon_sym_unsafe] = ACTIONS(3368), + [anon_sym_use] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_extern] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_move] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [sym_integer_literal] = ACTIONS(3366), + [aux_sym_string_literal_token1] = ACTIONS(3366), + [sym_char_literal] = ACTIONS(3366), + [anon_sym_true] = ACTIONS(3368), + [anon_sym_false] = ACTIONS(3368), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_crate] = ACTIONS(3368), + [sym_metavariable] = ACTIONS(3366), + [sym__raw_string_literal_start] = ACTIONS(3366), + [sym_float_literal] = ACTIONS(3366), + }, + [STATE(870)] = { + [sym_line_comment] = STATE(870), + [sym_block_comment] = STATE(870), + [ts_builtin_sym_end] = ACTIONS(3370), + [sym_identifier] = ACTIONS(3372), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_macro_rules_BANG] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_u8] = ACTIONS(3372), + [anon_sym_i8] = ACTIONS(3372), + [anon_sym_u16] = ACTIONS(3372), + [anon_sym_i16] = ACTIONS(3372), + [anon_sym_u32] = ACTIONS(3372), + [anon_sym_i32] = ACTIONS(3372), + [anon_sym_u64] = ACTIONS(3372), + [anon_sym_i64] = ACTIONS(3372), + [anon_sym_u128] = ACTIONS(3372), + [anon_sym_i128] = ACTIONS(3372), + [anon_sym_isize] = ACTIONS(3372), + [anon_sym_usize] = ACTIONS(3372), + [anon_sym_f32] = ACTIONS(3372), + [anon_sym_f64] = ACTIONS(3372), + [anon_sym_bool] = ACTIONS(3372), + [anon_sym_str] = ACTIONS(3372), + [anon_sym_char] = ACTIONS(3372), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_POUND] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3372), + [anon_sym_async] = ACTIONS(3372), + [anon_sym_break] = ACTIONS(3372), + [anon_sym_const] = ACTIONS(3372), + [anon_sym_continue] = ACTIONS(3372), + [anon_sym_default] = ACTIONS(3372), + [anon_sym_enum] = ACTIONS(3372), + [anon_sym_fn] = ACTIONS(3372), + [anon_sym_for] = ACTIONS(3372), + [anon_sym_gen] = ACTIONS(3372), + [anon_sym_if] = ACTIONS(3372), + [anon_sym_impl] = ACTIONS(3372), + [anon_sym_let] = ACTIONS(3372), + [anon_sym_loop] = ACTIONS(3372), + [anon_sym_match] = ACTIONS(3372), + [anon_sym_mod] = ACTIONS(3372), + [anon_sym_pub] = ACTIONS(3372), + [anon_sym_return] = ACTIONS(3372), + [anon_sym_static] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3372), + [anon_sym_trait] = ACTIONS(3372), + [anon_sym_type] = ACTIONS(3372), + [anon_sym_union] = ACTIONS(3372), + [anon_sym_unsafe] = ACTIONS(3372), + [anon_sym_use] = ACTIONS(3372), + [anon_sym_while] = ACTIONS(3372), + [anon_sym_extern] = ACTIONS(3372), + [anon_sym_yield] = ACTIONS(3372), + [anon_sym_move] = ACTIONS(3372), + [anon_sym_try] = ACTIONS(3372), + [sym_integer_literal] = ACTIONS(3370), + [aux_sym_string_literal_token1] = ACTIONS(3370), + [sym_char_literal] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3372), + [anon_sym_false] = ACTIONS(3372), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3372), + [sym_super] = ACTIONS(3372), + [sym_crate] = ACTIONS(3372), + [sym_metavariable] = ACTIONS(3370), + [sym__raw_string_literal_start] = ACTIONS(3370), + [sym_float_literal] = ACTIONS(3370), + }, + [STATE(871)] = { + [sym_line_comment] = STATE(871), + [sym_block_comment] = STATE(871), + [ts_builtin_sym_end] = ACTIONS(3374), + [sym_identifier] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3374), + [anon_sym_macro_rules_BANG] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_RBRACE] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_u8] = ACTIONS(3376), + [anon_sym_i8] = ACTIONS(3376), + [anon_sym_u16] = ACTIONS(3376), + [anon_sym_i16] = ACTIONS(3376), + [anon_sym_u32] = ACTIONS(3376), + [anon_sym_i32] = ACTIONS(3376), + [anon_sym_u64] = ACTIONS(3376), + [anon_sym_i64] = ACTIONS(3376), + [anon_sym_u128] = ACTIONS(3376), + [anon_sym_i128] = ACTIONS(3376), + [anon_sym_isize] = ACTIONS(3376), + [anon_sym_usize] = ACTIONS(3376), + [anon_sym_f32] = ACTIONS(3376), + [anon_sym_f64] = ACTIONS(3376), + [anon_sym_bool] = ACTIONS(3376), + [anon_sym_str] = ACTIONS(3376), + [anon_sym_char] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_DOT_DOT] = ACTIONS(3374), + [anon_sym_COLON_COLON] = ACTIONS(3374), + [anon_sym_POUND] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3376), + [anon_sym_async] = ACTIONS(3376), + [anon_sym_break] = ACTIONS(3376), + [anon_sym_const] = ACTIONS(3376), + [anon_sym_continue] = ACTIONS(3376), + [anon_sym_default] = ACTIONS(3376), + [anon_sym_enum] = ACTIONS(3376), + [anon_sym_fn] = ACTIONS(3376), + [anon_sym_for] = ACTIONS(3376), + [anon_sym_gen] = ACTIONS(3376), + [anon_sym_if] = ACTIONS(3376), + [anon_sym_impl] = ACTIONS(3376), + [anon_sym_let] = ACTIONS(3376), + [anon_sym_loop] = ACTIONS(3376), + [anon_sym_match] = ACTIONS(3376), + [anon_sym_mod] = ACTIONS(3376), + [anon_sym_pub] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3376), + [anon_sym_static] = ACTIONS(3376), + [anon_sym_struct] = ACTIONS(3376), + [anon_sym_trait] = ACTIONS(3376), + [anon_sym_type] = ACTIONS(3376), + [anon_sym_union] = ACTIONS(3376), + [anon_sym_unsafe] = ACTIONS(3376), + [anon_sym_use] = ACTIONS(3376), + [anon_sym_while] = ACTIONS(3376), + [anon_sym_extern] = ACTIONS(3376), + [anon_sym_yield] = ACTIONS(3376), + [anon_sym_move] = ACTIONS(3376), + [anon_sym_try] = ACTIONS(3376), + [sym_integer_literal] = ACTIONS(3374), + [aux_sym_string_literal_token1] = ACTIONS(3374), + [sym_char_literal] = ACTIONS(3374), + [anon_sym_true] = ACTIONS(3376), + [anon_sym_false] = ACTIONS(3376), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3376), + [sym_super] = ACTIONS(3376), + [sym_crate] = ACTIONS(3376), + [sym_metavariable] = ACTIONS(3374), + [sym__raw_string_literal_start] = ACTIONS(3374), + [sym_float_literal] = ACTIONS(3374), + }, + [STATE(872)] = { + [sym_line_comment] = STATE(872), + [sym_block_comment] = STATE(872), + [ts_builtin_sym_end] = ACTIONS(3378), + [sym_identifier] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_macro_rules_BANG] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_RBRACE] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_u8] = ACTIONS(3380), + [anon_sym_i8] = ACTIONS(3380), + [anon_sym_u16] = ACTIONS(3380), + [anon_sym_i16] = ACTIONS(3380), + [anon_sym_u32] = ACTIONS(3380), + [anon_sym_i32] = ACTIONS(3380), + [anon_sym_u64] = ACTIONS(3380), + [anon_sym_i64] = ACTIONS(3380), + [anon_sym_u128] = ACTIONS(3380), + [anon_sym_i128] = ACTIONS(3380), + [anon_sym_isize] = ACTIONS(3380), + [anon_sym_usize] = ACTIONS(3380), + [anon_sym_f32] = ACTIONS(3380), + [anon_sym_f64] = ACTIONS(3380), + [anon_sym_bool] = ACTIONS(3380), + [anon_sym_str] = ACTIONS(3380), + [anon_sym_char] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_PIPE] = ACTIONS(3378), + [anon_sym_LT] = ACTIONS(3378), + [anon_sym_DOT_DOT] = ACTIONS(3378), + [anon_sym_COLON_COLON] = ACTIONS(3378), + [anon_sym_POUND] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3380), + [anon_sym_async] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_default] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), + [anon_sym_fn] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_gen] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_impl] = ACTIONS(3380), + [anon_sym_let] = ACTIONS(3380), + [anon_sym_loop] = ACTIONS(3380), + [anon_sym_match] = ACTIONS(3380), + [anon_sym_mod] = ACTIONS(3380), + [anon_sym_pub] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3380), + [anon_sym_trait] = ACTIONS(3380), + [anon_sym_type] = ACTIONS(3380), + [anon_sym_union] = ACTIONS(3380), + [anon_sym_unsafe] = ACTIONS(3380), + [anon_sym_use] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_extern] = ACTIONS(3380), + [anon_sym_yield] = ACTIONS(3380), + [anon_sym_move] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [sym_integer_literal] = ACTIONS(3378), + [aux_sym_string_literal_token1] = ACTIONS(3378), + [sym_char_literal] = ACTIONS(3378), + [anon_sym_true] = ACTIONS(3380), + [anon_sym_false] = ACTIONS(3380), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3380), + [sym_super] = ACTIONS(3380), + [sym_crate] = ACTIONS(3380), + [sym_metavariable] = ACTIONS(3378), + [sym__raw_string_literal_start] = ACTIONS(3378), + [sym_float_literal] = ACTIONS(3378), + }, + [STATE(873)] = { + [sym_line_comment] = STATE(873), + [sym_block_comment] = STATE(873), + [ts_builtin_sym_end] = ACTIONS(3382), + [sym_identifier] = ACTIONS(3384), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_macro_rules_BANG] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_u8] = ACTIONS(3384), + [anon_sym_i8] = ACTIONS(3384), + [anon_sym_u16] = ACTIONS(3384), + [anon_sym_i16] = ACTIONS(3384), + [anon_sym_u32] = ACTIONS(3384), + [anon_sym_i32] = ACTIONS(3384), + [anon_sym_u64] = ACTIONS(3384), + [anon_sym_i64] = ACTIONS(3384), + [anon_sym_u128] = ACTIONS(3384), + [anon_sym_i128] = ACTIONS(3384), + [anon_sym_isize] = ACTIONS(3384), + [anon_sym_usize] = ACTIONS(3384), + [anon_sym_f32] = ACTIONS(3384), + [anon_sym_f64] = ACTIONS(3384), + [anon_sym_bool] = ACTIONS(3384), + [anon_sym_str] = ACTIONS(3384), + [anon_sym_char] = ACTIONS(3384), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3382), + [anon_sym_PIPE] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3382), + [anon_sym_DOT_DOT] = ACTIONS(3382), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_POUND] = ACTIONS(3382), + [anon_sym_SQUOTE] = ACTIONS(3384), + [anon_sym_async] = ACTIONS(3384), + [anon_sym_break] = ACTIONS(3384), + [anon_sym_const] = ACTIONS(3384), + [anon_sym_continue] = ACTIONS(3384), + [anon_sym_default] = ACTIONS(3384), + [anon_sym_enum] = ACTIONS(3384), + [anon_sym_fn] = ACTIONS(3384), + [anon_sym_for] = ACTIONS(3384), + [anon_sym_gen] = ACTIONS(3384), + [anon_sym_if] = ACTIONS(3384), + [anon_sym_impl] = ACTIONS(3384), + [anon_sym_let] = ACTIONS(3384), + [anon_sym_loop] = ACTIONS(3384), + [anon_sym_match] = ACTIONS(3384), + [anon_sym_mod] = ACTIONS(3384), + [anon_sym_pub] = ACTIONS(3384), + [anon_sym_return] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_struct] = ACTIONS(3384), + [anon_sym_trait] = ACTIONS(3384), + [anon_sym_type] = ACTIONS(3384), + [anon_sym_union] = ACTIONS(3384), + [anon_sym_unsafe] = ACTIONS(3384), + [anon_sym_use] = ACTIONS(3384), + [anon_sym_while] = ACTIONS(3384), + [anon_sym_extern] = ACTIONS(3384), + [anon_sym_yield] = ACTIONS(3384), + [anon_sym_move] = ACTIONS(3384), + [anon_sym_try] = ACTIONS(3384), + [sym_integer_literal] = ACTIONS(3382), + [aux_sym_string_literal_token1] = ACTIONS(3382), + [sym_char_literal] = ACTIONS(3382), + [anon_sym_true] = ACTIONS(3384), + [anon_sym_false] = ACTIONS(3384), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3384), + [sym_super] = ACTIONS(3384), + [sym_crate] = ACTIONS(3384), + [sym_metavariable] = ACTIONS(3382), + [sym__raw_string_literal_start] = ACTIONS(3382), + [sym_float_literal] = ACTIONS(3382), + }, + [STATE(874)] = { + [sym_line_comment] = STATE(874), + [sym_block_comment] = STATE(874), + [ts_builtin_sym_end] = ACTIONS(3386), + [sym_identifier] = ACTIONS(3388), + [anon_sym_SEMI] = ACTIONS(3386), + [anon_sym_macro_rules_BANG] = ACTIONS(3386), + [anon_sym_LPAREN] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_RBRACE] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3386), + [anon_sym_u8] = ACTIONS(3388), + [anon_sym_i8] = ACTIONS(3388), + [anon_sym_u16] = ACTIONS(3388), + [anon_sym_i16] = ACTIONS(3388), + [anon_sym_u32] = ACTIONS(3388), + [anon_sym_i32] = ACTIONS(3388), + [anon_sym_u64] = ACTIONS(3388), + [anon_sym_i64] = ACTIONS(3388), + [anon_sym_u128] = ACTIONS(3388), + [anon_sym_i128] = ACTIONS(3388), + [anon_sym_isize] = ACTIONS(3388), + [anon_sym_usize] = ACTIONS(3388), + [anon_sym_f32] = ACTIONS(3388), + [anon_sym_f64] = ACTIONS(3388), + [anon_sym_bool] = ACTIONS(3388), + [anon_sym_str] = ACTIONS(3388), + [anon_sym_char] = ACTIONS(3388), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_PIPE] = ACTIONS(3386), + [anon_sym_LT] = ACTIONS(3386), + [anon_sym_DOT_DOT] = ACTIONS(3386), + [anon_sym_COLON_COLON] = ACTIONS(3386), + [anon_sym_POUND] = ACTIONS(3386), + [anon_sym_SQUOTE] = ACTIONS(3388), + [anon_sym_async] = ACTIONS(3388), + [anon_sym_break] = ACTIONS(3388), + [anon_sym_const] = ACTIONS(3388), + [anon_sym_continue] = ACTIONS(3388), + [anon_sym_default] = ACTIONS(3388), + [anon_sym_enum] = ACTIONS(3388), + [anon_sym_fn] = ACTIONS(3388), + [anon_sym_for] = ACTIONS(3388), + [anon_sym_gen] = ACTIONS(3388), + [anon_sym_if] = ACTIONS(3388), + [anon_sym_impl] = ACTIONS(3388), + [anon_sym_let] = ACTIONS(3388), + [anon_sym_loop] = ACTIONS(3388), + [anon_sym_match] = ACTIONS(3388), + [anon_sym_mod] = ACTIONS(3388), + [anon_sym_pub] = ACTIONS(3388), + [anon_sym_return] = ACTIONS(3388), + [anon_sym_static] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(3388), + [anon_sym_trait] = ACTIONS(3388), + [anon_sym_type] = ACTIONS(3388), + [anon_sym_union] = ACTIONS(3388), + [anon_sym_unsafe] = ACTIONS(3388), + [anon_sym_use] = ACTIONS(3388), + [anon_sym_while] = ACTIONS(3388), + [anon_sym_extern] = ACTIONS(3388), + [anon_sym_yield] = ACTIONS(3388), + [anon_sym_move] = ACTIONS(3388), + [anon_sym_try] = ACTIONS(3388), + [sym_integer_literal] = ACTIONS(3386), + [aux_sym_string_literal_token1] = ACTIONS(3386), + [sym_char_literal] = ACTIONS(3386), + [anon_sym_true] = ACTIONS(3388), + [anon_sym_false] = ACTIONS(3388), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3388), + [sym_super] = ACTIONS(3388), + [sym_crate] = ACTIONS(3388), + [sym_metavariable] = ACTIONS(3386), + [sym__raw_string_literal_start] = ACTIONS(3386), + [sym_float_literal] = ACTIONS(3386), + }, + [STATE(875)] = { + [sym_line_comment] = STATE(875), + [sym_block_comment] = STATE(875), + [ts_builtin_sym_end] = ACTIONS(3390), + [sym_identifier] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3390), + [anon_sym_macro_rules_BANG] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3390), + [anon_sym_RBRACE] = ACTIONS(3390), + [anon_sym_STAR] = ACTIONS(3390), + [anon_sym_u8] = ACTIONS(3392), + [anon_sym_i8] = ACTIONS(3392), + [anon_sym_u16] = ACTIONS(3392), + [anon_sym_i16] = ACTIONS(3392), + [anon_sym_u32] = ACTIONS(3392), + [anon_sym_i32] = ACTIONS(3392), + [anon_sym_u64] = ACTIONS(3392), + [anon_sym_i64] = ACTIONS(3392), + [anon_sym_u128] = ACTIONS(3392), + [anon_sym_i128] = ACTIONS(3392), + [anon_sym_isize] = ACTIONS(3392), + [anon_sym_usize] = ACTIONS(3392), + [anon_sym_f32] = ACTIONS(3392), + [anon_sym_f64] = ACTIONS(3392), + [anon_sym_bool] = ACTIONS(3392), + [anon_sym_str] = ACTIONS(3392), + [anon_sym_char] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3390), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3390), + [anon_sym_PIPE] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_DOT_DOT] = ACTIONS(3390), + [anon_sym_COLON_COLON] = ACTIONS(3390), + [anon_sym_POUND] = ACTIONS(3390), + [anon_sym_SQUOTE] = ACTIONS(3392), + [anon_sym_async] = ACTIONS(3392), + [anon_sym_break] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_continue] = ACTIONS(3392), + [anon_sym_default] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), + [anon_sym_fn] = ACTIONS(3392), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_gen] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_impl] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3392), + [anon_sym_loop] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_mod] = ACTIONS(3392), + [anon_sym_pub] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_trait] = ACTIONS(3392), + [anon_sym_type] = ACTIONS(3392), + [anon_sym_union] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3392), + [anon_sym_use] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_extern] = ACTIONS(3392), + [anon_sym_yield] = ACTIONS(3392), + [anon_sym_move] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [sym_integer_literal] = ACTIONS(3390), + [aux_sym_string_literal_token1] = ACTIONS(3390), + [sym_char_literal] = ACTIONS(3390), + [anon_sym_true] = ACTIONS(3392), + [anon_sym_false] = ACTIONS(3392), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3392), + [sym_super] = ACTIONS(3392), + [sym_crate] = ACTIONS(3392), + [sym_metavariable] = ACTIONS(3390), + [sym__raw_string_literal_start] = ACTIONS(3390), + [sym_float_literal] = ACTIONS(3390), + }, + [STATE(876)] = { + [sym_line_comment] = STATE(876), + [sym_block_comment] = STATE(876), + [ts_builtin_sym_end] = ACTIONS(3394), + [sym_identifier] = ACTIONS(3396), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_macro_rules_BANG] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_RBRACE] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_u8] = ACTIONS(3396), + [anon_sym_i8] = ACTIONS(3396), + [anon_sym_u16] = ACTIONS(3396), + [anon_sym_i16] = ACTIONS(3396), + [anon_sym_u32] = ACTIONS(3396), + [anon_sym_i32] = ACTIONS(3396), + [anon_sym_u64] = ACTIONS(3396), + [anon_sym_i64] = ACTIONS(3396), + [anon_sym_u128] = ACTIONS(3396), + [anon_sym_i128] = ACTIONS(3396), + [anon_sym_isize] = ACTIONS(3396), + [anon_sym_usize] = ACTIONS(3396), + [anon_sym_f32] = ACTIONS(3396), + [anon_sym_f64] = ACTIONS(3396), + [anon_sym_bool] = ACTIONS(3396), + [anon_sym_str] = ACTIONS(3396), + [anon_sym_char] = ACTIONS(3396), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_DOT_DOT] = ACTIONS(3394), + [anon_sym_COLON_COLON] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(3394), + [anon_sym_SQUOTE] = ACTIONS(3396), + [anon_sym_async] = ACTIONS(3396), + [anon_sym_break] = ACTIONS(3396), + [anon_sym_const] = ACTIONS(3396), + [anon_sym_continue] = ACTIONS(3396), + [anon_sym_default] = ACTIONS(3396), + [anon_sym_enum] = ACTIONS(3396), + [anon_sym_fn] = ACTIONS(3396), + [anon_sym_for] = ACTIONS(3396), + [anon_sym_gen] = ACTIONS(3396), + [anon_sym_if] = ACTIONS(3396), + [anon_sym_impl] = ACTIONS(3396), + [anon_sym_let] = ACTIONS(3396), + [anon_sym_loop] = ACTIONS(3396), + [anon_sym_match] = ACTIONS(3396), + [anon_sym_mod] = ACTIONS(3396), + [anon_sym_pub] = ACTIONS(3396), + [anon_sym_return] = ACTIONS(3396), + [anon_sym_static] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(3396), + [anon_sym_trait] = ACTIONS(3396), + [anon_sym_type] = ACTIONS(3396), + [anon_sym_union] = ACTIONS(3396), + [anon_sym_unsafe] = ACTIONS(3396), + [anon_sym_use] = ACTIONS(3396), + [anon_sym_while] = ACTIONS(3396), + [anon_sym_extern] = ACTIONS(3396), + [anon_sym_yield] = ACTIONS(3396), + [anon_sym_move] = ACTIONS(3396), + [anon_sym_try] = ACTIONS(3396), + [sym_integer_literal] = ACTIONS(3394), + [aux_sym_string_literal_token1] = ACTIONS(3394), + [sym_char_literal] = ACTIONS(3394), + [anon_sym_true] = ACTIONS(3396), + [anon_sym_false] = ACTIONS(3396), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3396), + [sym_super] = ACTIONS(3396), + [sym_crate] = ACTIONS(3396), + [sym_metavariable] = ACTIONS(3394), + [sym__raw_string_literal_start] = ACTIONS(3394), + [sym_float_literal] = ACTIONS(3394), + }, + [STATE(877)] = { + [sym_line_comment] = STATE(877), + [sym_block_comment] = STATE(877), + [ts_builtin_sym_end] = ACTIONS(3398), + [sym_identifier] = ACTIONS(3400), + [anon_sym_SEMI] = ACTIONS(3398), + [anon_sym_macro_rules_BANG] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3398), + [anon_sym_RBRACE] = ACTIONS(3398), + [anon_sym_STAR] = ACTIONS(3398), + [anon_sym_u8] = ACTIONS(3400), + [anon_sym_i8] = ACTIONS(3400), + [anon_sym_u16] = ACTIONS(3400), + [anon_sym_i16] = ACTIONS(3400), + [anon_sym_u32] = ACTIONS(3400), + [anon_sym_i32] = ACTIONS(3400), + [anon_sym_u64] = ACTIONS(3400), + [anon_sym_i64] = ACTIONS(3400), + [anon_sym_u128] = ACTIONS(3400), + [anon_sym_i128] = ACTIONS(3400), + [anon_sym_isize] = ACTIONS(3400), + [anon_sym_usize] = ACTIONS(3400), + [anon_sym_f32] = ACTIONS(3400), + [anon_sym_f64] = ACTIONS(3400), + [anon_sym_bool] = ACTIONS(3400), + [anon_sym_str] = ACTIONS(3400), + [anon_sym_char] = ACTIONS(3400), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_AMP] = ACTIONS(3398), + [anon_sym_PIPE] = ACTIONS(3398), + [anon_sym_LT] = ACTIONS(3398), + [anon_sym_DOT_DOT] = ACTIONS(3398), + [anon_sym_COLON_COLON] = ACTIONS(3398), + [anon_sym_POUND] = ACTIONS(3398), + [anon_sym_SQUOTE] = ACTIONS(3400), + [anon_sym_async] = ACTIONS(3400), + [anon_sym_break] = ACTIONS(3400), + [anon_sym_const] = ACTIONS(3400), + [anon_sym_continue] = ACTIONS(3400), + [anon_sym_default] = ACTIONS(3400), + [anon_sym_enum] = ACTIONS(3400), + [anon_sym_fn] = ACTIONS(3400), + [anon_sym_for] = ACTIONS(3400), + [anon_sym_gen] = ACTIONS(3400), + [anon_sym_if] = ACTIONS(3400), + [anon_sym_impl] = ACTIONS(3400), + [anon_sym_let] = ACTIONS(3400), + [anon_sym_loop] = ACTIONS(3400), + [anon_sym_match] = ACTIONS(3400), + [anon_sym_mod] = ACTIONS(3400), + [anon_sym_pub] = ACTIONS(3400), + [anon_sym_return] = ACTIONS(3400), + [anon_sym_static] = ACTIONS(3400), + [anon_sym_struct] = ACTIONS(3400), + [anon_sym_trait] = ACTIONS(3400), + [anon_sym_type] = ACTIONS(3400), + [anon_sym_union] = ACTIONS(3400), + [anon_sym_unsafe] = ACTIONS(3400), + [anon_sym_use] = ACTIONS(3400), + [anon_sym_while] = ACTIONS(3400), + [anon_sym_extern] = ACTIONS(3400), + [anon_sym_yield] = ACTIONS(3400), + [anon_sym_move] = ACTIONS(3400), + [anon_sym_try] = ACTIONS(3400), + [sym_integer_literal] = ACTIONS(3398), + [aux_sym_string_literal_token1] = ACTIONS(3398), + [sym_char_literal] = ACTIONS(3398), + [anon_sym_true] = ACTIONS(3400), + [anon_sym_false] = ACTIONS(3400), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3400), + [sym_super] = ACTIONS(3400), + [sym_crate] = ACTIONS(3400), + [sym_metavariable] = ACTIONS(3398), + [sym__raw_string_literal_start] = ACTIONS(3398), + [sym_float_literal] = ACTIONS(3398), + }, + [STATE(878)] = { + [sym_line_comment] = STATE(878), + [sym_block_comment] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(3402), + [sym_identifier] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_macro_rules_BANG] = ACTIONS(3402), + [anon_sym_LPAREN] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3402), + [anon_sym_RBRACE] = ACTIONS(3402), + [anon_sym_STAR] = ACTIONS(3402), + [anon_sym_u8] = ACTIONS(3404), + [anon_sym_i8] = ACTIONS(3404), + [anon_sym_u16] = ACTIONS(3404), + [anon_sym_i16] = ACTIONS(3404), + [anon_sym_u32] = ACTIONS(3404), + [anon_sym_i32] = ACTIONS(3404), + [anon_sym_u64] = ACTIONS(3404), + [anon_sym_i64] = ACTIONS(3404), + [anon_sym_u128] = ACTIONS(3404), + [anon_sym_i128] = ACTIONS(3404), + [anon_sym_isize] = ACTIONS(3404), + [anon_sym_usize] = ACTIONS(3404), + [anon_sym_f32] = ACTIONS(3404), + [anon_sym_f64] = ACTIONS(3404), + [anon_sym_bool] = ACTIONS(3404), + [anon_sym_str] = ACTIONS(3404), + [anon_sym_char] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_BANG] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_DOT_DOT] = ACTIONS(3402), + [anon_sym_COLON_COLON] = ACTIONS(3402), + [anon_sym_POUND] = ACTIONS(3402), + [anon_sym_SQUOTE] = ACTIONS(3404), + [anon_sym_async] = ACTIONS(3404), + [anon_sym_break] = ACTIONS(3404), + [anon_sym_const] = ACTIONS(3404), + [anon_sym_continue] = ACTIONS(3404), + [anon_sym_default] = ACTIONS(3404), + [anon_sym_enum] = ACTIONS(3404), + [anon_sym_fn] = ACTIONS(3404), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_gen] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_impl] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_loop] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_mod] = ACTIONS(3404), + [anon_sym_pub] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_static] = ACTIONS(3404), + [anon_sym_struct] = ACTIONS(3404), + [anon_sym_trait] = ACTIONS(3404), + [anon_sym_type] = ACTIONS(3404), + [anon_sym_union] = ACTIONS(3404), + [anon_sym_unsafe] = ACTIONS(3404), + [anon_sym_use] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_extern] = ACTIONS(3404), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_move] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [sym_integer_literal] = ACTIONS(3402), + [aux_sym_string_literal_token1] = ACTIONS(3402), + [sym_char_literal] = ACTIONS(3402), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3404), + [sym_super] = ACTIONS(3404), + [sym_crate] = ACTIONS(3404), + [sym_metavariable] = ACTIONS(3402), + [sym__raw_string_literal_start] = ACTIONS(3402), + [sym_float_literal] = ACTIONS(3402), + }, + [STATE(879)] = { + [sym_line_comment] = STATE(879), + [sym_block_comment] = STATE(879), + [ts_builtin_sym_end] = ACTIONS(3406), + [sym_identifier] = ACTIONS(3408), + [anon_sym_SEMI] = ACTIONS(3406), + [anon_sym_macro_rules_BANG] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_RBRACE] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_u8] = ACTIONS(3408), + [anon_sym_i8] = ACTIONS(3408), + [anon_sym_u16] = ACTIONS(3408), + [anon_sym_i16] = ACTIONS(3408), + [anon_sym_u32] = ACTIONS(3408), + [anon_sym_i32] = ACTIONS(3408), + [anon_sym_u64] = ACTIONS(3408), + [anon_sym_i64] = ACTIONS(3408), + [anon_sym_u128] = ACTIONS(3408), + [anon_sym_i128] = ACTIONS(3408), + [anon_sym_isize] = ACTIONS(3408), + [anon_sym_usize] = ACTIONS(3408), + [anon_sym_f32] = ACTIONS(3408), + [anon_sym_f64] = ACTIONS(3408), + [anon_sym_bool] = ACTIONS(3408), + [anon_sym_str] = ACTIONS(3408), + [anon_sym_char] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_DOT_DOT] = ACTIONS(3406), + [anon_sym_COLON_COLON] = ACTIONS(3406), + [anon_sym_POUND] = ACTIONS(3406), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_async] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_default] = ACTIONS(3408), + [anon_sym_enum] = ACTIONS(3408), + [anon_sym_fn] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_gen] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_impl] = ACTIONS(3408), + [anon_sym_let] = ACTIONS(3408), + [anon_sym_loop] = ACTIONS(3408), + [anon_sym_match] = ACTIONS(3408), + [anon_sym_mod] = ACTIONS(3408), + [anon_sym_pub] = ACTIONS(3408), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3408), + [anon_sym_struct] = ACTIONS(3408), + [anon_sym_trait] = ACTIONS(3408), + [anon_sym_type] = ACTIONS(3408), + [anon_sym_union] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3408), + [anon_sym_use] = ACTIONS(3408), + [anon_sym_while] = ACTIONS(3408), + [anon_sym_extern] = ACTIONS(3408), + [anon_sym_yield] = ACTIONS(3408), + [anon_sym_move] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3408), + [sym_integer_literal] = ACTIONS(3406), + [aux_sym_string_literal_token1] = ACTIONS(3406), + [sym_char_literal] = ACTIONS(3406), + [anon_sym_true] = ACTIONS(3408), + [anon_sym_false] = ACTIONS(3408), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3408), + [sym_super] = ACTIONS(3408), + [sym_crate] = ACTIONS(3408), + [sym_metavariable] = ACTIONS(3406), + [sym__raw_string_literal_start] = ACTIONS(3406), + [sym_float_literal] = ACTIONS(3406), + }, + [STATE(880)] = { + [sym_line_comment] = STATE(880), + [sym_block_comment] = STATE(880), + [ts_builtin_sym_end] = ACTIONS(3410), + [sym_identifier] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym_macro_rules_BANG] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_RBRACE] = ACTIONS(3410), + [anon_sym_STAR] = ACTIONS(3410), + [anon_sym_u8] = ACTIONS(3412), + [anon_sym_i8] = ACTIONS(3412), + [anon_sym_u16] = ACTIONS(3412), + [anon_sym_i16] = ACTIONS(3412), + [anon_sym_u32] = ACTIONS(3412), + [anon_sym_i32] = ACTIONS(3412), + [anon_sym_u64] = ACTIONS(3412), + [anon_sym_i64] = ACTIONS(3412), + [anon_sym_u128] = ACTIONS(3412), + [anon_sym_i128] = ACTIONS(3412), + [anon_sym_isize] = ACTIONS(3412), + [anon_sym_usize] = ACTIONS(3412), + [anon_sym_f32] = ACTIONS(3412), + [anon_sym_f64] = ACTIONS(3412), + [anon_sym_bool] = ACTIONS(3412), + [anon_sym_str] = ACTIONS(3412), + [anon_sym_char] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3410), + [anon_sym_LT] = ACTIONS(3410), + [anon_sym_DOT_DOT] = ACTIONS(3410), + [anon_sym_COLON_COLON] = ACTIONS(3410), + [anon_sym_POUND] = ACTIONS(3410), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_async] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_default] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), + [anon_sym_fn] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_gen] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_impl] = ACTIONS(3412), + [anon_sym_let] = ACTIONS(3412), + [anon_sym_loop] = ACTIONS(3412), + [anon_sym_match] = ACTIONS(3412), + [anon_sym_mod] = ACTIONS(3412), + [anon_sym_pub] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(3412), + [anon_sym_trait] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_union] = ACTIONS(3412), + [anon_sym_unsafe] = ACTIONS(3412), + [anon_sym_use] = ACTIONS(3412), + [anon_sym_while] = ACTIONS(3412), + [anon_sym_extern] = ACTIONS(3412), + [anon_sym_yield] = ACTIONS(3412), + [anon_sym_move] = ACTIONS(3412), + [anon_sym_try] = ACTIONS(3412), + [sym_integer_literal] = ACTIONS(3410), + [aux_sym_string_literal_token1] = ACTIONS(3410), + [sym_char_literal] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3412), + [sym_super] = ACTIONS(3412), + [sym_crate] = ACTIONS(3412), + [sym_metavariable] = ACTIONS(3410), + [sym__raw_string_literal_start] = ACTIONS(3410), + [sym_float_literal] = ACTIONS(3410), + }, + [STATE(881)] = { + [sym_line_comment] = STATE(881), + [sym_block_comment] = STATE(881), + [ts_builtin_sym_end] = ACTIONS(3414), + [sym_identifier] = ACTIONS(3416), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_macro_rules_BANG] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3414), + [anon_sym_RBRACE] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3414), + [anon_sym_u8] = ACTIONS(3416), + [anon_sym_i8] = ACTIONS(3416), + [anon_sym_u16] = ACTIONS(3416), + [anon_sym_i16] = ACTIONS(3416), + [anon_sym_u32] = ACTIONS(3416), + [anon_sym_i32] = ACTIONS(3416), + [anon_sym_u64] = ACTIONS(3416), + [anon_sym_i64] = ACTIONS(3416), + [anon_sym_u128] = ACTIONS(3416), + [anon_sym_i128] = ACTIONS(3416), + [anon_sym_isize] = ACTIONS(3416), + [anon_sym_usize] = ACTIONS(3416), + [anon_sym_f32] = ACTIONS(3416), + [anon_sym_f64] = ACTIONS(3416), + [anon_sym_bool] = ACTIONS(3416), + [anon_sym_str] = ACTIONS(3416), + [anon_sym_char] = ACTIONS(3416), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_DOT_DOT] = ACTIONS(3414), + [anon_sym_COLON_COLON] = ACTIONS(3414), + [anon_sym_POUND] = ACTIONS(3414), + [anon_sym_SQUOTE] = ACTIONS(3416), + [anon_sym_async] = ACTIONS(3416), + [anon_sym_break] = ACTIONS(3416), + [anon_sym_const] = ACTIONS(3416), + [anon_sym_continue] = ACTIONS(3416), + [anon_sym_default] = ACTIONS(3416), + [anon_sym_enum] = ACTIONS(3416), + [anon_sym_fn] = ACTIONS(3416), + [anon_sym_for] = ACTIONS(3416), + [anon_sym_gen] = ACTIONS(3416), + [anon_sym_if] = ACTIONS(3416), + [anon_sym_impl] = ACTIONS(3416), + [anon_sym_let] = ACTIONS(3416), + [anon_sym_loop] = ACTIONS(3416), + [anon_sym_match] = ACTIONS(3416), + [anon_sym_mod] = ACTIONS(3416), + [anon_sym_pub] = ACTIONS(3416), + [anon_sym_return] = ACTIONS(3416), + [anon_sym_static] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(3416), + [anon_sym_trait] = ACTIONS(3416), + [anon_sym_type] = ACTIONS(3416), + [anon_sym_union] = ACTIONS(3416), + [anon_sym_unsafe] = ACTIONS(3416), + [anon_sym_use] = ACTIONS(3416), + [anon_sym_while] = ACTIONS(3416), + [anon_sym_extern] = ACTIONS(3416), + [anon_sym_yield] = ACTIONS(3416), + [anon_sym_move] = ACTIONS(3416), + [anon_sym_try] = ACTIONS(3416), + [sym_integer_literal] = ACTIONS(3414), + [aux_sym_string_literal_token1] = ACTIONS(3414), + [sym_char_literal] = ACTIONS(3414), + [anon_sym_true] = ACTIONS(3416), + [anon_sym_false] = ACTIONS(3416), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3416), + [sym_super] = ACTIONS(3416), + [sym_crate] = ACTIONS(3416), + [sym_metavariable] = ACTIONS(3414), + [sym__raw_string_literal_start] = ACTIONS(3414), + [sym_float_literal] = ACTIONS(3414), + }, + [STATE(882)] = { + [sym_line_comment] = STATE(882), + [sym_block_comment] = STATE(882), + [ts_builtin_sym_end] = ACTIONS(3418), + [sym_identifier] = ACTIONS(3420), + [anon_sym_SEMI] = ACTIONS(3418), + [anon_sym_macro_rules_BANG] = ACTIONS(3418), + [anon_sym_LPAREN] = ACTIONS(3418), + [anon_sym_LBRACK] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_RBRACE] = ACTIONS(3418), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_u8] = ACTIONS(3420), + [anon_sym_i8] = ACTIONS(3420), + [anon_sym_u16] = ACTIONS(3420), + [anon_sym_i16] = ACTIONS(3420), + [anon_sym_u32] = ACTIONS(3420), + [anon_sym_i32] = ACTIONS(3420), + [anon_sym_u64] = ACTIONS(3420), + [anon_sym_i64] = ACTIONS(3420), + [anon_sym_u128] = ACTIONS(3420), + [anon_sym_i128] = ACTIONS(3420), + [anon_sym_isize] = ACTIONS(3420), + [anon_sym_usize] = ACTIONS(3420), + [anon_sym_f32] = ACTIONS(3420), + [anon_sym_f64] = ACTIONS(3420), + [anon_sym_bool] = ACTIONS(3420), + [anon_sym_str] = ACTIONS(3420), + [anon_sym_char] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3418), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_AMP] = ACTIONS(3418), + [anon_sym_PIPE] = ACTIONS(3418), + [anon_sym_LT] = ACTIONS(3418), + [anon_sym_DOT_DOT] = ACTIONS(3418), + [anon_sym_COLON_COLON] = ACTIONS(3418), + [anon_sym_POUND] = ACTIONS(3418), + [anon_sym_SQUOTE] = ACTIONS(3420), + [anon_sym_async] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_const] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_default] = ACTIONS(3420), + [anon_sym_enum] = ACTIONS(3420), + [anon_sym_fn] = ACTIONS(3420), + [anon_sym_for] = ACTIONS(3420), + [anon_sym_gen] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_impl] = ACTIONS(3420), + [anon_sym_let] = ACTIONS(3420), + [anon_sym_loop] = ACTIONS(3420), + [anon_sym_match] = ACTIONS(3420), + [anon_sym_mod] = ACTIONS(3420), + [anon_sym_pub] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_static] = ACTIONS(3420), + [anon_sym_struct] = ACTIONS(3420), + [anon_sym_trait] = ACTIONS(3420), + [anon_sym_type] = ACTIONS(3420), + [anon_sym_union] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3420), + [anon_sym_use] = ACTIONS(3420), + [anon_sym_while] = ACTIONS(3420), + [anon_sym_extern] = ACTIONS(3420), + [anon_sym_yield] = ACTIONS(3420), + [anon_sym_move] = ACTIONS(3420), + [anon_sym_try] = ACTIONS(3420), + [sym_integer_literal] = ACTIONS(3418), + [aux_sym_string_literal_token1] = ACTIONS(3418), + [sym_char_literal] = ACTIONS(3418), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3420), + [sym_super] = ACTIONS(3420), + [sym_crate] = ACTIONS(3420), + [sym_metavariable] = ACTIONS(3418), + [sym__raw_string_literal_start] = ACTIONS(3418), + [sym_float_literal] = ACTIONS(3418), + }, + [STATE(883)] = { + [sym_line_comment] = STATE(883), + [sym_block_comment] = STATE(883), + [ts_builtin_sym_end] = ACTIONS(3422), + [sym_identifier] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_macro_rules_BANG] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3422), + [anon_sym_u8] = ACTIONS(3424), + [anon_sym_i8] = ACTIONS(3424), + [anon_sym_u16] = ACTIONS(3424), + [anon_sym_i16] = ACTIONS(3424), + [anon_sym_u32] = ACTIONS(3424), + [anon_sym_i32] = ACTIONS(3424), + [anon_sym_u64] = ACTIONS(3424), + [anon_sym_i64] = ACTIONS(3424), + [anon_sym_u128] = ACTIONS(3424), + [anon_sym_i128] = ACTIONS(3424), + [anon_sym_isize] = ACTIONS(3424), + [anon_sym_usize] = ACTIONS(3424), + [anon_sym_f32] = ACTIONS(3424), + [anon_sym_f64] = ACTIONS(3424), + [anon_sym_bool] = ACTIONS(3424), + [anon_sym_str] = ACTIONS(3424), + [anon_sym_char] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3422), + [anon_sym_POUND] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3424), + [anon_sym_async] = ACTIONS(3424), + [anon_sym_break] = ACTIONS(3424), + [anon_sym_const] = ACTIONS(3424), + [anon_sym_continue] = ACTIONS(3424), + [anon_sym_default] = ACTIONS(3424), + [anon_sym_enum] = ACTIONS(3424), + [anon_sym_fn] = ACTIONS(3424), + [anon_sym_for] = ACTIONS(3424), + [anon_sym_gen] = ACTIONS(3424), + [anon_sym_if] = ACTIONS(3424), + [anon_sym_impl] = ACTIONS(3424), + [anon_sym_let] = ACTIONS(3424), + [anon_sym_loop] = ACTIONS(3424), + [anon_sym_match] = ACTIONS(3424), + [anon_sym_mod] = ACTIONS(3424), + [anon_sym_pub] = ACTIONS(3424), + [anon_sym_return] = ACTIONS(3424), + [anon_sym_static] = ACTIONS(3424), + [anon_sym_struct] = ACTIONS(3424), + [anon_sym_trait] = ACTIONS(3424), + [anon_sym_type] = ACTIONS(3424), + [anon_sym_union] = ACTIONS(3424), + [anon_sym_unsafe] = ACTIONS(3424), + [anon_sym_use] = ACTIONS(3424), + [anon_sym_while] = ACTIONS(3424), + [anon_sym_extern] = ACTIONS(3424), + [anon_sym_yield] = ACTIONS(3424), + [anon_sym_move] = ACTIONS(3424), + [anon_sym_try] = ACTIONS(3424), + [sym_integer_literal] = ACTIONS(3422), + [aux_sym_string_literal_token1] = ACTIONS(3422), + [sym_char_literal] = ACTIONS(3422), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3424), + [sym_super] = ACTIONS(3424), + [sym_crate] = ACTIONS(3424), + [sym_metavariable] = ACTIONS(3422), + [sym__raw_string_literal_start] = ACTIONS(3422), + [sym_float_literal] = ACTIONS(3422), + }, + [STATE(884)] = { + [sym_line_comment] = STATE(884), + [sym_block_comment] = STATE(884), + [ts_builtin_sym_end] = ACTIONS(3426), + [sym_identifier] = ACTIONS(3428), + [anon_sym_SEMI] = ACTIONS(3426), + [anon_sym_macro_rules_BANG] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_RBRACE] = ACTIONS(3426), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_u8] = ACTIONS(3428), + [anon_sym_i8] = ACTIONS(3428), + [anon_sym_u16] = ACTIONS(3428), + [anon_sym_i16] = ACTIONS(3428), + [anon_sym_u32] = ACTIONS(3428), + [anon_sym_i32] = ACTIONS(3428), + [anon_sym_u64] = ACTIONS(3428), + [anon_sym_i64] = ACTIONS(3428), + [anon_sym_u128] = ACTIONS(3428), + [anon_sym_i128] = ACTIONS(3428), + [anon_sym_isize] = ACTIONS(3428), + [anon_sym_usize] = ACTIONS(3428), + [anon_sym_f32] = ACTIONS(3428), + [anon_sym_f64] = ACTIONS(3428), + [anon_sym_bool] = ACTIONS(3428), + [anon_sym_str] = ACTIONS(3428), + [anon_sym_char] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_BANG] = ACTIONS(3426), + [anon_sym_AMP] = ACTIONS(3426), + [anon_sym_PIPE] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3426), + [anon_sym_DOT_DOT] = ACTIONS(3426), + [anon_sym_COLON_COLON] = ACTIONS(3426), + [anon_sym_POUND] = ACTIONS(3426), + [anon_sym_SQUOTE] = ACTIONS(3428), + [anon_sym_async] = ACTIONS(3428), + [anon_sym_break] = ACTIONS(3428), + [anon_sym_const] = ACTIONS(3428), + [anon_sym_continue] = ACTIONS(3428), + [anon_sym_default] = ACTIONS(3428), + [anon_sym_enum] = ACTIONS(3428), + [anon_sym_fn] = ACTIONS(3428), + [anon_sym_for] = ACTIONS(3428), + [anon_sym_gen] = ACTIONS(3428), + [anon_sym_if] = ACTIONS(3428), + [anon_sym_impl] = ACTIONS(3428), + [anon_sym_let] = ACTIONS(3428), + [anon_sym_loop] = ACTIONS(3428), + [anon_sym_match] = ACTIONS(3428), + [anon_sym_mod] = ACTIONS(3428), + [anon_sym_pub] = ACTIONS(3428), + [anon_sym_return] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3428), + [anon_sym_struct] = ACTIONS(3428), + [anon_sym_trait] = ACTIONS(3428), + [anon_sym_type] = ACTIONS(3428), + [anon_sym_union] = ACTIONS(3428), + [anon_sym_unsafe] = ACTIONS(3428), + [anon_sym_use] = ACTIONS(3428), + [anon_sym_while] = ACTIONS(3428), + [anon_sym_extern] = ACTIONS(3428), + [anon_sym_yield] = ACTIONS(3428), + [anon_sym_move] = ACTIONS(3428), + [anon_sym_try] = ACTIONS(3428), + [sym_integer_literal] = ACTIONS(3426), + [aux_sym_string_literal_token1] = ACTIONS(3426), + [sym_char_literal] = ACTIONS(3426), + [anon_sym_true] = ACTIONS(3428), + [anon_sym_false] = ACTIONS(3428), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3428), + [sym_super] = ACTIONS(3428), + [sym_crate] = ACTIONS(3428), + [sym_metavariable] = ACTIONS(3426), + [sym__raw_string_literal_start] = ACTIONS(3426), + [sym_float_literal] = ACTIONS(3426), + }, + [STATE(885)] = { + [sym_line_comment] = STATE(885), + [sym_block_comment] = STATE(885), + [ts_builtin_sym_end] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3432), + [anon_sym_SEMI] = ACTIONS(3430), + [anon_sym_macro_rules_BANG] = ACTIONS(3430), + [anon_sym_LPAREN] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3430), + [anon_sym_LBRACE] = ACTIONS(3430), + [anon_sym_RBRACE] = ACTIONS(3430), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_u8] = ACTIONS(3432), + [anon_sym_i8] = ACTIONS(3432), + [anon_sym_u16] = ACTIONS(3432), + [anon_sym_i16] = ACTIONS(3432), + [anon_sym_u32] = ACTIONS(3432), + [anon_sym_i32] = ACTIONS(3432), + [anon_sym_u64] = ACTIONS(3432), + [anon_sym_i64] = ACTIONS(3432), + [anon_sym_u128] = ACTIONS(3432), + [anon_sym_i128] = ACTIONS(3432), + [anon_sym_isize] = ACTIONS(3432), + [anon_sym_usize] = ACTIONS(3432), + [anon_sym_f32] = ACTIONS(3432), + [anon_sym_f64] = ACTIONS(3432), + [anon_sym_bool] = ACTIONS(3432), + [anon_sym_str] = ACTIONS(3432), + [anon_sym_char] = ACTIONS(3432), + [anon_sym_DASH] = ACTIONS(3430), + [anon_sym_BANG] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3430), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_LT] = ACTIONS(3430), + [anon_sym_DOT_DOT] = ACTIONS(3430), + [anon_sym_COLON_COLON] = ACTIONS(3430), + [anon_sym_POUND] = ACTIONS(3430), + [anon_sym_SQUOTE] = ACTIONS(3432), + [anon_sym_async] = ACTIONS(3432), + [anon_sym_break] = ACTIONS(3432), + [anon_sym_const] = ACTIONS(3432), + [anon_sym_continue] = ACTIONS(3432), + [anon_sym_default] = ACTIONS(3432), + [anon_sym_enum] = ACTIONS(3432), + [anon_sym_fn] = ACTIONS(3432), + [anon_sym_for] = ACTIONS(3432), + [anon_sym_gen] = ACTIONS(3432), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_impl] = ACTIONS(3432), + [anon_sym_let] = ACTIONS(3432), + [anon_sym_loop] = ACTIONS(3432), + [anon_sym_match] = ACTIONS(3432), + [anon_sym_mod] = ACTIONS(3432), + [anon_sym_pub] = ACTIONS(3432), + [anon_sym_return] = ACTIONS(3432), + [anon_sym_static] = ACTIONS(3432), + [anon_sym_struct] = ACTIONS(3432), + [anon_sym_trait] = ACTIONS(3432), + [anon_sym_type] = ACTIONS(3432), + [anon_sym_union] = ACTIONS(3432), + [anon_sym_unsafe] = ACTIONS(3432), + [anon_sym_use] = ACTIONS(3432), + [anon_sym_while] = ACTIONS(3432), + [anon_sym_extern] = ACTIONS(3432), + [anon_sym_yield] = ACTIONS(3432), + [anon_sym_move] = ACTIONS(3432), + [anon_sym_try] = ACTIONS(3432), + [sym_integer_literal] = ACTIONS(3430), + [aux_sym_string_literal_token1] = ACTIONS(3430), + [sym_char_literal] = ACTIONS(3430), + [anon_sym_true] = ACTIONS(3432), + [anon_sym_false] = ACTIONS(3432), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3432), + [sym_super] = ACTIONS(3432), + [sym_crate] = ACTIONS(3432), + [sym_metavariable] = ACTIONS(3430), + [sym__raw_string_literal_start] = ACTIONS(3430), + [sym_float_literal] = ACTIONS(3430), + }, + [STATE(886)] = { + [sym_line_comment] = STATE(886), + [sym_block_comment] = STATE(886), + [ts_builtin_sym_end] = ACTIONS(3434), + [sym_identifier] = ACTIONS(3436), + [anon_sym_SEMI] = ACTIONS(3434), + [anon_sym_macro_rules_BANG] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3434), + [anon_sym_RBRACE] = ACTIONS(3434), + [anon_sym_STAR] = ACTIONS(3434), + [anon_sym_u8] = ACTIONS(3436), + [anon_sym_i8] = ACTIONS(3436), + [anon_sym_u16] = ACTIONS(3436), + [anon_sym_i16] = ACTIONS(3436), + [anon_sym_u32] = ACTIONS(3436), + [anon_sym_i32] = ACTIONS(3436), + [anon_sym_u64] = ACTIONS(3436), + [anon_sym_i64] = ACTIONS(3436), + [anon_sym_u128] = ACTIONS(3436), + [anon_sym_i128] = ACTIONS(3436), + [anon_sym_isize] = ACTIONS(3436), + [anon_sym_usize] = ACTIONS(3436), + [anon_sym_f32] = ACTIONS(3436), + [anon_sym_f64] = ACTIONS(3436), + [anon_sym_bool] = ACTIONS(3436), + [anon_sym_str] = ACTIONS(3436), + [anon_sym_char] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_BANG] = ACTIONS(3434), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_DOT_DOT] = ACTIONS(3434), + [anon_sym_COLON_COLON] = ACTIONS(3434), + [anon_sym_POUND] = ACTIONS(3434), + [anon_sym_SQUOTE] = ACTIONS(3436), + [anon_sym_async] = ACTIONS(3436), + [anon_sym_break] = ACTIONS(3436), + [anon_sym_const] = ACTIONS(3436), + [anon_sym_continue] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3436), + [anon_sym_enum] = ACTIONS(3436), + [anon_sym_fn] = ACTIONS(3436), + [anon_sym_for] = ACTIONS(3436), + [anon_sym_gen] = ACTIONS(3436), + [anon_sym_if] = ACTIONS(3436), + [anon_sym_impl] = ACTIONS(3436), + [anon_sym_let] = ACTIONS(3436), + [anon_sym_loop] = ACTIONS(3436), + [anon_sym_match] = ACTIONS(3436), + [anon_sym_mod] = ACTIONS(3436), + [anon_sym_pub] = ACTIONS(3436), + [anon_sym_return] = ACTIONS(3436), + [anon_sym_static] = ACTIONS(3436), + [anon_sym_struct] = ACTIONS(3436), + [anon_sym_trait] = ACTIONS(3436), + [anon_sym_type] = ACTIONS(3436), + [anon_sym_union] = ACTIONS(3436), + [anon_sym_unsafe] = ACTIONS(3436), + [anon_sym_use] = ACTIONS(3436), + [anon_sym_while] = ACTIONS(3436), + [anon_sym_extern] = ACTIONS(3436), + [anon_sym_yield] = ACTIONS(3436), + [anon_sym_move] = ACTIONS(3436), + [anon_sym_try] = ACTIONS(3436), + [sym_integer_literal] = ACTIONS(3434), + [aux_sym_string_literal_token1] = ACTIONS(3434), + [sym_char_literal] = ACTIONS(3434), + [anon_sym_true] = ACTIONS(3436), + [anon_sym_false] = ACTIONS(3436), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3436), + [sym_super] = ACTIONS(3436), + [sym_crate] = ACTIONS(3436), + [sym_metavariable] = ACTIONS(3434), + [sym__raw_string_literal_start] = ACTIONS(3434), + [sym_float_literal] = ACTIONS(3434), + }, + [STATE(887)] = { + [sym_line_comment] = STATE(887), + [sym_block_comment] = STATE(887), + [ts_builtin_sym_end] = ACTIONS(3438), + [sym_identifier] = ACTIONS(3440), + [anon_sym_SEMI] = ACTIONS(3438), + [anon_sym_macro_rules_BANG] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(3438), + [anon_sym_STAR] = ACTIONS(3438), + [anon_sym_u8] = ACTIONS(3440), + [anon_sym_i8] = ACTIONS(3440), + [anon_sym_u16] = ACTIONS(3440), + [anon_sym_i16] = ACTIONS(3440), + [anon_sym_u32] = ACTIONS(3440), + [anon_sym_i32] = ACTIONS(3440), + [anon_sym_u64] = ACTIONS(3440), + [anon_sym_i64] = ACTIONS(3440), + [anon_sym_u128] = ACTIONS(3440), + [anon_sym_i128] = ACTIONS(3440), + [anon_sym_isize] = ACTIONS(3440), + [anon_sym_usize] = ACTIONS(3440), + [anon_sym_f32] = ACTIONS(3440), + [anon_sym_f64] = ACTIONS(3440), + [anon_sym_bool] = ACTIONS(3440), + [anon_sym_str] = ACTIONS(3440), + [anon_sym_char] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_BANG] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_LT] = ACTIONS(3438), + [anon_sym_DOT_DOT] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3438), + [anon_sym_POUND] = ACTIONS(3438), + [anon_sym_SQUOTE] = ACTIONS(3440), + [anon_sym_async] = ACTIONS(3440), + [anon_sym_break] = ACTIONS(3440), + [anon_sym_const] = ACTIONS(3440), + [anon_sym_continue] = ACTIONS(3440), + [anon_sym_default] = ACTIONS(3440), + [anon_sym_enum] = ACTIONS(3440), + [anon_sym_fn] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3440), + [anon_sym_gen] = ACTIONS(3440), + [anon_sym_if] = ACTIONS(3440), + [anon_sym_impl] = ACTIONS(3440), + [anon_sym_let] = ACTIONS(3440), + [anon_sym_loop] = ACTIONS(3440), + [anon_sym_match] = ACTIONS(3440), + [anon_sym_mod] = ACTIONS(3440), + [anon_sym_pub] = ACTIONS(3440), + [anon_sym_return] = ACTIONS(3440), + [anon_sym_static] = ACTIONS(3440), + [anon_sym_struct] = ACTIONS(3440), + [anon_sym_trait] = ACTIONS(3440), + [anon_sym_type] = ACTIONS(3440), + [anon_sym_union] = ACTIONS(3440), + [anon_sym_unsafe] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3440), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_extern] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3440), + [anon_sym_move] = ACTIONS(3440), + [anon_sym_try] = ACTIONS(3440), + [sym_integer_literal] = ACTIONS(3438), + [aux_sym_string_literal_token1] = ACTIONS(3438), + [sym_char_literal] = ACTIONS(3438), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3440), + [sym_super] = ACTIONS(3440), + [sym_crate] = ACTIONS(3440), + [sym_metavariable] = ACTIONS(3438), + [sym__raw_string_literal_start] = ACTIONS(3438), + [sym_float_literal] = ACTIONS(3438), + }, + [STATE(888)] = { + [sym_line_comment] = STATE(888), + [sym_block_comment] = STATE(888), + [ts_builtin_sym_end] = ACTIONS(3442), + [sym_identifier] = ACTIONS(3444), + [anon_sym_SEMI] = ACTIONS(3442), + [anon_sym_macro_rules_BANG] = ACTIONS(3442), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_RBRACE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3442), + [anon_sym_u8] = ACTIONS(3444), + [anon_sym_i8] = ACTIONS(3444), + [anon_sym_u16] = ACTIONS(3444), + [anon_sym_i16] = ACTIONS(3444), + [anon_sym_u32] = ACTIONS(3444), + [anon_sym_i32] = ACTIONS(3444), + [anon_sym_u64] = ACTIONS(3444), + [anon_sym_i64] = ACTIONS(3444), + [anon_sym_u128] = ACTIONS(3444), + [anon_sym_i128] = ACTIONS(3444), + [anon_sym_isize] = ACTIONS(3444), + [anon_sym_usize] = ACTIONS(3444), + [anon_sym_f32] = ACTIONS(3444), + [anon_sym_f64] = ACTIONS(3444), + [anon_sym_bool] = ACTIONS(3444), + [anon_sym_str] = ACTIONS(3444), + [anon_sym_char] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_BANG] = ACTIONS(3442), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_PIPE] = ACTIONS(3442), + [anon_sym_LT] = ACTIONS(3442), + [anon_sym_DOT_DOT] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3442), + [anon_sym_POUND] = ACTIONS(3442), + [anon_sym_SQUOTE] = ACTIONS(3444), + [anon_sym_async] = ACTIONS(3444), + [anon_sym_break] = ACTIONS(3444), + [anon_sym_const] = ACTIONS(3444), + [anon_sym_continue] = ACTIONS(3444), + [anon_sym_default] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), + [anon_sym_fn] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3444), + [anon_sym_gen] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3444), + [anon_sym_impl] = ACTIONS(3444), + [anon_sym_let] = ACTIONS(3444), + [anon_sym_loop] = ACTIONS(3444), + [anon_sym_match] = ACTIONS(3444), + [anon_sym_mod] = ACTIONS(3444), + [anon_sym_pub] = ACTIONS(3444), + [anon_sym_return] = ACTIONS(3444), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_struct] = ACTIONS(3444), + [anon_sym_trait] = ACTIONS(3444), + [anon_sym_type] = ACTIONS(3444), + [anon_sym_union] = ACTIONS(3444), + [anon_sym_unsafe] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3444), + [anon_sym_while] = ACTIONS(3444), + [anon_sym_extern] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3444), + [anon_sym_move] = ACTIONS(3444), + [anon_sym_try] = ACTIONS(3444), + [sym_integer_literal] = ACTIONS(3442), + [aux_sym_string_literal_token1] = ACTIONS(3442), + [sym_char_literal] = ACTIONS(3442), + [anon_sym_true] = ACTIONS(3444), + [anon_sym_false] = ACTIONS(3444), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3444), + [sym_super] = ACTIONS(3444), + [sym_crate] = ACTIONS(3444), + [sym_metavariable] = ACTIONS(3442), + [sym__raw_string_literal_start] = ACTIONS(3442), + [sym_float_literal] = ACTIONS(3442), + }, + [STATE(889)] = { + [sym_line_comment] = STATE(889), + [sym_block_comment] = STATE(889), + [ts_builtin_sym_end] = ACTIONS(3446), + [sym_identifier] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym_macro_rules_BANG] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_u8] = ACTIONS(3448), + [anon_sym_i8] = ACTIONS(3448), + [anon_sym_u16] = ACTIONS(3448), + [anon_sym_i16] = ACTIONS(3448), + [anon_sym_u32] = ACTIONS(3448), + [anon_sym_i32] = ACTIONS(3448), + [anon_sym_u64] = ACTIONS(3448), + [anon_sym_i64] = ACTIONS(3448), + [anon_sym_u128] = ACTIONS(3448), + [anon_sym_i128] = ACTIONS(3448), + [anon_sym_isize] = ACTIONS(3448), + [anon_sym_usize] = ACTIONS(3448), + [anon_sym_f32] = ACTIONS(3448), + [anon_sym_f64] = ACTIONS(3448), + [anon_sym_bool] = ACTIONS(3448), + [anon_sym_str] = ACTIONS(3448), + [anon_sym_char] = ACTIONS(3448), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_PIPE] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(3446), + [anon_sym_DOT_DOT] = ACTIONS(3446), + [anon_sym_COLON_COLON] = ACTIONS(3446), + [anon_sym_POUND] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3448), + [anon_sym_async] = ACTIONS(3448), + [anon_sym_break] = ACTIONS(3448), + [anon_sym_const] = ACTIONS(3448), + [anon_sym_continue] = ACTIONS(3448), + [anon_sym_default] = ACTIONS(3448), + [anon_sym_enum] = ACTIONS(3448), + [anon_sym_fn] = ACTIONS(3448), + [anon_sym_for] = ACTIONS(3448), + [anon_sym_gen] = ACTIONS(3448), + [anon_sym_if] = ACTIONS(3448), + [anon_sym_impl] = ACTIONS(3448), + [anon_sym_let] = ACTIONS(3448), + [anon_sym_loop] = ACTIONS(3448), + [anon_sym_match] = ACTIONS(3448), + [anon_sym_mod] = ACTIONS(3448), + [anon_sym_pub] = ACTIONS(3448), + [anon_sym_return] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3448), + [anon_sym_struct] = ACTIONS(3448), + [anon_sym_trait] = ACTIONS(3448), + [anon_sym_type] = ACTIONS(3448), + [anon_sym_union] = ACTIONS(3448), + [anon_sym_unsafe] = ACTIONS(3448), + [anon_sym_use] = ACTIONS(3448), + [anon_sym_while] = ACTIONS(3448), + [anon_sym_extern] = ACTIONS(3448), + [anon_sym_yield] = ACTIONS(3448), + [anon_sym_move] = ACTIONS(3448), + [anon_sym_try] = ACTIONS(3448), + [sym_integer_literal] = ACTIONS(3446), + [aux_sym_string_literal_token1] = ACTIONS(3446), + [sym_char_literal] = ACTIONS(3446), + [anon_sym_true] = ACTIONS(3448), + [anon_sym_false] = ACTIONS(3448), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3448), + [sym_super] = ACTIONS(3448), + [sym_crate] = ACTIONS(3448), + [sym_metavariable] = ACTIONS(3446), + [sym__raw_string_literal_start] = ACTIONS(3446), + [sym_float_literal] = ACTIONS(3446), + }, + [STATE(890)] = { + [sym_line_comment] = STATE(890), + [sym_block_comment] = STATE(890), + [ts_builtin_sym_end] = ACTIONS(3450), + [sym_identifier] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3450), + [anon_sym_macro_rules_BANG] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3450), + [anon_sym_LBRACK] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3450), + [anon_sym_RBRACE] = ACTIONS(3450), + [anon_sym_STAR] = ACTIONS(3450), + [anon_sym_u8] = ACTIONS(3452), + [anon_sym_i8] = ACTIONS(3452), + [anon_sym_u16] = ACTIONS(3452), + [anon_sym_i16] = ACTIONS(3452), + [anon_sym_u32] = ACTIONS(3452), + [anon_sym_i32] = ACTIONS(3452), + [anon_sym_u64] = ACTIONS(3452), + [anon_sym_i64] = ACTIONS(3452), + [anon_sym_u128] = ACTIONS(3452), + [anon_sym_i128] = ACTIONS(3452), + [anon_sym_isize] = ACTIONS(3452), + [anon_sym_usize] = ACTIONS(3452), + [anon_sym_f32] = ACTIONS(3452), + [anon_sym_f64] = ACTIONS(3452), + [anon_sym_bool] = ACTIONS(3452), + [anon_sym_str] = ACTIONS(3452), + [anon_sym_char] = ACTIONS(3452), + [anon_sym_DASH] = ACTIONS(3450), + [anon_sym_BANG] = ACTIONS(3450), + [anon_sym_AMP] = ACTIONS(3450), + [anon_sym_PIPE] = ACTIONS(3450), + [anon_sym_LT] = ACTIONS(3450), + [anon_sym_DOT_DOT] = ACTIONS(3450), + [anon_sym_COLON_COLON] = ACTIONS(3450), + [anon_sym_POUND] = ACTIONS(3450), + [anon_sym_SQUOTE] = ACTIONS(3452), + [anon_sym_async] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_default] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_fn] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_gen] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_impl] = ACTIONS(3452), + [anon_sym_let] = ACTIONS(3452), + [anon_sym_loop] = ACTIONS(3452), + [anon_sym_match] = ACTIONS(3452), + [anon_sym_mod] = ACTIONS(3452), + [anon_sym_pub] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_trait] = ACTIONS(3452), + [anon_sym_type] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_unsafe] = ACTIONS(3452), + [anon_sym_use] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym_yield] = ACTIONS(3452), + [anon_sym_move] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [sym_integer_literal] = ACTIONS(3450), + [aux_sym_string_literal_token1] = ACTIONS(3450), + [sym_char_literal] = ACTIONS(3450), + [anon_sym_true] = ACTIONS(3452), + [anon_sym_false] = ACTIONS(3452), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3452), + [sym_super] = ACTIONS(3452), + [sym_crate] = ACTIONS(3452), + [sym_metavariable] = ACTIONS(3450), + [sym__raw_string_literal_start] = ACTIONS(3450), + [sym_float_literal] = ACTIONS(3450), + }, + [STATE(891)] = { + [sym_line_comment] = STATE(891), + [sym_block_comment] = STATE(891), + [ts_builtin_sym_end] = ACTIONS(3454), + [sym_identifier] = ACTIONS(3456), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym_macro_rules_BANG] = ACTIONS(3454), + [anon_sym_LPAREN] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_RBRACE] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_u8] = ACTIONS(3456), + [anon_sym_i8] = ACTIONS(3456), + [anon_sym_u16] = ACTIONS(3456), + [anon_sym_i16] = ACTIONS(3456), + [anon_sym_u32] = ACTIONS(3456), + [anon_sym_i32] = ACTIONS(3456), + [anon_sym_u64] = ACTIONS(3456), + [anon_sym_i64] = ACTIONS(3456), + [anon_sym_u128] = ACTIONS(3456), + [anon_sym_i128] = ACTIONS(3456), + [anon_sym_isize] = ACTIONS(3456), + [anon_sym_usize] = ACTIONS(3456), + [anon_sym_f32] = ACTIONS(3456), + [anon_sym_f64] = ACTIONS(3456), + [anon_sym_bool] = ACTIONS(3456), + [anon_sym_str] = ACTIONS(3456), + [anon_sym_char] = ACTIONS(3456), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3454), + [anon_sym_PIPE] = ACTIONS(3454), + [anon_sym_LT] = ACTIONS(3454), + [anon_sym_DOT_DOT] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_POUND] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3456), + [anon_sym_async] = ACTIONS(3456), + [anon_sym_break] = ACTIONS(3456), + [anon_sym_const] = ACTIONS(3456), + [anon_sym_continue] = ACTIONS(3456), + [anon_sym_default] = ACTIONS(3456), + [anon_sym_enum] = ACTIONS(3456), + [anon_sym_fn] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_gen] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_impl] = ACTIONS(3456), + [anon_sym_let] = ACTIONS(3456), + [anon_sym_loop] = ACTIONS(3456), + [anon_sym_match] = ACTIONS(3456), + [anon_sym_mod] = ACTIONS(3456), + [anon_sym_pub] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_static] = ACTIONS(3456), + [anon_sym_struct] = ACTIONS(3456), + [anon_sym_trait] = ACTIONS(3456), + [anon_sym_type] = ACTIONS(3456), + [anon_sym_union] = ACTIONS(3456), + [anon_sym_unsafe] = ACTIONS(3456), + [anon_sym_use] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_extern] = ACTIONS(3456), + [anon_sym_yield] = ACTIONS(3456), + [anon_sym_move] = ACTIONS(3456), + [anon_sym_try] = ACTIONS(3456), + [sym_integer_literal] = ACTIONS(3454), + [aux_sym_string_literal_token1] = ACTIONS(3454), + [sym_char_literal] = ACTIONS(3454), + [anon_sym_true] = ACTIONS(3456), + [anon_sym_false] = ACTIONS(3456), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3456), + [sym_super] = ACTIONS(3456), + [sym_crate] = ACTIONS(3456), + [sym_metavariable] = ACTIONS(3454), + [sym__raw_string_literal_start] = ACTIONS(3454), + [sym_float_literal] = ACTIONS(3454), + }, + [STATE(892)] = { + [sym_line_comment] = STATE(892), + [sym_block_comment] = STATE(892), + [ts_builtin_sym_end] = ACTIONS(3458), + [sym_identifier] = ACTIONS(3460), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_macro_rules_BANG] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3458), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_RBRACE] = ACTIONS(3458), + [anon_sym_STAR] = ACTIONS(3458), + [anon_sym_u8] = ACTIONS(3460), + [anon_sym_i8] = ACTIONS(3460), + [anon_sym_u16] = ACTIONS(3460), + [anon_sym_i16] = ACTIONS(3460), + [anon_sym_u32] = ACTIONS(3460), + [anon_sym_i32] = ACTIONS(3460), + [anon_sym_u64] = ACTIONS(3460), + [anon_sym_i64] = ACTIONS(3460), + [anon_sym_u128] = ACTIONS(3460), + [anon_sym_i128] = ACTIONS(3460), + [anon_sym_isize] = ACTIONS(3460), + [anon_sym_usize] = ACTIONS(3460), + [anon_sym_f32] = ACTIONS(3460), + [anon_sym_f64] = ACTIONS(3460), + [anon_sym_bool] = ACTIONS(3460), + [anon_sym_str] = ACTIONS(3460), + [anon_sym_char] = ACTIONS(3460), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3458), + [anon_sym_PIPE] = ACTIONS(3458), + [anon_sym_LT] = ACTIONS(3458), + [anon_sym_DOT_DOT] = ACTIONS(3458), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_POUND] = ACTIONS(3458), + [anon_sym_SQUOTE] = ACTIONS(3460), + [anon_sym_async] = ACTIONS(3460), + [anon_sym_break] = ACTIONS(3460), + [anon_sym_const] = ACTIONS(3460), + [anon_sym_continue] = ACTIONS(3460), + [anon_sym_default] = ACTIONS(3460), + [anon_sym_enum] = ACTIONS(3460), + [anon_sym_fn] = ACTIONS(3460), + [anon_sym_for] = ACTIONS(3460), + [anon_sym_gen] = ACTIONS(3460), + [anon_sym_if] = ACTIONS(3460), + [anon_sym_impl] = ACTIONS(3460), + [anon_sym_let] = ACTIONS(3460), + [anon_sym_loop] = ACTIONS(3460), + [anon_sym_match] = ACTIONS(3460), + [anon_sym_mod] = ACTIONS(3460), + [anon_sym_pub] = ACTIONS(3460), + [anon_sym_return] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(3460), + [anon_sym_trait] = ACTIONS(3460), + [anon_sym_type] = ACTIONS(3460), + [anon_sym_union] = ACTIONS(3460), + [anon_sym_unsafe] = ACTIONS(3460), + [anon_sym_use] = ACTIONS(3460), + [anon_sym_while] = ACTIONS(3460), + [anon_sym_extern] = ACTIONS(3460), + [anon_sym_yield] = ACTIONS(3460), + [anon_sym_move] = ACTIONS(3460), + [anon_sym_try] = ACTIONS(3460), + [sym_integer_literal] = ACTIONS(3458), + [aux_sym_string_literal_token1] = ACTIONS(3458), + [sym_char_literal] = ACTIONS(3458), + [anon_sym_true] = ACTIONS(3460), + [anon_sym_false] = ACTIONS(3460), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3460), + [sym_super] = ACTIONS(3460), + [sym_crate] = ACTIONS(3460), + [sym_metavariable] = ACTIONS(3458), + [sym__raw_string_literal_start] = ACTIONS(3458), + [sym_float_literal] = ACTIONS(3458), + }, + [STATE(893)] = { + [sym_line_comment] = STATE(893), + [sym_block_comment] = STATE(893), + [ts_builtin_sym_end] = ACTIONS(3462), + [sym_identifier] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_macro_rules_BANG] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_STAR] = ACTIONS(3462), + [anon_sym_u8] = ACTIONS(3464), + [anon_sym_i8] = ACTIONS(3464), + [anon_sym_u16] = ACTIONS(3464), + [anon_sym_i16] = ACTIONS(3464), + [anon_sym_u32] = ACTIONS(3464), + [anon_sym_i32] = ACTIONS(3464), + [anon_sym_u64] = ACTIONS(3464), + [anon_sym_i64] = ACTIONS(3464), + [anon_sym_u128] = ACTIONS(3464), + [anon_sym_i128] = ACTIONS(3464), + [anon_sym_isize] = ACTIONS(3464), + [anon_sym_usize] = ACTIONS(3464), + [anon_sym_f32] = ACTIONS(3464), + [anon_sym_f64] = ACTIONS(3464), + [anon_sym_bool] = ACTIONS(3464), + [anon_sym_str] = ACTIONS(3464), + [anon_sym_char] = ACTIONS(3464), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_AMP] = ACTIONS(3462), + [anon_sym_PIPE] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_DOT_DOT] = ACTIONS(3462), + [anon_sym_COLON_COLON] = ACTIONS(3462), + [anon_sym_POUND] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3464), + [anon_sym_async] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_default] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), + [anon_sym_fn] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_gen] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_impl] = ACTIONS(3464), + [anon_sym_let] = ACTIONS(3464), + [anon_sym_loop] = ACTIONS(3464), + [anon_sym_match] = ACTIONS(3464), + [anon_sym_mod] = ACTIONS(3464), + [anon_sym_pub] = ACTIONS(3464), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_struct] = ACTIONS(3464), + [anon_sym_trait] = ACTIONS(3464), + [anon_sym_type] = ACTIONS(3464), + [anon_sym_union] = ACTIONS(3464), + [anon_sym_unsafe] = ACTIONS(3464), + [anon_sym_use] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_extern] = ACTIONS(3464), + [anon_sym_yield] = ACTIONS(3464), + [anon_sym_move] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [sym_integer_literal] = ACTIONS(3462), + [aux_sym_string_literal_token1] = ACTIONS(3462), + [sym_char_literal] = ACTIONS(3462), + [anon_sym_true] = ACTIONS(3464), + [anon_sym_false] = ACTIONS(3464), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3464), + [sym_super] = ACTIONS(3464), + [sym_crate] = ACTIONS(3464), + [sym_metavariable] = ACTIONS(3462), + [sym__raw_string_literal_start] = ACTIONS(3462), + [sym_float_literal] = ACTIONS(3462), + }, + [STATE(894)] = { + [sym_line_comment] = STATE(894), + [sym_block_comment] = STATE(894), + [ts_builtin_sym_end] = ACTIONS(3466), + [sym_identifier] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym_macro_rules_BANG] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_RBRACE] = ACTIONS(3466), + [anon_sym_STAR] = ACTIONS(3466), + [anon_sym_u8] = ACTIONS(3468), + [anon_sym_i8] = ACTIONS(3468), + [anon_sym_u16] = ACTIONS(3468), + [anon_sym_i16] = ACTIONS(3468), + [anon_sym_u32] = ACTIONS(3468), + [anon_sym_i32] = ACTIONS(3468), + [anon_sym_u64] = ACTIONS(3468), + [anon_sym_i64] = ACTIONS(3468), + [anon_sym_u128] = ACTIONS(3468), + [anon_sym_i128] = ACTIONS(3468), + [anon_sym_isize] = ACTIONS(3468), + [anon_sym_usize] = ACTIONS(3468), + [anon_sym_f32] = ACTIONS(3468), + [anon_sym_f64] = ACTIONS(3468), + [anon_sym_bool] = ACTIONS(3468), + [anon_sym_str] = ACTIONS(3468), + [anon_sym_char] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_AMP] = ACTIONS(3466), + [anon_sym_PIPE] = ACTIONS(3466), + [anon_sym_LT] = ACTIONS(3466), + [anon_sym_DOT_DOT] = ACTIONS(3466), + [anon_sym_COLON_COLON] = ACTIONS(3466), + [anon_sym_POUND] = ACTIONS(3466), + [anon_sym_SQUOTE] = ACTIONS(3468), + [anon_sym_async] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_default] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_fn] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_gen] = ACTIONS(3468), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_impl] = ACTIONS(3468), + [anon_sym_let] = ACTIONS(3468), + [anon_sym_loop] = ACTIONS(3468), + [anon_sym_match] = ACTIONS(3468), + [anon_sym_mod] = ACTIONS(3468), + [anon_sym_pub] = ACTIONS(3468), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3468), + [anon_sym_trait] = ACTIONS(3468), + [anon_sym_type] = ACTIONS(3468), + [anon_sym_union] = ACTIONS(3468), + [anon_sym_unsafe] = ACTIONS(3468), + [anon_sym_use] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_extern] = ACTIONS(3468), + [anon_sym_yield] = ACTIONS(3468), + [anon_sym_move] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3468), + [sym_integer_literal] = ACTIONS(3466), + [aux_sym_string_literal_token1] = ACTIONS(3466), + [sym_char_literal] = ACTIONS(3466), + [anon_sym_true] = ACTIONS(3468), + [anon_sym_false] = ACTIONS(3468), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3468), + [sym_super] = ACTIONS(3468), + [sym_crate] = ACTIONS(3468), + [sym_metavariable] = ACTIONS(3466), + [sym__raw_string_literal_start] = ACTIONS(3466), + [sym_float_literal] = ACTIONS(3466), + }, + [STATE(895)] = { + [sym_line_comment] = STATE(895), + [sym_block_comment] = STATE(895), + [ts_builtin_sym_end] = ACTIONS(3470), + [sym_identifier] = ACTIONS(3472), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_macro_rules_BANG] = ACTIONS(3470), + [anon_sym_LPAREN] = ACTIONS(3470), + [anon_sym_LBRACK] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_RBRACE] = ACTIONS(3470), + [anon_sym_STAR] = ACTIONS(3470), + [anon_sym_u8] = ACTIONS(3472), + [anon_sym_i8] = ACTIONS(3472), + [anon_sym_u16] = ACTIONS(3472), + [anon_sym_i16] = ACTIONS(3472), + [anon_sym_u32] = ACTIONS(3472), + [anon_sym_i32] = ACTIONS(3472), + [anon_sym_u64] = ACTIONS(3472), + [anon_sym_i64] = ACTIONS(3472), + [anon_sym_u128] = ACTIONS(3472), + [anon_sym_i128] = ACTIONS(3472), + [anon_sym_isize] = ACTIONS(3472), + [anon_sym_usize] = ACTIONS(3472), + [anon_sym_f32] = ACTIONS(3472), + [anon_sym_f64] = ACTIONS(3472), + [anon_sym_bool] = ACTIONS(3472), + [anon_sym_str] = ACTIONS(3472), + [anon_sym_char] = ACTIONS(3472), + [anon_sym_DASH] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_AMP] = ACTIONS(3470), + [anon_sym_PIPE] = ACTIONS(3470), + [anon_sym_LT] = ACTIONS(3470), + [anon_sym_DOT_DOT] = ACTIONS(3470), + [anon_sym_COLON_COLON] = ACTIONS(3470), + [anon_sym_POUND] = ACTIONS(3470), + [anon_sym_SQUOTE] = ACTIONS(3472), + [anon_sym_async] = ACTIONS(3472), + [anon_sym_break] = ACTIONS(3472), + [anon_sym_const] = ACTIONS(3472), + [anon_sym_continue] = ACTIONS(3472), + [anon_sym_default] = ACTIONS(3472), + [anon_sym_enum] = ACTIONS(3472), + [anon_sym_fn] = ACTIONS(3472), + [anon_sym_for] = ACTIONS(3472), + [anon_sym_gen] = ACTIONS(3472), + [anon_sym_if] = ACTIONS(3472), + [anon_sym_impl] = ACTIONS(3472), + [anon_sym_let] = ACTIONS(3472), + [anon_sym_loop] = ACTIONS(3472), + [anon_sym_match] = ACTIONS(3472), + [anon_sym_mod] = ACTIONS(3472), + [anon_sym_pub] = ACTIONS(3472), + [anon_sym_return] = ACTIONS(3472), + [anon_sym_static] = ACTIONS(3472), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_trait] = ACTIONS(3472), + [anon_sym_type] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_unsafe] = ACTIONS(3472), + [anon_sym_use] = ACTIONS(3472), + [anon_sym_while] = ACTIONS(3472), + [anon_sym_extern] = ACTIONS(3472), + [anon_sym_yield] = ACTIONS(3472), + [anon_sym_move] = ACTIONS(3472), + [anon_sym_try] = ACTIONS(3472), + [sym_integer_literal] = ACTIONS(3470), + [aux_sym_string_literal_token1] = ACTIONS(3470), + [sym_char_literal] = ACTIONS(3470), + [anon_sym_true] = ACTIONS(3472), + [anon_sym_false] = ACTIONS(3472), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3472), + [sym_super] = ACTIONS(3472), + [sym_crate] = ACTIONS(3472), + [sym_metavariable] = ACTIONS(3470), + [sym__raw_string_literal_start] = ACTIONS(3470), + [sym_float_literal] = ACTIONS(3470), + }, + [STATE(896)] = { + [sym_line_comment] = STATE(896), + [sym_block_comment] = STATE(896), + [ts_builtin_sym_end] = ACTIONS(3474), + [sym_identifier] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3474), + [anon_sym_macro_rules_BANG] = ACTIONS(3474), + [anon_sym_LPAREN] = ACTIONS(3474), + [anon_sym_LBRACK] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3474), + [anon_sym_RBRACE] = ACTIONS(3474), + [anon_sym_STAR] = ACTIONS(3474), + [anon_sym_u8] = ACTIONS(3476), + [anon_sym_i8] = ACTIONS(3476), + [anon_sym_u16] = ACTIONS(3476), + [anon_sym_i16] = ACTIONS(3476), + [anon_sym_u32] = ACTIONS(3476), + [anon_sym_i32] = ACTIONS(3476), + [anon_sym_u64] = ACTIONS(3476), + [anon_sym_i64] = ACTIONS(3476), + [anon_sym_u128] = ACTIONS(3476), + [anon_sym_i128] = ACTIONS(3476), + [anon_sym_isize] = ACTIONS(3476), + [anon_sym_usize] = ACTIONS(3476), + [anon_sym_f32] = ACTIONS(3476), + [anon_sym_f64] = ACTIONS(3476), + [anon_sym_bool] = ACTIONS(3476), + [anon_sym_str] = ACTIONS(3476), + [anon_sym_char] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3474), + [anon_sym_BANG] = ACTIONS(3474), + [anon_sym_AMP] = ACTIONS(3474), + [anon_sym_PIPE] = ACTIONS(3474), + [anon_sym_LT] = ACTIONS(3474), + [anon_sym_DOT_DOT] = ACTIONS(3474), + [anon_sym_COLON_COLON] = ACTIONS(3474), + [anon_sym_POUND] = ACTIONS(3474), + [anon_sym_SQUOTE] = ACTIONS(3476), + [anon_sym_async] = ACTIONS(3476), + [anon_sym_break] = ACTIONS(3476), + [anon_sym_const] = ACTIONS(3476), + [anon_sym_continue] = ACTIONS(3476), + [anon_sym_default] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), + [anon_sym_fn] = ACTIONS(3476), + [anon_sym_for] = ACTIONS(3476), + [anon_sym_gen] = ACTIONS(3476), + [anon_sym_if] = ACTIONS(3476), + [anon_sym_impl] = ACTIONS(3476), + [anon_sym_let] = ACTIONS(3476), + [anon_sym_loop] = ACTIONS(3476), + [anon_sym_match] = ACTIONS(3476), + [anon_sym_mod] = ACTIONS(3476), + [anon_sym_pub] = ACTIONS(3476), + [anon_sym_return] = ACTIONS(3476), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_struct] = ACTIONS(3476), + [anon_sym_trait] = ACTIONS(3476), + [anon_sym_type] = ACTIONS(3476), + [anon_sym_union] = ACTIONS(3476), + [anon_sym_unsafe] = ACTIONS(3476), + [anon_sym_use] = ACTIONS(3476), + [anon_sym_while] = ACTIONS(3476), + [anon_sym_extern] = ACTIONS(3476), + [anon_sym_yield] = ACTIONS(3476), + [anon_sym_move] = ACTIONS(3476), + [anon_sym_try] = ACTIONS(3476), + [sym_integer_literal] = ACTIONS(3474), + [aux_sym_string_literal_token1] = ACTIONS(3474), + [sym_char_literal] = ACTIONS(3474), + [anon_sym_true] = ACTIONS(3476), + [anon_sym_false] = ACTIONS(3476), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3476), + [sym_super] = ACTIONS(3476), + [sym_crate] = ACTIONS(3476), + [sym_metavariable] = ACTIONS(3474), + [sym__raw_string_literal_start] = ACTIONS(3474), + [sym_float_literal] = ACTIONS(3474), + }, + [STATE(897)] = { + [sym_line_comment] = STATE(897), + [sym_block_comment] = STATE(897), + [ts_builtin_sym_end] = ACTIONS(3478), + [sym_identifier] = ACTIONS(3480), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_macro_rules_BANG] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_STAR] = ACTIONS(3478), + [anon_sym_u8] = ACTIONS(3480), + [anon_sym_i8] = ACTIONS(3480), + [anon_sym_u16] = ACTIONS(3480), + [anon_sym_i16] = ACTIONS(3480), + [anon_sym_u32] = ACTIONS(3480), + [anon_sym_i32] = ACTIONS(3480), + [anon_sym_u64] = ACTIONS(3480), + [anon_sym_i64] = ACTIONS(3480), + [anon_sym_u128] = ACTIONS(3480), + [anon_sym_i128] = ACTIONS(3480), + [anon_sym_isize] = ACTIONS(3480), + [anon_sym_usize] = ACTIONS(3480), + [anon_sym_f32] = ACTIONS(3480), + [anon_sym_f64] = ACTIONS(3480), + [anon_sym_bool] = ACTIONS(3480), + [anon_sym_str] = ACTIONS(3480), + [anon_sym_char] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_AMP] = ACTIONS(3478), + [anon_sym_PIPE] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_DOT_DOT] = ACTIONS(3478), + [anon_sym_COLON_COLON] = ACTIONS(3478), + [anon_sym_POUND] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3480), + [anon_sym_async] = ACTIONS(3480), + [anon_sym_break] = ACTIONS(3480), + [anon_sym_const] = ACTIONS(3480), + [anon_sym_continue] = ACTIONS(3480), + [anon_sym_default] = ACTIONS(3480), + [anon_sym_enum] = ACTIONS(3480), + [anon_sym_fn] = ACTIONS(3480), + [anon_sym_for] = ACTIONS(3480), + [anon_sym_gen] = ACTIONS(3480), + [anon_sym_if] = ACTIONS(3480), + [anon_sym_impl] = ACTIONS(3480), + [anon_sym_let] = ACTIONS(3480), + [anon_sym_loop] = ACTIONS(3480), + [anon_sym_match] = ACTIONS(3480), + [anon_sym_mod] = ACTIONS(3480), + [anon_sym_pub] = ACTIONS(3480), + [anon_sym_return] = ACTIONS(3480), + [anon_sym_static] = ACTIONS(3480), + [anon_sym_struct] = ACTIONS(3480), + [anon_sym_trait] = ACTIONS(3480), + [anon_sym_type] = ACTIONS(3480), + [anon_sym_union] = ACTIONS(3480), + [anon_sym_unsafe] = ACTIONS(3480), + [anon_sym_use] = ACTIONS(3480), + [anon_sym_while] = ACTIONS(3480), + [anon_sym_extern] = ACTIONS(3480), + [anon_sym_yield] = ACTIONS(3480), + [anon_sym_move] = ACTIONS(3480), + [anon_sym_try] = ACTIONS(3480), + [sym_integer_literal] = ACTIONS(3478), + [aux_sym_string_literal_token1] = ACTIONS(3478), + [sym_char_literal] = ACTIONS(3478), + [anon_sym_true] = ACTIONS(3480), + [anon_sym_false] = ACTIONS(3480), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3480), + [sym_super] = ACTIONS(3480), + [sym_crate] = ACTIONS(3480), + [sym_metavariable] = ACTIONS(3478), + [sym__raw_string_literal_start] = ACTIONS(3478), + [sym_float_literal] = ACTIONS(3478), + }, + [STATE(898)] = { + [sym_attribute_item] = STATE(2254), + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_const_parameter] = STATE(3379), + [sym_type_parameter] = STATE(3379), + [sym_lifetime_parameter] = STATE(3379), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3367), + [sym_bracketed_type] = STATE(4197), + [sym_qualified_type] = STATE(4033), + [sym_lifetime] = STATE(2918), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(898), + [sym_block_comment] = STATE(898), + [aux_sym_mod_item_repeat1] = STATE(2411), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3482), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1605), @@ -94862,147 +105985,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(3070), + [anon_sym_POUND] = ACTIONS(3484), + [anon_sym_SQUOTE] = ACTIONS(3486), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(3488), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(3072), + [sym_metavariable] = ACTIONS(3490), }, - [STATE(784)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(784), - [sym_block_comment] = STATE(784), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(899)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym_closure_expression] = STATE(3632), + [sym_closure_parameters] = STATE(216), + [sym__pattern] = STATE(3414), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(899), + [sym_block_comment] = STATE(899), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [anon_sym_move] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(785)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(785), - [sym_block_comment] = STATE(785), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(900)] = { + [sym_attribute_item] = STATE(1772), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym_visibility_modifier] = STATE(1119), + [sym__type] = STATE(3056), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(900), + [sym_block_comment] = STATE(900), + [aux_sym_mod_item_repeat1] = STATE(912), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3074), + [anon_sym_RPAREN] = ACTIONS(3494), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95020,68 +106143,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(3498), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_pub] = ACTIONS(3504), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3506), [sym_metavariable] = ACTIONS(1633), }, - [STATE(786)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(786), - [sym_block_comment] = STATE(786), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(901)] = { + [sym_attribute_item] = STATE(1772), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym_visibility_modifier] = STATE(1041), + [sym__type] = STATE(3329), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(901), + [sym_block_comment] = STATE(901), + [aux_sym_mod_item_repeat1] = STATE(911), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3076), + [anon_sym_RPAREN] = ACTIONS(3508), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95099,68 +106223,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_pub] = ACTIONS(3504), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3506), [sym_metavariable] = ACTIONS(1633), }, - [STATE(787)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(787), - [sym_block_comment] = STATE(787), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(902)] = { + [sym_attribute_item] = STATE(1772), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym_visibility_modifier] = STATE(1041), + [sym__type] = STATE(3329), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(902), + [sym_block_comment] = STATE(902), + [aux_sym_mod_item_repeat1] = STATE(911), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_RPAREN] = ACTIONS(3510), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95178,68 +106302,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_pub] = ACTIONS(3504), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3506), [sym_metavariable] = ACTIONS(1633), }, - [STATE(788)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(788), - [sym_block_comment] = STATE(788), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(903)] = { + [sym_attribute_item] = STATE(1772), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym_visibility_modifier] = STATE(1041), + [sym__type] = STATE(3329), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(903), + [sym_block_comment] = STATE(903), + [aux_sym_mod_item_repeat1] = STATE(911), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3080), + [anon_sym_RPAREN] = ACTIONS(3512), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95257,68 +106381,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_pub] = ACTIONS(3504), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3506), [sym_metavariable] = ACTIONS(1633), }, - [STATE(789)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(789), - [sym_block_comment] = STATE(789), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(904)] = { + [sym_attribute_item] = STATE(1772), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym_visibility_modifier] = STATE(1041), + [sym__type] = STATE(3329), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(904), + [sym_block_comment] = STATE(904), + [aux_sym_mod_item_repeat1] = STATE(911), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3082), + [anon_sym_RPAREN] = ACTIONS(3514), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95336,68 +106460,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_pub] = ACTIONS(3504), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3506), [sym_metavariable] = ACTIONS(1633), }, - [STATE(790)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(790), - [sym_block_comment] = STATE(790), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(905)] = { + [sym_attribute_item] = STATE(1772), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym_visibility_modifier] = STATE(1041), + [sym__type] = STATE(3329), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(905), + [sym_block_comment] = STATE(905), + [aux_sym_mod_item_repeat1] = STATE(911), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3084), + [anon_sym_RPAREN] = ACTIONS(3516), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95415,67 +106539,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_pub] = ACTIONS(3504), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3506), [sym_metavariable] = ACTIONS(1633), }, - [STATE(791)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(791), - [sym_block_comment] = STATE(791), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(906)] = { + [sym_attribute_item] = STATE(1772), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym_visibility_modifier] = STATE(1041), + [sym__type] = STATE(3329), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(906), + [sym_block_comment] = STATE(906), + [aux_sym_mod_item_repeat1] = STATE(911), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3518), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95493,223 +106618,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_pub] = ACTIONS(3504), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3506), [sym_metavariable] = ACTIONS(1633), }, - [STATE(792)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2697), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(792), - [sym_block_comment] = STATE(792), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(793)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(793), - [sym_block_comment] = STATE(793), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3092), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(907)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3009), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(907), + [sym_block_comment] = STATE(907), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(3522), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(794)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(1025), - [sym__type] = STATE(2786), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(794), - [sym_block_comment] = STATE(794), - [aux_sym_enum_variant_list_repeat1] = STATE(1079), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(908)] = { + [sym_attribute_item] = STATE(1772), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym_visibility_modifier] = STATE(1041), + [sym__type] = STATE(3329), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(908), + [sym_block_comment] = STATE(908), + [aux_sym_mod_item_repeat1] = STATE(911), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95727,223 +106774,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_pub] = ACTIONS(3504), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3506), [sym_metavariable] = ACTIONS(1633), }, - [STATE(795)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2708), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(795), - [sym_block_comment] = STATE(795), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), + [STATE(909)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3055), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(909), + [sym_block_comment] = STATE(909), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(910)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3133), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(910), + [sym_block_comment] = STATE(910), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), [anon_sym_RBRACK] = ACTIONS(1547), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), [anon_sym_COMMA] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(796)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2642), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(796), - [sym_block_comment] = STATE(796), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(911)] = { + [sym_attribute_item] = STATE(1772), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym_visibility_modifier] = STATE(1116), + [sym__type] = STATE(3455), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(911), + [sym_block_comment] = STATE(911), + [aux_sym_mod_item_repeat1] = STATE(1250), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_pub] = ACTIONS(3504), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(3506), + [sym_metavariable] = ACTIONS(1633), }, - [STATE(797)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(1036), - [sym__type] = STATE(3101), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(797), - [sym_block_comment] = STATE(797), - [aux_sym_enum_variant_list_repeat1] = STATE(1079), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(912)] = { + [sym_attribute_item] = STATE(1772), + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym_visibility_modifier] = STATE(1087), + [sym__type] = STATE(3093), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(912), + [sym_block_comment] = STATE(912), + [aux_sym_mod_item_repeat1] = STATE(1250), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -95961,4034 +107086,4341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_pub] = ACTIONS(3504), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), + [sym_crate] = ACTIONS(3506), [sym_metavariable] = ACTIONS(1633), }, - [STATE(798)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2648), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(798), - [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3100), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(913)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3080), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(913), + [sym_block_comment] = STATE(913), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_RBRACK] = ACTIONS(3528), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(3530), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(799)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2625), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(799), - [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3102), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3104), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(914)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2979), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(914), + [sym_block_comment] = STATE(914), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(3534), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(800)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(800), - [sym_block_comment] = STATE(800), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(915)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2999), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(915), + [sym_block_comment] = STATE(915), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(801)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(801), - [sym_block_comment] = STATE(801), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(916)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2944), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(916), + [sym_block_comment] = STATE(916), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(802)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(802), - [sym_block_comment] = STATE(802), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3110), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(917)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2944), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(917), + [sym_block_comment] = STATE(917), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_RBRACK] = ACTIONS(3542), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(803)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(803), - [sym_block_comment] = STATE(803), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(918)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3182), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(918), + [sym_block_comment] = STATE(918), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3544), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3546), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(804)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2798), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(804), - [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3114), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [STATE(919)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2944), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(919), + [sym_block_comment] = STATE(919), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_RBRACK] = ACTIONS(3548), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3116), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(805)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(805), - [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(920)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2944), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(920), + [sym_block_comment] = STATE(920), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(3550), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(806)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(806), - [sym_block_comment] = STATE(806), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3120), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(921)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2944), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(921), + [sym_block_comment] = STATE(921), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(807)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(807), - [sym_block_comment] = STATE(807), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(922)] = { + [sym_parameter] = STATE(3425), + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2850), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(922), + [sym_block_comment] = STATE(922), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(3554), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(3556), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3558), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(808)] = { - [sym_parameter] = STATE(3181), - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2928), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(808), - [sym_block_comment] = STATE(808), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3124), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3126), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(923)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2944), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(923), + [sym_block_comment] = STATE(923), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(809)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(809), - [sym_block_comment] = STATE(809), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(924)] = { + [sym_parameter] = STATE(3734), + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3486), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(924), + [sym_block_comment] = STATE(924), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(3556), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3558), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(810)] = { - [sym_parameter] = STATE(3066), - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2647), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(810), - [sym_block_comment] = STATE(810), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3124), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3126), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(925)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2944), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(925), + [sym_block_comment] = STATE(925), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(811)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(811), - [sym_block_comment] = STATE(811), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(926)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2944), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(926), + [sym_block_comment] = STATE(926), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(812)] = { - [sym_parameter] = STATE(3066), - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2504), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(812), - [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3124), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3126), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(927)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2944), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(927), + [sym_block_comment] = STATE(927), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(3566), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(813)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(813), - [sym_block_comment] = STATE(813), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3134), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(928)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2944), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(928), + [sym_block_comment] = STATE(928), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_RBRACK] = ACTIONS(3568), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(814)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(814), - [sym_block_comment] = STATE(814), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3136), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(929)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2944), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(929), + [sym_block_comment] = STATE(929), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_RBRACK] = ACTIONS(3570), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(815)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(815), - [sym_block_comment] = STATE(815), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(930)] = { + [sym_parameter] = STATE(3425), + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3211), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(930), + [sym_block_comment] = STATE(930), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(3554), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(3556), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3558), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(816)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2512), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(816), - [sym_block_comment] = STATE(816), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(931)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2944), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(931), + [sym_block_comment] = STATE(931), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(817)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2559), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(817), - [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(932)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2930), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(932), + [sym_block_comment] = STATE(932), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(3574), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(818)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(818), - [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3142), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(933)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3753), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(933), + [sym_block_comment] = STATE(933), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(819)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3182), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(819), - [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(934)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3855), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(934), + [sym_block_comment] = STATE(934), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(820)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2171), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(820), - [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(935)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2884), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(935), + [sym_block_comment] = STATE(935), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(821)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2838), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(821), - [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), + [STATE(936)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2925), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(936), + [sym_block_comment] = STATE(936), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(822)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2184), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(822), - [sym_block_comment] = STATE(822), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(937)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3273), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(937), + [sym_block_comment] = STATE(937), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(823)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3260), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(823), - [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(938)] = { + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3388), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), + [sym_line_comment] = STATE(938), + [sym_block_comment] = STATE(938), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(3576), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), }, - [STATE(824)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2180), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(824), - [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(939)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2942), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(939), + [sym_block_comment] = STATE(939), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(825)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2167), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(825), - [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(940)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3506), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(940), + [sym_block_comment] = STATE(940), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(826)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3319), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(826), - [sym_block_comment] = STATE(826), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(941)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2830), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(941), + [sym_block_comment] = STATE(941), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(3578), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(827)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(827), - [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(942)] = { + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3311), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), + [sym_line_comment] = STATE(942), + [sym_block_comment] = STATE(942), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), }, - [STATE(828)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3138), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(828), - [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(943)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2478), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(943), + [sym_block_comment] = STATE(943), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(829)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3108), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(829), - [sym_block_comment] = STATE(829), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [STATE(944)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3678), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(944), + [sym_block_comment] = STATE(944), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(830)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2972), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(830), - [sym_block_comment] = STATE(830), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(945)] = { + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3321), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), + [sym_line_comment] = STATE(945), + [sym_block_comment] = STATE(945), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), }, - [STATE(831)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2191), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(831), - [sym_block_comment] = STATE(831), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(946)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3816), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(946), + [sym_block_comment] = STATE(946), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(832)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2923), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(832), - [sym_block_comment] = STATE(832), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(947)] = { + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3342), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), + [sym_line_comment] = STATE(947), + [sym_block_comment] = STATE(947), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), }, - [STATE(833)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3444), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(833), - [sym_block_comment] = STATE(833), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(948)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2868), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(948), + [sym_block_comment] = STATE(948), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(834)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2509), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(834), - [sym_block_comment] = STATE(834), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3146), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(949)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3127), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(949), + [sym_block_comment] = STATE(949), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3580), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(835)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(2944), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(835), - [sym_block_comment] = STATE(835), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(3148), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [STATE(950)] = { + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3389), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), + [sym_line_comment] = STATE(950), + [sym_block_comment] = STATE(950), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), }, - [STATE(836)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3317), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(836), - [sym_block_comment] = STATE(836), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(951)] = { + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3491), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), + [sym_line_comment] = STATE(951), + [sym_block_comment] = STATE(951), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), }, - [STATE(837)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2517), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(837), - [sym_block_comment] = STATE(837), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(952)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2486), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(952), + [sym_block_comment] = STATE(952), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(838)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(2955), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(838), - [sym_block_comment] = STATE(838), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [STATE(953)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2497), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(953), + [sym_block_comment] = STATE(953), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(839)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(2946), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(839), - [sym_block_comment] = STATE(839), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [STATE(954)] = { + [sym_bracketed_type] = STATE(4149), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3838), + [sym_macro_invocation] = STATE(3514), + [sym_scoped_identifier] = STATE(2519), + [sym_scoped_type_identifier] = STATE(3484), + [sym_const_block] = STATE(3514), + [sym__pattern] = STATE(3419), + [sym_generic_pattern] = STATE(3514), + [sym_tuple_pattern] = STATE(3514), + [sym_slice_pattern] = STATE(3514), + [sym_tuple_struct_pattern] = STATE(3514), + [sym_struct_pattern] = STATE(3514), + [sym_remaining_field_pattern] = STATE(3514), + [sym_mut_pattern] = STATE(3514), + [sym_range_pattern] = STATE(3514), + [sym_ref_pattern] = STATE(3514), + [sym_captured_pattern] = STATE(3514), + [sym_reference_pattern] = STATE(3514), + [sym_or_pattern] = STATE(3514), + [sym__literal_pattern] = STATE(2748), + [sym_negative_literal] = STATE(2755), + [sym_string_literal] = STATE(2755), + [sym_raw_string_literal] = STATE(2755), + [sym_boolean_literal] = STATE(2755), + [sym_line_comment] = STATE(954), + [sym_block_comment] = STATE(954), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1667), + [anon_sym_i8] = ACTIONS(1667), + [anon_sym_u16] = ACTIONS(1667), + [anon_sym_i16] = ACTIONS(1667), + [anon_sym_u32] = ACTIONS(1667), + [anon_sym_i32] = ACTIONS(1667), + [anon_sym_u64] = ACTIONS(1667), + [anon_sym_i64] = ACTIONS(1667), + [anon_sym_u128] = ACTIONS(1667), + [anon_sym_i128] = ACTIONS(1667), + [anon_sym_isize] = ACTIONS(1667), + [anon_sym_usize] = ACTIONS(1667), + [anon_sym_f32] = ACTIONS(1667), + [anon_sym_f64] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_str] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_gen] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_ref] = ACTIONS(1689), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1699), + [sym_super] = ACTIONS(1699), + [sym_crate] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1701), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1693), }, - [STATE(840)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(2990), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(840), - [sym_block_comment] = STATE(840), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [STATE(955)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2474), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(955), + [sym_block_comment] = STATE(955), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(841)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3089), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(841), - [sym_block_comment] = STATE(841), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [STATE(956)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2450), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(956), + [sym_block_comment] = STATE(956), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(842)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3094), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(842), - [sym_block_comment] = STATE(842), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [STATE(957)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3904), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(957), + [sym_block_comment] = STATE(957), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(843)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3413), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(843), - [sym_block_comment] = STATE(843), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(958)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3524), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(958), + [sym_block_comment] = STATE(958), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(844)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3436), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(844), - [sym_block_comment] = STATE(844), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(959)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2861), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(959), + [sym_block_comment] = STATE(959), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(3582), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(845)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3441), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(845), - [sym_block_comment] = STATE(845), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(960)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2887), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(960), + [sym_block_comment] = STATE(960), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(3584), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(846)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3442), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(846), - [sym_block_comment] = STATE(846), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(961)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2944), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(961), + [sym_block_comment] = STATE(961), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(847)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3443), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(847), - [sym_block_comment] = STATE(847), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(962)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2496), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(962), + [sym_block_comment] = STATE(962), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(3586), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(848)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(848), - [sym_block_comment] = STATE(848), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(963)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3585), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(963), + [sym_block_comment] = STATE(963), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(849)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1421), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(849), - [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [sym_mutable_specifier] = ACTIONS(3180), + [STATE(964)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3889), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(964), + [sym_block_comment] = STATE(964), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), }, - [STATE(850)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3402), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(850), - [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(965)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3901), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(965), + [sym_block_comment] = STATE(965), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(966)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3902), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(966), + [sym_block_comment] = STATE(966), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(967)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(3903), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(967), + [sym_block_comment] = STATE(967), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(968)] = { + [sym_bracketed_type] = STATE(4053), + [sym_generic_type] = STATE(4120), + [sym_generic_type_with_turbofish] = STATE(3781), + [sym_macro_invocation] = STATE(2479), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(3363), + [sym_const_block] = STATE(2479), + [sym__pattern] = STATE(2469), + [sym_generic_pattern] = STATE(2479), + [sym_tuple_pattern] = STATE(2479), + [sym_slice_pattern] = STATE(2479), + [sym_tuple_struct_pattern] = STATE(2479), + [sym_struct_pattern] = STATE(2479), + [sym_remaining_field_pattern] = STATE(2479), + [sym_mut_pattern] = STATE(2479), + [sym_range_pattern] = STATE(2479), + [sym_ref_pattern] = STATE(2479), + [sym_captured_pattern] = STATE(2479), + [sym_reference_pattern] = STATE(2479), + [sym_or_pattern] = STATE(2479), + [sym__literal_pattern] = STATE(2381), + [sym_negative_literal] = STATE(2377), + [sym_string_literal] = STATE(2377), + [sym_raw_string_literal] = STATE(2377), + [sym_boolean_literal] = STATE(2377), + [sym_line_comment] = STATE(968), + [sym_block_comment] = STATE(968), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_ref] = ACTIONS(1153), + [sym_mutable_specifier] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1159), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1159), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1171), + [sym_float_literal] = ACTIONS(1159), + }, + [STATE(969)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3671), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(969), + [sym_block_comment] = STATE(969), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(1605), [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), @@ -100008,24 +111440,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3190), + [sym_mutable_specifier] = ACTIONS(3592), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100033,114 +111465,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(851)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(851), - [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [sym_mutable_specifier] = ACTIONS(3222), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(852)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(852), - [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(970)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2329), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(970), + [sym_block_comment] = STATE(970), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(3594), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100158,64 +111515,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3228), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(3596), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), + [sym_self] = ACTIONS(3598), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(853)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(853), - [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(971)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2329), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(971), + [sym_block_comment] = STATE(971), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(3594), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100233,64 +111590,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(3232), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(3600), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3234), + [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(854)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(854), - [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(972)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2329), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(972), + [sym_block_comment] = STATE(972), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100308,24 +111665,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(3236), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), + [sym_mutable_specifier] = ACTIONS(3602), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100333,39 +111690,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(855)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_type_parameters] = STATE(959), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2445), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2439), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2251), - [sym_line_comment] = STATE(855), - [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3238), + [STATE(973)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(1999), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1963), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(4182), + [sym_array_type] = STATE(1999), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(1999), + [sym_tuple_type] = STATE(1999), + [sym_unit_type] = STATE(1999), + [sym_generic_type] = STATE(1929), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(1999), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(1999), + [sym_pointer_type] = STATE(1999), + [sym_never_type] = STATE(1999), + [sym_abstract_type] = STATE(1999), + [sym_dynamic_type] = STATE(1999), + [sym_macro_invocation] = STATE(1999), + [sym_scoped_identifier] = STATE(3856), + [sym_scoped_type_identifier] = STATE(1855), + [sym_line_comment] = STATE(973), + [sym_block_comment] = STATE(973), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3616), + [anon_sym_i8] = ACTIONS(3616), + [anon_sym_u16] = ACTIONS(3616), + [anon_sym_i16] = ACTIONS(3616), + [anon_sym_u32] = ACTIONS(3616), + [anon_sym_i32] = ACTIONS(3616), + [anon_sym_u64] = ACTIONS(3616), + [anon_sym_i64] = ACTIONS(3616), + [anon_sym_u128] = ACTIONS(3616), + [anon_sym_i128] = ACTIONS(3616), + [anon_sym_isize] = ACTIONS(3616), + [anon_sym_usize] = ACTIONS(3616), + [anon_sym_f32] = ACTIONS(3616), + [anon_sym_f64] = ACTIONS(3616), + [anon_sym_bool] = ACTIONS(3616), + [anon_sym_str] = ACTIONS(3616), + [anon_sym_char] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3628), + [anon_sym_impl] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3632), + [sym_mutable_specifier] = ACTIONS(3634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3638), + }, + [STATE(974)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1780), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(3971), + [sym_array_type] = STATE(1770), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(1770), + [sym_generic_type] = STATE(1534), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(1770), + [sym_pointer_type] = STATE(1770), + [sym_never_type] = STATE(1770), + [sym_abstract_type] = STATE(1770), + [sym_dynamic_type] = STATE(1770), + [sym_macro_invocation] = STATE(1770), + [sym_scoped_identifier] = STATE(3745), + [sym_scoped_type_identifier] = STATE(1238), + [sym_line_comment] = STATE(974), + [sym_block_comment] = STATE(974), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3652), + [anon_sym_i8] = ACTIONS(3652), + [anon_sym_u16] = ACTIONS(3652), + [anon_sym_i16] = ACTIONS(3652), + [anon_sym_u32] = ACTIONS(3652), + [anon_sym_i32] = ACTIONS(3652), + [anon_sym_u64] = ACTIONS(3652), + [anon_sym_i64] = ACTIONS(3652), + [anon_sym_u128] = ACTIONS(3652), + [anon_sym_i128] = ACTIONS(3652), + [anon_sym_isize] = ACTIONS(3652), + [anon_sym_usize] = ACTIONS(3652), + [anon_sym_f32] = ACTIONS(3652), + [anon_sym_f64] = ACTIONS(3652), + [anon_sym_bool] = ACTIONS(3652), + [anon_sym_str] = ACTIONS(3652), + [anon_sym_char] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3664), + [anon_sym_impl] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3668), + [sym_mutable_specifier] = ACTIONS(3670), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3674), + }, + [STATE(975)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3367), + [sym_bracketed_type] = STATE(4197), + [sym_qualified_type] = STATE(4033), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(975), + [sym_block_comment] = STATE(975), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100383,23 +111890,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100407,39 +111914,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(856)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(856), - [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(976)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_type_parameters] = STATE(1007), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2729), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2756), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2541), + [sym_line_comment] = STATE(976), + [sym_block_comment] = STATE(976), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3676), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3244), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100457,23 +111964,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3680), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100481,39 +111988,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(857)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_type_parameters] = STATE(1042), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2402), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2262), - [sym_line_comment] = STATE(857), - [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3246), + [STATE(977)] = { + [sym_function_modifiers] = STATE(4296), + [sym_higher_ranked_trait_bound] = STATE(2561), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2585), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2585), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(2336), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(977), + [sym_block_comment] = STATE(977), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100531,23 +112038,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(3682), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100555,38 +112062,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(858)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2669), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(858), - [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(978)] = { + [sym_function_modifiers] = STATE(4296), + [sym_higher_ranked_trait_bound] = STATE(2561), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2580), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2580), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(978), + [sym_block_comment] = STATE(978), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100604,24 +112112,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(3682), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100629,39 +112136,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(859)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2628), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(859), - [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(979)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1689), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(974), + [sym_array_type] = STATE(1770), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(1770), + [sym_generic_type] = STATE(1534), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(1770), + [sym_pointer_type] = STATE(1770), + [sym_never_type] = STATE(1770), + [sym_abstract_type] = STATE(1770), + [sym_dynamic_type] = STATE(1770), + [sym_macro_invocation] = STATE(1770), + [sym_scoped_identifier] = STATE(3745), + [sym_scoped_type_identifier] = STATE(1238), + [sym_line_comment] = STATE(979), + [sym_block_comment] = STATE(979), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3652), + [anon_sym_i8] = ACTIONS(3652), + [anon_sym_u16] = ACTIONS(3652), + [anon_sym_i16] = ACTIONS(3652), + [anon_sym_u32] = ACTIONS(3652), + [anon_sym_i32] = ACTIONS(3652), + [anon_sym_u64] = ACTIONS(3652), + [anon_sym_i64] = ACTIONS(3652), + [anon_sym_u128] = ACTIONS(3652), + [anon_sym_i128] = ACTIONS(3652), + [anon_sym_isize] = ACTIONS(3652), + [anon_sym_usize] = ACTIONS(3652), + [anon_sym_f32] = ACTIONS(3652), + [anon_sym_f64] = ACTIONS(3652), + [anon_sym_bool] = ACTIONS(3652), + [anon_sym_str] = ACTIONS(3652), + [anon_sym_char] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3664), + [anon_sym_impl] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3668), + [sym_mutable_specifier] = ACTIONS(3684), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3674), + }, + [STATE(980)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3153), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(980), + [sym_block_comment] = STATE(980), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3686), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100679,23 +112260,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100703,39 +112284,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(860)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(860), - [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(981)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3482), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(981), + [sym_block_comment] = STATE(981), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3688), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100753,23 +112334,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100777,39 +112358,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(861)] = { - [sym_function_modifiers] = STATE(3774), - [sym_higher_ranked_trait_bound] = STATE(2313), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2287), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2287), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(861), - [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(982)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3030), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(982), + [sym_block_comment] = STATE(982), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100827,23 +112407,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3690), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(3254), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100851,39 +112432,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(862)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_type_parameters] = STATE(975), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2453), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2450), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2254), - [sym_line_comment] = STATE(862), - [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3256), + [STATE(983)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3482), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(983), + [sym_block_comment] = STATE(983), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3692), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100901,23 +112482,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100925,38 +112506,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(863)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(852), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(863), - [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(984)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3482), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(984), + [sym_block_comment] = STATE(984), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3694), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -100974,24 +112556,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -100999,113 +112580,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(864)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1476), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(849), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(864), - [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [sym_mutable_specifier] = ACTIONS(3262), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(865)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2722), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(865), - [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(985)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_type_parameters] = STATE(1156), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2700), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2812), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2555), + [sym_line_comment] = STATE(985), + [sym_block_comment] = STATE(985), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3696), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3264), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101123,23 +112630,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3680), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101147,39 +112654,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(866)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_type_parameters] = STATE(941), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2431), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2236), - [sym_line_comment] = STATE(866), - [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3266), + [STATE(986)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3111), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(986), + [sym_block_comment] = STATE(986), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3700), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101197,23 +112704,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101221,39 +112728,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(867)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(867), - [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(987)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3676), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(969), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(987), + [sym_block_comment] = STATE(987), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3270), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101271,23 +112777,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), + [sym_mutable_specifier] = ACTIONS(3702), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101295,38 +112802,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(868)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2777), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(868), - [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(988)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_type_parameters] = STATE(1125), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2800), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2802), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2549), + [sym_line_comment] = STATE(988), + [sym_block_comment] = STATE(988), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3704), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101344,24 +112852,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3680), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101369,39 +112876,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(869)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(869), - [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(989)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_type_parameters] = STATE(1014), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2733), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2734), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2525), + [sym_line_comment] = STATE(989), + [sym_block_comment] = STATE(989), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3708), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3274), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101419,23 +112926,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3680), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101443,39 +112950,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(870)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2722), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(870), - [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(990)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3078), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(990), + [sym_block_comment] = STATE(990), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3686), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101493,23 +113000,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101517,39 +113024,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(871)] = { - [sym_function_modifiers] = STATE(3774), - [sym_higher_ranked_trait_bound] = STATE(2240), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2242), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2242), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(871), - [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(991)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3482), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(991), + [sym_block_comment] = STATE(991), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3712), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101567,23 +113074,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(3254), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101591,39 +113098,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(872)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(872), - [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(992)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3482), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(992), + [sym_block_comment] = STATE(992), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_RPAREN] = ACTIONS(3714), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101641,23 +113148,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101665,39 +113172,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(873)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(873), - [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(993)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2352), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(972), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(993), + [sym_block_comment] = STATE(993), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3278), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101715,23 +113221,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), + [sym_mutable_specifier] = ACTIONS(3716), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101739,39 +113246,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(874)] = { - [sym_function_modifiers] = STATE(3774), - [sym_higher_ranked_trait_bound] = STATE(2313), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2276), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2276), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(874), - [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(994)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3111), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(994), + [sym_block_comment] = STATE(994), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3686), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101789,23 +113296,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(3254), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101813,38 +113320,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(875)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(875), - [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(995)] = { + [sym_function_modifiers] = STATE(4296), + [sym_higher_ranked_trait_bound] = STATE(2521), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2523), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2523), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(995), + [sym_block_comment] = STATE(995), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101862,24 +113370,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(3682), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(3280), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101887,39 +113394,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(876)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2628), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(876), - [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(996)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(1999), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(973), + [sym_array_type] = STATE(1999), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(1999), + [sym_tuple_type] = STATE(1999), + [sym_unit_type] = STATE(1999), + [sym_generic_type] = STATE(1929), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(1999), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(1999), + [sym_pointer_type] = STATE(1999), + [sym_never_type] = STATE(1999), + [sym_abstract_type] = STATE(1999), + [sym_dynamic_type] = STATE(1999), + [sym_macro_invocation] = STATE(1999), + [sym_scoped_identifier] = STATE(3856), + [sym_scoped_type_identifier] = STATE(1855), + [sym_line_comment] = STATE(996), + [sym_block_comment] = STATE(996), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3616), + [anon_sym_i8] = ACTIONS(3616), + [anon_sym_u16] = ACTIONS(3616), + [anon_sym_i16] = ACTIONS(3616), + [anon_sym_u32] = ACTIONS(3616), + [anon_sym_i32] = ACTIONS(3616), + [anon_sym_u64] = ACTIONS(3616), + [anon_sym_i64] = ACTIONS(3616), + [anon_sym_u128] = ACTIONS(3616), + [anon_sym_i128] = ACTIONS(3616), + [anon_sym_isize] = ACTIONS(3616), + [anon_sym_usize] = ACTIONS(3616), + [anon_sym_f32] = ACTIONS(3616), + [anon_sym_f64] = ACTIONS(3616), + [anon_sym_bool] = ACTIONS(3616), + [anon_sym_str] = ACTIONS(3616), + [anon_sym_char] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3628), + [anon_sym_impl] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3632), + [sym_mutable_specifier] = ACTIONS(3718), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3638), + }, + [STATE(997)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2352), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(971), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(997), + [sym_block_comment] = STATE(997), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3282), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -101937,23 +113517,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [sym_mutable_specifier] = ACTIONS(3720), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -101961,39 +113542,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(877)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3022), - [sym_bracketed_type] = STATE(3712), - [sym_qualified_type] = STATE(3744), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(877), - [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(998)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_type_parameters] = STATE(1030), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2761), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2746), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2504), + [sym_line_comment] = STATE(998), + [sym_block_comment] = STATE(998), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3722), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102011,23 +113592,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3680), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102035,38 +113616,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(878)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3345), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(850), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(878), - [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(999)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3153), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(999), + [sym_block_comment] = STATE(999), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3726), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102084,24 +113666,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3284), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102109,39 +113690,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(879)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(879), - [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1000)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_type_parameters] = STATE(1137), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2750), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2807), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2552), + [sym_line_comment] = STATE(1000), + [sym_block_comment] = STATE(1000), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3728), [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3286), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102159,23 +113740,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3680), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102183,112 +113764,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(880)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1786), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(851), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(880), - [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [sym_mutable_specifier] = ACTIONS(3288), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(881)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2428), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(881), - [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1001)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3482), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1001), + [sym_block_comment] = STATE(1001), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3732), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102306,23 +113814,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102330,38 +113838,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(882)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3434), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(882), - [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1002)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3076), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1002), + [sym_block_comment] = STATE(1002), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102379,23 +113887,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3734), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102403,111 +113912,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(883)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3696), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(1194), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1459), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3386), - [sym_scoped_type_identifier] = STATE(1087), - [sym_line_comment] = STATE(883), - [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), + [STATE(1003)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1708), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(3971), + [sym_array_type] = STATE(1770), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(1770), + [sym_generic_type] = STATE(1534), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(1770), + [sym_pointer_type] = STATE(1770), + [sym_never_type] = STATE(1770), + [sym_abstract_type] = STATE(1770), + [sym_dynamic_type] = STATE(1770), + [sym_macro_invocation] = STATE(1770), + [sym_scoped_identifier] = STATE(3745), + [sym_scoped_type_identifier] = STATE(1238), + [sym_line_comment] = STATE(1003), + [sym_block_comment] = STATE(1003), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3652), + [anon_sym_i8] = ACTIONS(3652), + [anon_sym_u16] = ACTIONS(3652), + [anon_sym_i16] = ACTIONS(3652), + [anon_sym_u32] = ACTIONS(3652), + [anon_sym_i32] = ACTIONS(3652), + [anon_sym_u64] = ACTIONS(3652), + [anon_sym_i64] = ACTIONS(3652), + [anon_sym_u128] = ACTIONS(3652), + [anon_sym_i128] = ACTIONS(3652), + [anon_sym_isize] = ACTIONS(3652), + [anon_sym_usize] = ACTIONS(3652), + [anon_sym_f32] = ACTIONS(3652), + [anon_sym_f64] = ACTIONS(3652), + [anon_sym_bool] = ACTIONS(3652), + [anon_sym_str] = ACTIONS(3652), + [anon_sym_char] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3664), + [anon_sym_impl] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3668), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3674), + }, + [STATE(1004)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2315), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1004), + [sym_block_comment] = STATE(1004), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3294), - [anon_sym_i8] = ACTIONS(3294), - [anon_sym_u16] = ACTIONS(3294), - [anon_sym_i16] = ACTIONS(3294), - [anon_sym_u32] = ACTIONS(3294), - [anon_sym_i32] = ACTIONS(3294), - [anon_sym_u64] = ACTIONS(3294), - [anon_sym_i64] = ACTIONS(3294), - [anon_sym_u128] = ACTIONS(3294), - [anon_sym_i128] = ACTIONS(3294), - [anon_sym_isize] = ACTIONS(3294), - [anon_sym_usize] = ACTIONS(3294), - [anon_sym_f32] = ACTIONS(3294), - [anon_sym_f64] = ACTIONS(3294), - [anon_sym_bool] = ACTIONS(3294), - [anon_sym_str] = ACTIONS(3294), - [anon_sym_char] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3298), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3300), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, - [STATE(884)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3376), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(884), - [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1005)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3177), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1005), + [sym_block_comment] = STATE(1005), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102525,23 +114107,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102549,38 +114131,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(885)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2062), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(885), - [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1006)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3500), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1006), + [sym_block_comment] = STATE(1006), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102598,23 +114180,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102622,38 +114204,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(886)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2421), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(886), - [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1007)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2771), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2797), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2550), + [sym_line_comment] = STATE(1007), + [sym_block_comment] = STATE(1007), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3736), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102671,23 +114253,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3738), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102695,38 +114277,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(887)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2063), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(887), - [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1008)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1754), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(3971), + [sym_array_type] = STATE(1770), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(1770), + [sym_generic_type] = STATE(1534), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(1770), + [sym_pointer_type] = STATE(1770), + [sym_never_type] = STATE(1770), + [sym_abstract_type] = STATE(1770), + [sym_dynamic_type] = STATE(1770), + [sym_macro_invocation] = STATE(1770), + [sym_scoped_identifier] = STATE(3745), + [sym_scoped_type_identifier] = STATE(1238), + [sym_line_comment] = STATE(1008), + [sym_block_comment] = STATE(1008), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3652), + [anon_sym_i8] = ACTIONS(3652), + [anon_sym_u16] = ACTIONS(3652), + [anon_sym_i16] = ACTIONS(3652), + [anon_sym_u32] = ACTIONS(3652), + [anon_sym_i32] = ACTIONS(3652), + [anon_sym_u64] = ACTIONS(3652), + [anon_sym_i64] = ACTIONS(3652), + [anon_sym_u128] = ACTIONS(3652), + [anon_sym_i128] = ACTIONS(3652), + [anon_sym_isize] = ACTIONS(3652), + [anon_sym_usize] = ACTIONS(3652), + [anon_sym_f32] = ACTIONS(3652), + [anon_sym_f64] = ACTIONS(3652), + [anon_sym_bool] = ACTIONS(3652), + [anon_sym_str] = ACTIONS(3652), + [anon_sym_char] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3664), + [anon_sym_impl] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3668), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3674), + }, + [STATE(1009)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1764), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(3971), + [sym_array_type] = STATE(1770), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(1770), + [sym_generic_type] = STATE(1534), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(1770), + [sym_pointer_type] = STATE(1770), + [sym_never_type] = STATE(1770), + [sym_abstract_type] = STATE(1770), + [sym_dynamic_type] = STATE(1770), + [sym_macro_invocation] = STATE(1770), + [sym_scoped_identifier] = STATE(3745), + [sym_scoped_type_identifier] = STATE(1238), + [sym_line_comment] = STATE(1009), + [sym_block_comment] = STATE(1009), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3652), + [anon_sym_i8] = ACTIONS(3652), + [anon_sym_u16] = ACTIONS(3652), + [anon_sym_i16] = ACTIONS(3652), + [anon_sym_u32] = ACTIONS(3652), + [anon_sym_i32] = ACTIONS(3652), + [anon_sym_u64] = ACTIONS(3652), + [anon_sym_i64] = ACTIONS(3652), + [anon_sym_u128] = ACTIONS(3652), + [anon_sym_i128] = ACTIONS(3652), + [anon_sym_isize] = ACTIONS(3652), + [anon_sym_usize] = ACTIONS(3652), + [anon_sym_f32] = ACTIONS(3652), + [anon_sym_f64] = ACTIONS(3652), + [anon_sym_bool] = ACTIONS(3652), + [anon_sym_str] = ACTIONS(3652), + [anon_sym_char] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3664), + [anon_sym_impl] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3668), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3674), + }, + [STATE(1010)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1766), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(3971), + [sym_array_type] = STATE(1770), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(1770), + [sym_generic_type] = STATE(1534), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(1770), + [sym_pointer_type] = STATE(1770), + [sym_never_type] = STATE(1770), + [sym_abstract_type] = STATE(1770), + [sym_dynamic_type] = STATE(1770), + [sym_macro_invocation] = STATE(1770), + [sym_scoped_identifier] = STATE(3745), + [sym_scoped_type_identifier] = STATE(1238), + [sym_line_comment] = STATE(1010), + [sym_block_comment] = STATE(1010), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3652), + [anon_sym_i8] = ACTIONS(3652), + [anon_sym_u16] = ACTIONS(3652), + [anon_sym_i16] = ACTIONS(3652), + [anon_sym_u32] = ACTIONS(3652), + [anon_sym_i32] = ACTIONS(3652), + [anon_sym_u64] = ACTIONS(3652), + [anon_sym_i64] = ACTIONS(3652), + [anon_sym_u128] = ACTIONS(3652), + [anon_sym_i128] = ACTIONS(3652), + [anon_sym_isize] = ACTIONS(3652), + [anon_sym_usize] = ACTIONS(3652), + [anon_sym_f32] = ACTIONS(3652), + [anon_sym_f64] = ACTIONS(3652), + [anon_sym_bool] = ACTIONS(3652), + [anon_sym_str] = ACTIONS(3652), + [anon_sym_char] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3664), + [anon_sym_impl] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3668), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3674), + }, + [STATE(1011)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3201), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1011), + [sym_block_comment] = STATE(1011), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102744,23 +114545,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102768,111 +114569,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(888)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1426), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(1426), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(1426), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(888), - [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [STATE(1012)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1761), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(3971), + [sym_array_type] = STATE(1770), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(1770), + [sym_generic_type] = STATE(1534), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(1770), + [sym_pointer_type] = STATE(1770), + [sym_never_type] = STATE(1770), + [sym_abstract_type] = STATE(1770), + [sym_dynamic_type] = STATE(1770), + [sym_macro_invocation] = STATE(1770), + [sym_scoped_identifier] = STATE(3745), + [sym_scoped_type_identifier] = STATE(1238), + [sym_line_comment] = STATE(1012), + [sym_block_comment] = STATE(1012), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3652), + [anon_sym_i8] = ACTIONS(3652), + [anon_sym_u16] = ACTIONS(3652), + [anon_sym_i16] = ACTIONS(3652), + [anon_sym_u32] = ACTIONS(3652), + [anon_sym_i32] = ACTIONS(3652), + [anon_sym_u64] = ACTIONS(3652), + [anon_sym_i64] = ACTIONS(3652), + [anon_sym_u128] = ACTIONS(3652), + [anon_sym_i128] = ACTIONS(3652), + [anon_sym_isize] = ACTIONS(3652), + [anon_sym_usize] = ACTIONS(3652), + [anon_sym_f32] = ACTIONS(3652), + [anon_sym_f64] = ACTIONS(3652), + [anon_sym_bool] = ACTIONS(3652), + [anon_sym_str] = ACTIONS(3652), + [anon_sym_char] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3664), + [anon_sym_impl] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3668), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3674), }, - [STATE(889)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2066), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(889), - [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1013)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3087), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1013), + [sym_block_comment] = STATE(1013), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102890,23 +114691,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102914,38 +114715,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(890)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2841), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(890), - [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1014)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2775), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2764), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2502), + [sym_line_comment] = STATE(1014), + [sym_block_comment] = STATE(1014), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3740), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -102963,23 +114764,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3742), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -102987,111 +114788,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(891)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1465), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(891), - [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), + [STATE(1015)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2596), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1015), + [sym_block_comment] = STATE(1015), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, - [STATE(892)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3303), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(892), - [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1016)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2737), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1016), + [sym_block_comment] = STATE(1016), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103109,23 +114910,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103133,38 +114934,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(893)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2652), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(893), - [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1017)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2752), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1017), + [sym_block_comment] = STATE(1017), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103182,23 +114983,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103206,38 +115007,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(894)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2067), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(894), - [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1018)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3412), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1018), + [sym_block_comment] = STATE(1018), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103255,23 +115056,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103279,34 +115080,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(895)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2068), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(895), - [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1019)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3041), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1019), + [sym_block_comment] = STATE(1019), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1605), @@ -103328,22 +115129,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), @@ -103352,38 +115153,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(896)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2269), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(896), - [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1020)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3547), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1020), + [sym_block_comment] = STATE(1020), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103401,23 +115202,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103425,38 +115226,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(897)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2622), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(897), - [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1021)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3061), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1021), + [sym_block_comment] = STATE(1021), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103474,23 +115275,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103498,38 +115299,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(898)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2401), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(898), - [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1022)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3213), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1022), + [sym_block_comment] = STATE(1022), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103547,23 +115348,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103571,111 +115372,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(899)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1427), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(899), - [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(900)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2472), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(900), - [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1023)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3482), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1023), + [sym_block_comment] = STATE(1023), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103693,23 +115421,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103717,38 +115445,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(901)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2487), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(901), - [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1024)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2337), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1024), + [sym_block_comment] = STATE(1024), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103766,62 +115494,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), + [sym_self] = ACTIONS(3744), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(902)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2406), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(902), - [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1025)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2608), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1025), + [sym_block_comment] = STATE(1025), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103839,23 +115567,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103863,38 +115591,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(903)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2375), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(903), - [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1026)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(1999), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2091), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(4182), + [sym_array_type] = STATE(1999), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(1999), + [sym_tuple_type] = STATE(1999), + [sym_unit_type] = STATE(1999), + [sym_generic_type] = STATE(1929), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(1999), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(1999), + [sym_pointer_type] = STATE(1999), + [sym_never_type] = STATE(1999), + [sym_abstract_type] = STATE(1999), + [sym_dynamic_type] = STATE(1999), + [sym_macro_invocation] = STATE(1999), + [sym_scoped_identifier] = STATE(3856), + [sym_scoped_type_identifier] = STATE(1855), + [sym_line_comment] = STATE(1026), + [sym_block_comment] = STATE(1026), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3616), + [anon_sym_i8] = ACTIONS(3616), + [anon_sym_u16] = ACTIONS(3616), + [anon_sym_i16] = ACTIONS(3616), + [anon_sym_u32] = ACTIONS(3616), + [anon_sym_i32] = ACTIONS(3616), + [anon_sym_u64] = ACTIONS(3616), + [anon_sym_i64] = ACTIONS(3616), + [anon_sym_u128] = ACTIONS(3616), + [anon_sym_i128] = ACTIONS(3616), + [anon_sym_isize] = ACTIONS(3616), + [anon_sym_usize] = ACTIONS(3616), + [anon_sym_f32] = ACTIONS(3616), + [anon_sym_f64] = ACTIONS(3616), + [anon_sym_bool] = ACTIONS(3616), + [anon_sym_str] = ACTIONS(3616), + [anon_sym_char] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3628), + [anon_sym_impl] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3632), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3638), + }, + [STATE(1027)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(1999), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1963), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(4182), + [sym_array_type] = STATE(1999), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(1999), + [sym_tuple_type] = STATE(1999), + [sym_unit_type] = STATE(1999), + [sym_generic_type] = STATE(1929), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(1999), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(1999), + [sym_pointer_type] = STATE(1999), + [sym_never_type] = STATE(1999), + [sym_abstract_type] = STATE(1999), + [sym_dynamic_type] = STATE(1999), + [sym_macro_invocation] = STATE(1999), + [sym_scoped_identifier] = STATE(3856), + [sym_scoped_type_identifier] = STATE(1855), + [sym_line_comment] = STATE(1027), + [sym_block_comment] = STATE(1027), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3616), + [anon_sym_i8] = ACTIONS(3616), + [anon_sym_u16] = ACTIONS(3616), + [anon_sym_i16] = ACTIONS(3616), + [anon_sym_u32] = ACTIONS(3616), + [anon_sym_i32] = ACTIONS(3616), + [anon_sym_u64] = ACTIONS(3616), + [anon_sym_i64] = ACTIONS(3616), + [anon_sym_u128] = ACTIONS(3616), + [anon_sym_i128] = ACTIONS(3616), + [anon_sym_isize] = ACTIONS(3616), + [anon_sym_usize] = ACTIONS(3616), + [anon_sym_f32] = ACTIONS(3616), + [anon_sym_f64] = ACTIONS(3616), + [anon_sym_bool] = ACTIONS(3616), + [anon_sym_str] = ACTIONS(3616), + [anon_sym_char] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3628), + [anon_sym_impl] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3632), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3638), + }, + [STATE(1028)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2343), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1028), + [sym_block_comment] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103912,23 +115786,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -103936,38 +115810,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(904)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2302), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(904), - [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1029)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(1999), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2041), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(2041), + [sym_array_type] = STATE(1999), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(1999), + [sym_tuple_type] = STATE(1999), + [sym_unit_type] = STATE(1999), + [sym_generic_type] = STATE(1929), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(1999), + [sym_use_bounds] = STATE(2041), + [sym_reference_type] = STATE(1999), + [sym_pointer_type] = STATE(1999), + [sym_never_type] = STATE(1999), + [sym_abstract_type] = STATE(1999), + [sym_dynamic_type] = STATE(1999), + [sym_macro_invocation] = STATE(1999), + [sym_scoped_identifier] = STATE(3856), + [sym_scoped_type_identifier] = STATE(1855), + [sym_line_comment] = STATE(1029), + [sym_block_comment] = STATE(1029), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3616), + [anon_sym_i8] = ACTIONS(3616), + [anon_sym_u16] = ACTIONS(3616), + [anon_sym_i16] = ACTIONS(3616), + [anon_sym_u32] = ACTIONS(3616), + [anon_sym_i32] = ACTIONS(3616), + [anon_sym_u64] = ACTIONS(3616), + [anon_sym_i64] = ACTIONS(3616), + [anon_sym_u128] = ACTIONS(3616), + [anon_sym_i128] = ACTIONS(3616), + [anon_sym_isize] = ACTIONS(3616), + [anon_sym_usize] = ACTIONS(3616), + [anon_sym_f32] = ACTIONS(3616), + [anon_sym_f64] = ACTIONS(3616), + [anon_sym_bool] = ACTIONS(3616), + [anon_sym_str] = ACTIONS(3616), + [anon_sym_char] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3746), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3628), + [anon_sym_impl] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(3748), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3632), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3638), + }, + [STATE(1030)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2778), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2801), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2528), + [sym_line_comment] = STATE(1030), + [sym_block_comment] = STATE(1030), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3750), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -103985,23 +115932,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3752), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -104009,38 +115956,695 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(905)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(905), - [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1031)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(1999), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2095), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(4182), + [sym_array_type] = STATE(1999), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(1999), + [sym_tuple_type] = STATE(1999), + [sym_unit_type] = STATE(1999), + [sym_generic_type] = STATE(1929), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(1999), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(1999), + [sym_pointer_type] = STATE(1999), + [sym_never_type] = STATE(1999), + [sym_abstract_type] = STATE(1999), + [sym_dynamic_type] = STATE(1999), + [sym_macro_invocation] = STATE(1999), + [sym_scoped_identifier] = STATE(3856), + [sym_scoped_type_identifier] = STATE(1855), + [sym_line_comment] = STATE(1031), + [sym_block_comment] = STATE(1031), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3616), + [anon_sym_i8] = ACTIONS(3616), + [anon_sym_u16] = ACTIONS(3616), + [anon_sym_i16] = ACTIONS(3616), + [anon_sym_u32] = ACTIONS(3616), + [anon_sym_i32] = ACTIONS(3616), + [anon_sym_u64] = ACTIONS(3616), + [anon_sym_i64] = ACTIONS(3616), + [anon_sym_u128] = ACTIONS(3616), + [anon_sym_i128] = ACTIONS(3616), + [anon_sym_isize] = ACTIONS(3616), + [anon_sym_usize] = ACTIONS(3616), + [anon_sym_f32] = ACTIONS(3616), + [anon_sym_f64] = ACTIONS(3616), + [anon_sym_bool] = ACTIONS(3616), + [anon_sym_str] = ACTIONS(3616), + [anon_sym_char] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3628), + [anon_sym_impl] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3632), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3638), + }, + [STATE(1032)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(1999), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2044), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(4182), + [sym_array_type] = STATE(1999), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(1999), + [sym_tuple_type] = STATE(1999), + [sym_unit_type] = STATE(1999), + [sym_generic_type] = STATE(1929), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(1999), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(1999), + [sym_pointer_type] = STATE(1999), + [sym_never_type] = STATE(1999), + [sym_abstract_type] = STATE(1999), + [sym_dynamic_type] = STATE(1999), + [sym_macro_invocation] = STATE(1999), + [sym_scoped_identifier] = STATE(3856), + [sym_scoped_type_identifier] = STATE(1855), + [sym_line_comment] = STATE(1032), + [sym_block_comment] = STATE(1032), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3616), + [anon_sym_i8] = ACTIONS(3616), + [anon_sym_u16] = ACTIONS(3616), + [anon_sym_i16] = ACTIONS(3616), + [anon_sym_u32] = ACTIONS(3616), + [anon_sym_i32] = ACTIONS(3616), + [anon_sym_u64] = ACTIONS(3616), + [anon_sym_i64] = ACTIONS(3616), + [anon_sym_u128] = ACTIONS(3616), + [anon_sym_i128] = ACTIONS(3616), + [anon_sym_isize] = ACTIONS(3616), + [anon_sym_usize] = ACTIONS(3616), + [anon_sym_f32] = ACTIONS(3616), + [anon_sym_f64] = ACTIONS(3616), + [anon_sym_bool] = ACTIONS(3616), + [anon_sym_str] = ACTIONS(3616), + [anon_sym_char] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3628), + [anon_sym_impl] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3632), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3638), + }, + [STATE(1033)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(1999), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2096), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(4182), + [sym_array_type] = STATE(1999), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(1999), + [sym_tuple_type] = STATE(1999), + [sym_unit_type] = STATE(1999), + [sym_generic_type] = STATE(1929), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(1999), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(1999), + [sym_pointer_type] = STATE(1999), + [sym_never_type] = STATE(1999), + [sym_abstract_type] = STATE(1999), + [sym_dynamic_type] = STATE(1999), + [sym_macro_invocation] = STATE(1999), + [sym_scoped_identifier] = STATE(3856), + [sym_scoped_type_identifier] = STATE(1855), + [sym_line_comment] = STATE(1033), + [sym_block_comment] = STATE(1033), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3616), + [anon_sym_i8] = ACTIONS(3616), + [anon_sym_u16] = ACTIONS(3616), + [anon_sym_i16] = ACTIONS(3616), + [anon_sym_u32] = ACTIONS(3616), + [anon_sym_i32] = ACTIONS(3616), + [anon_sym_u64] = ACTIONS(3616), + [anon_sym_i64] = ACTIONS(3616), + [anon_sym_u128] = ACTIONS(3616), + [anon_sym_i128] = ACTIONS(3616), + [anon_sym_isize] = ACTIONS(3616), + [anon_sym_usize] = ACTIONS(3616), + [anon_sym_f32] = ACTIONS(3616), + [anon_sym_f64] = ACTIONS(3616), + [anon_sym_bool] = ACTIONS(3616), + [anon_sym_str] = ACTIONS(3616), + [anon_sym_char] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3628), + [anon_sym_impl] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3632), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3638), + }, + [STATE(1034)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(1999), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2048), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(4182), + [sym_array_type] = STATE(1999), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(1999), + [sym_tuple_type] = STATE(1999), + [sym_unit_type] = STATE(1999), + [sym_generic_type] = STATE(1929), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(1999), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(1999), + [sym_pointer_type] = STATE(1999), + [sym_never_type] = STATE(1999), + [sym_abstract_type] = STATE(1999), + [sym_dynamic_type] = STATE(1999), + [sym_macro_invocation] = STATE(1999), + [sym_scoped_identifier] = STATE(3856), + [sym_scoped_type_identifier] = STATE(1855), + [sym_line_comment] = STATE(1034), + [sym_block_comment] = STATE(1034), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3616), + [anon_sym_i8] = ACTIONS(3616), + [anon_sym_u16] = ACTIONS(3616), + [anon_sym_i16] = ACTIONS(3616), + [anon_sym_u32] = ACTIONS(3616), + [anon_sym_i32] = ACTIONS(3616), + [anon_sym_u64] = ACTIONS(3616), + [anon_sym_i64] = ACTIONS(3616), + [anon_sym_u128] = ACTIONS(3616), + [anon_sym_i128] = ACTIONS(3616), + [anon_sym_isize] = ACTIONS(3616), + [anon_sym_usize] = ACTIONS(3616), + [anon_sym_f32] = ACTIONS(3616), + [anon_sym_f64] = ACTIONS(3616), + [anon_sym_bool] = ACTIONS(3616), + [anon_sym_str] = ACTIONS(3616), + [anon_sym_char] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3628), + [anon_sym_impl] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3632), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3638), + }, + [STATE(1035)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(1999), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2050), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(4182), + [sym_array_type] = STATE(1999), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(1999), + [sym_tuple_type] = STATE(1999), + [sym_unit_type] = STATE(1999), + [sym_generic_type] = STATE(1929), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(1999), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(1999), + [sym_pointer_type] = STATE(1999), + [sym_never_type] = STATE(1999), + [sym_abstract_type] = STATE(1999), + [sym_dynamic_type] = STATE(1999), + [sym_macro_invocation] = STATE(1999), + [sym_scoped_identifier] = STATE(3856), + [sym_scoped_type_identifier] = STATE(1855), + [sym_line_comment] = STATE(1035), + [sym_block_comment] = STATE(1035), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3616), + [anon_sym_i8] = ACTIONS(3616), + [anon_sym_u16] = ACTIONS(3616), + [anon_sym_i16] = ACTIONS(3616), + [anon_sym_u32] = ACTIONS(3616), + [anon_sym_i32] = ACTIONS(3616), + [anon_sym_u64] = ACTIONS(3616), + [anon_sym_i64] = ACTIONS(3616), + [anon_sym_u128] = ACTIONS(3616), + [anon_sym_i128] = ACTIONS(3616), + [anon_sym_isize] = ACTIONS(3616), + [anon_sym_usize] = ACTIONS(3616), + [anon_sym_f32] = ACTIONS(3616), + [anon_sym_f64] = ACTIONS(3616), + [anon_sym_bool] = ACTIONS(3616), + [anon_sym_str] = ACTIONS(3616), + [anon_sym_char] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3628), + [anon_sym_impl] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3632), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3638), + }, + [STATE(1036)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(1999), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(4182), + [sym_array_type] = STATE(1999), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(1999), + [sym_tuple_type] = STATE(1999), + [sym_unit_type] = STATE(1999), + [sym_generic_type] = STATE(1929), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(1999), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(1999), + [sym_pointer_type] = STATE(1999), + [sym_never_type] = STATE(1999), + [sym_abstract_type] = STATE(1999), + [sym_dynamic_type] = STATE(1999), + [sym_macro_invocation] = STATE(1999), + [sym_scoped_identifier] = STATE(3856), + [sym_scoped_type_identifier] = STATE(1855), + [sym_line_comment] = STATE(1036), + [sym_block_comment] = STATE(1036), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3616), + [anon_sym_i8] = ACTIONS(3616), + [anon_sym_u16] = ACTIONS(3616), + [anon_sym_i16] = ACTIONS(3616), + [anon_sym_u32] = ACTIONS(3616), + [anon_sym_i32] = ACTIONS(3616), + [anon_sym_u64] = ACTIONS(3616), + [anon_sym_i64] = ACTIONS(3616), + [anon_sym_u128] = ACTIONS(3616), + [anon_sym_i128] = ACTIONS(3616), + [anon_sym_isize] = ACTIONS(3616), + [anon_sym_usize] = ACTIONS(3616), + [anon_sym_f32] = ACTIONS(3616), + [anon_sym_f64] = ACTIONS(3616), + [anon_sym_bool] = ACTIONS(3616), + [anon_sym_str] = ACTIONS(3616), + [anon_sym_char] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3628), + [anon_sym_impl] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3632), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3638), + }, + [STATE(1037)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(1999), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2057), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(4182), + [sym_array_type] = STATE(1999), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(1999), + [sym_tuple_type] = STATE(1999), + [sym_unit_type] = STATE(1999), + [sym_generic_type] = STATE(1929), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(1999), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(1999), + [sym_pointer_type] = STATE(1999), + [sym_never_type] = STATE(1999), + [sym_abstract_type] = STATE(1999), + [sym_dynamic_type] = STATE(1999), + [sym_macro_invocation] = STATE(1999), + [sym_scoped_identifier] = STATE(3856), + [sym_scoped_type_identifier] = STATE(1855), + [sym_line_comment] = STATE(1037), + [sym_block_comment] = STATE(1037), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3616), + [anon_sym_i8] = ACTIONS(3616), + [anon_sym_u16] = ACTIONS(3616), + [anon_sym_i16] = ACTIONS(3616), + [anon_sym_u32] = ACTIONS(3616), + [anon_sym_i32] = ACTIONS(3616), + [anon_sym_u64] = ACTIONS(3616), + [anon_sym_i64] = ACTIONS(3616), + [anon_sym_u128] = ACTIONS(3616), + [anon_sym_i128] = ACTIONS(3616), + [anon_sym_isize] = ACTIONS(3616), + [anon_sym_usize] = ACTIONS(3616), + [anon_sym_f32] = ACTIONS(3616), + [anon_sym_f64] = ACTIONS(3616), + [anon_sym_bool] = ACTIONS(3616), + [anon_sym_str] = ACTIONS(3616), + [anon_sym_char] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3628), + [anon_sym_impl] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3632), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3638), + }, + [STATE(1038)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(1999), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2058), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(4182), + [sym_array_type] = STATE(1999), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(1999), + [sym_tuple_type] = STATE(1999), + [sym_unit_type] = STATE(1999), + [sym_generic_type] = STATE(1929), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(1999), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(1999), + [sym_pointer_type] = STATE(1999), + [sym_never_type] = STATE(1999), + [sym_abstract_type] = STATE(1999), + [sym_dynamic_type] = STATE(1999), + [sym_macro_invocation] = STATE(1999), + [sym_scoped_identifier] = STATE(3856), + [sym_scoped_type_identifier] = STATE(1855), + [sym_line_comment] = STATE(1038), + [sym_block_comment] = STATE(1038), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3616), + [anon_sym_i8] = ACTIONS(3616), + [anon_sym_u16] = ACTIONS(3616), + [anon_sym_i16] = ACTIONS(3616), + [anon_sym_u32] = ACTIONS(3616), + [anon_sym_i32] = ACTIONS(3616), + [anon_sym_u64] = ACTIONS(3616), + [anon_sym_i64] = ACTIONS(3616), + [anon_sym_u128] = ACTIONS(3616), + [anon_sym_i128] = ACTIONS(3616), + [anon_sym_isize] = ACTIONS(3616), + [anon_sym_usize] = ACTIONS(3616), + [anon_sym_f32] = ACTIONS(3616), + [anon_sym_f64] = ACTIONS(3616), + [anon_sym_bool] = ACTIONS(3616), + [anon_sym_str] = ACTIONS(3616), + [anon_sym_char] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3628), + [anon_sym_impl] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3632), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3638), + }, + [STATE(1039)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(1999), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2061), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(4182), + [sym_array_type] = STATE(1999), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(1999), + [sym_tuple_type] = STATE(1999), + [sym_unit_type] = STATE(1999), + [sym_generic_type] = STATE(1929), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(1999), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(1999), + [sym_pointer_type] = STATE(1999), + [sym_never_type] = STATE(1999), + [sym_abstract_type] = STATE(1999), + [sym_dynamic_type] = STATE(1999), + [sym_macro_invocation] = STATE(1999), + [sym_scoped_identifier] = STATE(3856), + [sym_scoped_type_identifier] = STATE(1855), + [sym_line_comment] = STATE(1039), + [sym_block_comment] = STATE(1039), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3616), + [anon_sym_i8] = ACTIONS(3616), + [anon_sym_u16] = ACTIONS(3616), + [anon_sym_i16] = ACTIONS(3616), + [anon_sym_u32] = ACTIONS(3616), + [anon_sym_i32] = ACTIONS(3616), + [anon_sym_u64] = ACTIONS(3616), + [anon_sym_i64] = ACTIONS(3616), + [anon_sym_u128] = ACTIONS(3616), + [anon_sym_i128] = ACTIONS(3616), + [anon_sym_isize] = ACTIONS(3616), + [anon_sym_usize] = ACTIONS(3616), + [anon_sym_f32] = ACTIONS(3616), + [anon_sym_f64] = ACTIONS(3616), + [anon_sym_bool] = ACTIONS(3616), + [anon_sym_str] = ACTIONS(3616), + [anon_sym_char] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3628), + [anon_sym_impl] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3632), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3638), + }, + [STATE(1040)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2982), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1040), + [sym_block_comment] = STATE(1040), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -104058,23 +116662,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -104082,184 +116686,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(906)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1714), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(906), - [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(907)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1717), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3548), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1717), - [sym_tuple_type] = STATE(1717), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(1666), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1717), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3404), - [sym_scoped_type_identifier] = STATE(1600), - [sym_line_comment] = STATE(907), - [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3310), - [anon_sym_i8] = ACTIONS(3310), - [anon_sym_u16] = ACTIONS(3310), - [anon_sym_i16] = ACTIONS(3310), - [anon_sym_u32] = ACTIONS(3310), - [anon_sym_i32] = ACTIONS(3310), - [anon_sym_u64] = ACTIONS(3310), - [anon_sym_i64] = ACTIONS(3310), - [anon_sym_u128] = ACTIONS(3310), - [anon_sym_i128] = ACTIONS(3310), - [anon_sym_isize] = ACTIONS(3310), - [anon_sym_usize] = ACTIONS(3310), - [anon_sym_f32] = ACTIONS(3310), - [anon_sym_f64] = ACTIONS(3310), - [anon_sym_bool] = ACTIONS(3310), - [anon_sym_str] = ACTIONS(3310), - [anon_sym_char] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3312), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_gen] = ACTIONS(3316), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3318), - }, - [STATE(908)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2046), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(908), - [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1041)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3455), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1041), + [sym_block_comment] = STATE(1041), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -104277,23 +116735,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -104301,38 +116759,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(909)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2409), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(909), - [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1042)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3462), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1042), + [sym_block_comment] = STATE(1042), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -104350,23 +116808,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -104374,38 +116832,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(910)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2282), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(910), - [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1043)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3030), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1043), + [sym_block_comment] = STATE(1043), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -104423,23 +116881,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -104447,38 +116905,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(911)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2047), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(911), - [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1044)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2742), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1044), + [sym_block_comment] = STATE(1044), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -104496,23 +116954,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -104520,38 +116978,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(912)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2396), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(912), - [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1045)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2743), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1045), + [sym_block_comment] = STATE(1045), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -104569,23 +117027,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -104593,34 +117051,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(913)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2054), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2054), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(913), - [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1046)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2316), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1046), + [sym_block_comment] = STATE(1046), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1605), @@ -104642,22 +117100,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), @@ -104666,107 +117124,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(914)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1753), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3548), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1753), - [sym_tuple_type] = STATE(1753), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(1660), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1753), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3404), - [sym_scoped_type_identifier] = STATE(1597), - [sym_line_comment] = STATE(914), - [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3310), - [anon_sym_i8] = ACTIONS(3310), - [anon_sym_u16] = ACTIONS(3310), - [anon_sym_i16] = ACTIONS(3310), - [anon_sym_u32] = ACTIONS(3310), - [anon_sym_i32] = ACTIONS(3310), - [anon_sym_u64] = ACTIONS(3310), - [anon_sym_i64] = ACTIONS(3310), - [anon_sym_u128] = ACTIONS(3310), - [anon_sym_i128] = ACTIONS(3310), - [anon_sym_isize] = ACTIONS(3310), - [anon_sym_usize] = ACTIONS(3310), - [anon_sym_f32] = ACTIONS(3310), - [anon_sym_f64] = ACTIONS(3310), - [anon_sym_bool] = ACTIONS(3310), - [anon_sym_str] = ACTIONS(3310), - [anon_sym_char] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3312), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3316), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3318), - }, - [STATE(915)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2695), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(915), - [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1047)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2317), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1047), + [sym_block_comment] = STATE(1047), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1605), @@ -104788,22 +117173,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), @@ -104812,38 +117197,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(916)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2281), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(916), - [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1048)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2319), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1048), + [sym_block_comment] = STATE(1048), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -104861,23 +117246,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -104885,38 +117270,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(917)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2413), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(917), - [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1049)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2328), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1049), + [sym_block_comment] = STATE(1049), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -104934,23 +117319,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -104958,38 +117343,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(918)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2414), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(918), - [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1050)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2613), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1050), + [sym_block_comment] = STATE(1050), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -105007,23 +117392,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -105031,111 +117416,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(919)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1456), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(919), - [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(920)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3121), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(920), - [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1051)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2329), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1051), + [sym_block_comment] = STATE(1051), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -105153,23 +117465,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -105177,38 +117489,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(921)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2432), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(921), - [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1052)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3076), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1052), + [sym_block_comment] = STATE(1052), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -105226,23 +117538,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -105250,257 +117562,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(922)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1805), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(922), - [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(923)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(923), - [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(924)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1475), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(924), - [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(925)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2437), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(925), - [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1053)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2623), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1053), + [sym_block_comment] = STATE(1053), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -105518,23 +117611,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -105542,111 +117635,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(926)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1745), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(1745), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(1745), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(926), - [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3322), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(3324), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(927)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3101), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(927), - [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1054)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3494), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1054), + [sym_block_comment] = STATE(1054), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -105664,23 +117684,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -105688,38 +117708,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(928)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(928), - [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1055)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2606), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1055), + [sym_block_comment] = STATE(1055), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -105737,23 +117757,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -105761,38 +117781,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(929)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2840), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(929), - [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1056)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2337), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1056), + [sym_block_comment] = STATE(1056), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -105810,23 +117830,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -105834,111 +117854,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(930)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1481), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3696), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1481), - [sym_tuple_type] = STATE(1481), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(1129), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1481), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3386), - [sym_scoped_type_identifier] = STATE(1086), - [sym_line_comment] = STATE(930), - [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3326), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3294), - [anon_sym_i8] = ACTIONS(3294), - [anon_sym_u16] = ACTIONS(3294), - [anon_sym_i16] = ACTIONS(3294), - [anon_sym_u32] = ACTIONS(3294), - [anon_sym_i32] = ACTIONS(3294), - [anon_sym_u64] = ACTIONS(3294), - [anon_sym_i64] = ACTIONS(3294), - [anon_sym_u128] = ACTIONS(3294), - [anon_sym_i128] = ACTIONS(3294), - [anon_sym_isize] = ACTIONS(3294), - [anon_sym_usize] = ACTIONS(3294), - [anon_sym_f32] = ACTIONS(3294), - [anon_sym_f64] = ACTIONS(3294), - [anon_sym_bool] = ACTIONS(3294), - [anon_sym_str] = ACTIONS(3294), - [anon_sym_char] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_gen] = ACTIONS(3298), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3300), - }, - [STATE(931)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2660), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(931), - [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1057)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3060), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1057), + [sym_block_comment] = STATE(1057), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -105956,23 +117903,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -105980,38 +117927,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(932)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3036), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(932), - [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1058)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2336), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2336), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(2336), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1058), + [sym_block_comment] = STATE(1058), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -106029,23 +117976,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3486), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -106053,38 +118000,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(933)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2514), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(933), - [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1059)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3821), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1059), + [sym_block_comment] = STATE(1059), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -106102,23 +118049,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -106126,38 +118073,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(934)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2786), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(934), - [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1060)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2993), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1060), + [sym_block_comment] = STATE(1060), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -106175,23 +118122,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -106199,403 +118146,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(935)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1811), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(935), - [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(936)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1751), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(936), - [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(937)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1812), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(937), - [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(938)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1758), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(938), - [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(939)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1761), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(939), - [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(940)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3118), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(940), - [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1061)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3576), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1061), + [sym_block_comment] = STATE(1061), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -106613,23 +118195,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -106637,38 +118219,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(941)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2385), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2388), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2226), - [sym_line_comment] = STATE(941), - [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3330), + [STATE(1062)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2616), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1062), + [sym_block_comment] = STATE(1062), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -106686,23 +118268,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -106710,184 +118292,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(942)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1769), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(942), - [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(943)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1770), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(943), - [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(944)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2671), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(944), - [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1063)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3537), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1063), + [sym_block_comment] = STATE(1063), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -106905,23 +118341,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -106929,111 +118365,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(945)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1771), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(945), - [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(946)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2831), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(946), - [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1064)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2741), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1064), + [sym_block_comment] = STATE(1064), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -107051,23 +118414,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -107075,38 +118438,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(947)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2669), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(947), - [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1065)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2744), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1065), + [sym_block_comment] = STATE(1065), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -107124,23 +118487,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -107148,38 +118511,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(948)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(948), - [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1066)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1688), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(3971), + [sym_array_type] = STATE(1770), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(1770), + [sym_generic_type] = STATE(1534), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(1770), + [sym_pointer_type] = STATE(1770), + [sym_never_type] = STATE(1770), + [sym_abstract_type] = STATE(1770), + [sym_dynamic_type] = STATE(1770), + [sym_macro_invocation] = STATE(1770), + [sym_scoped_identifier] = STATE(3745), + [sym_scoped_type_identifier] = STATE(1238), + [sym_line_comment] = STATE(1066), + [sym_block_comment] = STATE(1066), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3652), + [anon_sym_i8] = ACTIONS(3652), + [anon_sym_u16] = ACTIONS(3652), + [anon_sym_i16] = ACTIONS(3652), + [anon_sym_u32] = ACTIONS(3652), + [anon_sym_i32] = ACTIONS(3652), + [anon_sym_u64] = ACTIONS(3652), + [anon_sym_i64] = ACTIONS(3652), + [anon_sym_u128] = ACTIONS(3652), + [anon_sym_i128] = ACTIONS(3652), + [anon_sym_isize] = ACTIONS(3652), + [anon_sym_usize] = ACTIONS(3652), + [anon_sym_f32] = ACTIONS(3652), + [anon_sym_f64] = ACTIONS(3652), + [anon_sym_bool] = ACTIONS(3652), + [anon_sym_str] = ACTIONS(3652), + [anon_sym_char] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3664), + [anon_sym_impl] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3668), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3674), + }, + [STATE(1067)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2322), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1067), + [sym_block_comment] = STATE(1067), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -107197,23 +118633,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -107221,111 +118657,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(949)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1775), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(949), - [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(950)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2961), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(950), - [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1068)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1692), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3971), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(3971), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1692), + [sym_tuple_type] = STATE(1692), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(1563), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1692), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3843), + [sym_scoped_type_identifier] = STATE(1241), + [sym_line_comment] = STATE(1068), + [sym_block_comment] = STATE(1068), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3754), + [anon_sym_LPAREN] = ACTIONS(3756), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3758), + [anon_sym_i8] = ACTIONS(3758), + [anon_sym_u16] = ACTIONS(3758), + [anon_sym_i16] = ACTIONS(3758), + [anon_sym_u32] = ACTIONS(3758), + [anon_sym_i32] = ACTIONS(3758), + [anon_sym_u64] = ACTIONS(3758), + [anon_sym_i64] = ACTIONS(3758), + [anon_sym_u128] = ACTIONS(3758), + [anon_sym_i128] = ACTIONS(3758), + [anon_sym_isize] = ACTIONS(3758), + [anon_sym_usize] = ACTIONS(3758), + [anon_sym_f32] = ACTIONS(3758), + [anon_sym_f64] = ACTIONS(3758), + [anon_sym_bool] = ACTIONS(3758), + [anon_sym_str] = ACTIONS(3758), + [anon_sym_char] = ACTIONS(3758), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3760), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_gen] = ACTIONS(3764), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(3764), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3766), + }, + [STATE(1069)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2773), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1069), + [sym_block_comment] = STATE(1069), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -107343,23 +118779,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -107367,38 +118803,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(951)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2062), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(951), - [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1070)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2774), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1070), + [sym_block_comment] = STATE(1070), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -107416,62 +118852,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3334), + [sym_self] = ACTIONS(1631), [sym_super] = ACTIONS(1631), [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(952)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2693), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(952), - [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1071)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(1999), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2145), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(4182), + [sym_array_type] = STATE(1999), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(1999), + [sym_tuple_type] = STATE(1999), + [sym_unit_type] = STATE(1999), + [sym_generic_type] = STATE(1929), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(1999), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(1999), + [sym_pointer_type] = STATE(1999), + [sym_never_type] = STATE(1999), + [sym_abstract_type] = STATE(1999), + [sym_dynamic_type] = STATE(1999), + [sym_macro_invocation] = STATE(1999), + [sym_scoped_identifier] = STATE(3856), + [sym_scoped_type_identifier] = STATE(1855), + [sym_line_comment] = STATE(1071), + [sym_block_comment] = STATE(1071), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3616), + [anon_sym_i8] = ACTIONS(3616), + [anon_sym_u16] = ACTIONS(3616), + [anon_sym_i16] = ACTIONS(3616), + [anon_sym_u32] = ACTIONS(3616), + [anon_sym_i32] = ACTIONS(3616), + [anon_sym_u64] = ACTIONS(3616), + [anon_sym_i64] = ACTIONS(3616), + [anon_sym_u128] = ACTIONS(3616), + [anon_sym_i128] = ACTIONS(3616), + [anon_sym_isize] = ACTIONS(3616), + [anon_sym_usize] = ACTIONS(3616), + [anon_sym_f32] = ACTIONS(3616), + [anon_sym_f64] = ACTIONS(3616), + [anon_sym_bool] = ACTIONS(3616), + [anon_sym_str] = ACTIONS(3616), + [anon_sym_char] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3628), + [anon_sym_impl] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3632), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3638), + }, + [STATE(1072)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2776), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1072), + [sym_block_comment] = STATE(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -107489,23 +118998,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -107513,184 +119022,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(953)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1752), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), - [sym_line_comment] = STATE(953), - [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), - }, - [STATE(954)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1458), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(954), - [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(955)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2824), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(955), - [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1073)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2324), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(4043), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2324), + [sym_tuple_type] = STATE(2324), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2311), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2324), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2557), + [sym_line_comment] = STATE(1073), + [sym_block_comment] = STATE(1073), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3768), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -107708,23 +119071,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -107732,111 +119095,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(956)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1504), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(956), - [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(957)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3043), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(957), - [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1074)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2346), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1074), + [sym_block_comment] = STATE(1074), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -107854,23 +119144,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -107878,111 +119168,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(958)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1505), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(958), - [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(959)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2377), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2447), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2253), - [sym_line_comment] = STATE(959), - [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3336), + [STATE(1075)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2777), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1075), + [sym_block_comment] = STATE(1075), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108000,23 +119217,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108024,34 +119241,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(960)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3401), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(960), - [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1076)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2347), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1076), + [sym_block_comment] = STATE(1076), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1605), @@ -108073,22 +119290,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), @@ -108097,34 +119314,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(961)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3402), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(961), - [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1077)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3668), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1077), + [sym_block_comment] = STATE(1077), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), [anon_sym_STAR] = ACTIONS(1605), @@ -108146,22 +119363,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1113), [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), @@ -108170,38 +119387,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(962)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2519), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(962), - [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1078)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3671), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1078), + [sym_block_comment] = STATE(1078), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108219,23 +119436,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108243,38 +119460,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(963)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3087), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(963), - [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1079)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2320), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1079), + [sym_block_comment] = STATE(1079), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108292,23 +119509,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108316,38 +119533,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(964)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2058), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(964), - [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1080)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2336), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(2336), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(2336), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1080), + [sym_block_comment] = STATE(1080), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108365,23 +119582,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108389,38 +119606,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(965)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(965), - [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1081)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3451), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1081), + [sym_block_comment] = STATE(1081), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108438,23 +119655,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108462,38 +119679,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(966)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2054), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2054), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(966), - [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1082)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2315), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1082), + [sym_block_comment] = STATE(1082), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108511,23 +119728,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108535,38 +119752,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(967)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2865), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(967), - [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1083)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3103), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1083), + [sym_block_comment] = STATE(1083), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108584,23 +119801,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108608,38 +119825,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(968)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2419), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(968), - [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1084)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3236), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1084), + [sym_block_comment] = STATE(1084), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108657,23 +119874,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108681,38 +119898,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(969)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2420), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(969), - [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1085)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2330), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(4043), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2330), + [sym_tuple_type] = STATE(2330), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2312), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2330), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2529), + [sym_line_comment] = STATE(1085), + [sym_block_comment] = STATE(1085), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3770), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108730,23 +119947,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(3772), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108754,38 +119971,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(970)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2653), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(970), - [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1086)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3284), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1086), + [sym_block_comment] = STATE(1086), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108803,23 +120020,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108827,38 +120044,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(971)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2991), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(971), - [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1087)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3208), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1087), + [sym_block_comment] = STATE(1087), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108876,23 +120093,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108900,38 +120117,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(972)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2877), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(972), - [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1088)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3740), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1088), + [sym_block_comment] = STATE(1088), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -108949,23 +120166,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -108973,38 +120190,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(973)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2523), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(973), - [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1089)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1797), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3971), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(3971), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1797), + [sym_tuple_type] = STATE(1797), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(1437), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1797), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3843), + [sym_scoped_type_identifier] = STATE(1239), + [sym_line_comment] = STATE(1089), + [sym_block_comment] = STATE(1089), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3756), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3758), + [anon_sym_i8] = ACTIONS(3758), + [anon_sym_u16] = ACTIONS(3758), + [anon_sym_i16] = ACTIONS(3758), + [anon_sym_u32] = ACTIONS(3758), + [anon_sym_i32] = ACTIONS(3758), + [anon_sym_u64] = ACTIONS(3758), + [anon_sym_i64] = ACTIONS(3758), + [anon_sym_u128] = ACTIONS(3758), + [anon_sym_i128] = ACTIONS(3758), + [anon_sym_isize] = ACTIONS(3758), + [anon_sym_usize] = ACTIONS(3758), + [anon_sym_f32] = ACTIONS(3758), + [anon_sym_f64] = ACTIONS(3758), + [anon_sym_bool] = ACTIONS(3758), + [anon_sym_str] = ACTIONS(3758), + [anon_sym_char] = ACTIONS(3758), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3760), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3764), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(3764), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3766), + }, + [STATE(1090)] = { + [sym_function_modifiers] = STATE(4077), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3774), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4043), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1869), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4043), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2503), + [sym_line_comment] = STATE(1090), + [sym_block_comment] = STATE(1090), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3588), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109022,23 +120312,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1625), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1627), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109046,38 +120336,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(974)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2656), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(974), - [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1091)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3346), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1091), + [sym_block_comment] = STATE(1091), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109095,23 +120385,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109119,38 +120409,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(975)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2422), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2456), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2256), - [sym_line_comment] = STATE(975), - [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3340), + [STATE(1092)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3078), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1092), + [sym_block_comment] = STATE(1092), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109168,23 +120458,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109192,38 +120482,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(976)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3119), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(976), - [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1093)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2810), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1093), + [sym_block_comment] = STATE(1093), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109241,23 +120531,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109265,38 +120555,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(977)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2058), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(977), - [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1094)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2567), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1094), + [sym_block_comment] = STATE(1094), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109314,23 +120604,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109338,38 +120628,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(978)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2499), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(978), - [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1095)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2730), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1095), + [sym_block_comment] = STATE(1095), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109387,23 +120677,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109411,38 +120701,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(979)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(979), - [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1096)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3098), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1096), + [sym_block_comment] = STATE(1096), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109460,23 +120750,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109484,38 +120774,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(980)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2062), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(980), - [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1097)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2740), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1097), + [sym_block_comment] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109533,23 +120823,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109557,111 +120847,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(981)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1507), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(981), - [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), - }, - [STATE(982)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2063), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(982), - [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1098)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2818), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1098), + [sym_block_comment] = STATE(1098), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109679,23 +120896,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109703,38 +120920,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(983)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2064), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3734), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2064), - [sym_tuple_type] = STATE(2064), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2019), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2064), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2009), - [sym_line_comment] = STATE(983), - [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3344), + [STATE(1099)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3172), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1099), + [sym_block_comment] = STATE(1099), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109752,23 +120969,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109776,38 +120993,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(984)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2066), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(984), - [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1100)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3271), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1100), + [sym_block_comment] = STATE(1100), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109825,23 +121042,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109849,38 +121066,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(985)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2067), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(985), - [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1101)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2768), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1101), + [sym_block_comment] = STATE(1101), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109898,23 +121115,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109922,38 +121139,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(986)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2068), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(986), - [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1102)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2791), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1102), + [sym_block_comment] = STATE(1102), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -109971,23 +121188,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -109995,38 +121212,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(987)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2284), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(987), - [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1103)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2330), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(4224), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2330), + [sym_tuple_type] = STATE(2330), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2312), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2330), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2291), + [sym_line_comment] = STATE(1103), + [sym_block_comment] = STATE(1103), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3776), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110044,23 +121261,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(3778), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110068,38 +121285,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(988)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2410), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(988), - [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1104)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2702), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1104), + [sym_block_comment] = STATE(1104), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110117,23 +121334,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110141,38 +121358,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(989)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2411), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(989), - [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1105)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2712), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1105), + [sym_block_comment] = STATE(1105), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110190,23 +121407,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110214,38 +121431,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(990)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2416), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(990), - [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1106)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2716), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1106), + [sym_block_comment] = STATE(1106), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110263,23 +121480,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110287,38 +121504,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(991)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2417), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(991), - [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1107)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(1999), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2009), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(4182), + [sym_array_type] = STATE(1999), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(1999), + [sym_tuple_type] = STATE(1999), + [sym_unit_type] = STATE(1999), + [sym_generic_type] = STATE(1929), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(1999), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(1999), + [sym_pointer_type] = STATE(1999), + [sym_never_type] = STATE(1999), + [sym_abstract_type] = STATE(1999), + [sym_dynamic_type] = STATE(1999), + [sym_macro_invocation] = STATE(1999), + [sym_scoped_identifier] = STATE(3856), + [sym_scoped_type_identifier] = STATE(1855), + [sym_line_comment] = STATE(1107), + [sym_block_comment] = STATE(1107), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3616), + [anon_sym_i8] = ACTIONS(3616), + [anon_sym_u16] = ACTIONS(3616), + [anon_sym_i16] = ACTIONS(3616), + [anon_sym_u32] = ACTIONS(3616), + [anon_sym_i32] = ACTIONS(3616), + [anon_sym_u64] = ACTIONS(3616), + [anon_sym_i64] = ACTIONS(3616), + [anon_sym_u128] = ACTIONS(3616), + [anon_sym_i128] = ACTIONS(3616), + [anon_sym_isize] = ACTIONS(3616), + [anon_sym_usize] = ACTIONS(3616), + [anon_sym_f32] = ACTIONS(3616), + [anon_sym_f64] = ACTIONS(3616), + [anon_sym_bool] = ACTIONS(3616), + [anon_sym_str] = ACTIONS(3616), + [anon_sym_char] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3628), + [anon_sym_impl] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3632), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3638), + }, + [STATE(1108)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(2012), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(4182), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(4182), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(2012), + [sym_tuple_type] = STATE(2012), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(1956), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(2012), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3862), + [sym_scoped_type_identifier] = STATE(1858), + [sym_line_comment] = STATE(1108), + [sym_block_comment] = STATE(1108), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3784), + [anon_sym_i8] = ACTIONS(3784), + [anon_sym_u16] = ACTIONS(3784), + [anon_sym_i16] = ACTIONS(3784), + [anon_sym_u32] = ACTIONS(3784), + [anon_sym_i32] = ACTIONS(3784), + [anon_sym_u64] = ACTIONS(3784), + [anon_sym_i64] = ACTIONS(3784), + [anon_sym_u128] = ACTIONS(3784), + [anon_sym_i128] = ACTIONS(3784), + [anon_sym_isize] = ACTIONS(3784), + [anon_sym_usize] = ACTIONS(3784), + [anon_sym_f32] = ACTIONS(3784), + [anon_sym_f64] = ACTIONS(3784), + [anon_sym_bool] = ACTIONS(3784), + [anon_sym_str] = ACTIONS(3784), + [anon_sym_char] = ACTIONS(3784), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3786), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3788), + [anon_sym_gen] = ACTIONS(3790), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(3790), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3792), + }, + [STATE(1109)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3207), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1109), + [sym_block_comment] = STATE(1109), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110336,23 +121699,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110360,38 +121723,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(992)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2670), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(992), - [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1110)] = { + [sym_function_modifiers] = STATE(4095), + [sym_removed_trait_bound] = STATE(2045), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(4182), + [sym_bracketed_type] = STATE(4155), + [sym_lifetime] = STATE(4182), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1883), + [sym_function_type] = STATE(2045), + [sym_tuple_type] = STATE(2045), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(1917), + [sym_generic_type_with_turbofish] = STATE(4147), + [sym_bounded_type] = STATE(2045), + [sym_use_bounds] = STATE(4182), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3862), + [sym_scoped_type_identifier] = STATE(1862), + [sym_line_comment] = STATE(1110), + [sym_block_comment] = STATE(1110), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(3614), + [anon_sym_u8] = ACTIONS(3784), + [anon_sym_i8] = ACTIONS(3784), + [anon_sym_u16] = ACTIONS(3784), + [anon_sym_i16] = ACTIONS(3784), + [anon_sym_u32] = ACTIONS(3784), + [anon_sym_i32] = ACTIONS(3784), + [anon_sym_u64] = ACTIONS(3784), + [anon_sym_i64] = ACTIONS(3784), + [anon_sym_u128] = ACTIONS(3784), + [anon_sym_i128] = ACTIONS(3784), + [anon_sym_isize] = ACTIONS(3784), + [anon_sym_usize] = ACTIONS(3784), + [anon_sym_f32] = ACTIONS(3784), + [anon_sym_f64] = ACTIONS(3784), + [anon_sym_bool] = ACTIONS(3784), + [anon_sym_str] = ACTIONS(3784), + [anon_sym_char] = ACTIONS(3784), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3786), + [anon_sym_fn] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3790), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(3790), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_crate] = ACTIONS(3636), + [sym_metavariable] = ACTIONS(3792), + }, + [STATE(1111)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3580), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1111), + [sym_block_comment] = STATE(1111), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110409,23 +121845,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110433,38 +121869,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(993)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(993), - [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1112)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2627), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1112), + [sym_block_comment] = STATE(1112), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110482,23 +121918,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110506,38 +121942,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(994)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2434), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(994), - [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1113)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2842), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1113), + [sym_block_comment] = STATE(1113), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110555,23 +121991,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110579,38 +122015,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(995)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2918), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(995), - [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1114)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3344), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1114), + [sym_block_comment] = STATE(1114), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110628,23 +122064,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110652,38 +122088,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(996)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2529), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(996), - [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1115)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2888), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1115), + [sym_block_comment] = STATE(1115), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110701,23 +122137,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110725,38 +122161,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(997)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2672), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(997), - [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1116)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3530), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1116), + [sym_block_comment] = STATE(1116), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110774,23 +122210,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110798,38 +122234,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(998)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2673), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(998), - [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1117)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3190), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1117), + [sym_block_comment] = STATE(1117), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110847,23 +122283,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110871,38 +122307,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(999)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2925), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(999), - [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1118)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3220), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1118), + [sym_block_comment] = STATE(1118), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110920,23 +122356,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -110944,38 +122380,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1000)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2675), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1000), - [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1119)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3093), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1119), + [sym_block_comment] = STATE(1119), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -110993,23 +122429,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111017,38 +122453,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1001)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2046), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1001), - [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1120)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2889), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1120), + [sym_block_comment] = STATE(1120), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111066,23 +122502,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111090,38 +122526,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1002)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2047), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1002), - [sym_block_comment] = STATE(1002), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1121)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1779), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(3971), + [sym_array_type] = STATE(1770), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(1770), + [sym_generic_type] = STATE(1534), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(1770), + [sym_pointer_type] = STATE(1770), + [sym_never_type] = STATE(1770), + [sym_abstract_type] = STATE(1770), + [sym_dynamic_type] = STATE(1770), + [sym_macro_invocation] = STATE(1770), + [sym_scoped_identifier] = STATE(3745), + [sym_scoped_type_identifier] = STATE(1238), + [sym_line_comment] = STATE(1121), + [sym_block_comment] = STATE(1121), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3652), + [anon_sym_i8] = ACTIONS(3652), + [anon_sym_u16] = ACTIONS(3652), + [anon_sym_i16] = ACTIONS(3652), + [anon_sym_u32] = ACTIONS(3652), + [anon_sym_i32] = ACTIONS(3652), + [anon_sym_u64] = ACTIONS(3652), + [anon_sym_i64] = ACTIONS(3652), + [anon_sym_u128] = ACTIONS(3652), + [anon_sym_i128] = ACTIONS(3652), + [anon_sym_isize] = ACTIONS(3652), + [anon_sym_usize] = ACTIONS(3652), + [anon_sym_f32] = ACTIONS(3652), + [anon_sym_f64] = ACTIONS(3652), + [anon_sym_bool] = ACTIONS(3652), + [anon_sym_str] = ACTIONS(3652), + [anon_sym_char] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3664), + [anon_sym_impl] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3668), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3674), + }, + [STATE(1122)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1780), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(3971), + [sym_array_type] = STATE(1770), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(1770), + [sym_generic_type] = STATE(1534), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(1770), + [sym_pointer_type] = STATE(1770), + [sym_never_type] = STATE(1770), + [sym_abstract_type] = STATE(1770), + [sym_dynamic_type] = STATE(1770), + [sym_macro_invocation] = STATE(1770), + [sym_scoped_identifier] = STATE(3745), + [sym_scoped_type_identifier] = STATE(1238), + [sym_line_comment] = STATE(1122), + [sym_block_comment] = STATE(1122), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3652), + [anon_sym_i8] = ACTIONS(3652), + [anon_sym_u16] = ACTIONS(3652), + [anon_sym_i16] = ACTIONS(3652), + [anon_sym_u32] = ACTIONS(3652), + [anon_sym_i32] = ACTIONS(3652), + [anon_sym_u64] = ACTIONS(3652), + [anon_sym_i64] = ACTIONS(3652), + [anon_sym_u128] = ACTIONS(3652), + [anon_sym_i128] = ACTIONS(3652), + [anon_sym_isize] = ACTIONS(3652), + [anon_sym_usize] = ACTIONS(3652), + [anon_sym_f32] = ACTIONS(3652), + [anon_sym_f64] = ACTIONS(3652), + [anon_sym_bool] = ACTIONS(3652), + [anon_sym_str] = ACTIONS(3652), + [anon_sym_char] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3664), + [anon_sym_impl] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3668), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3674), + }, + [STATE(1123)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3532), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1123), + [sym_block_comment] = STATE(1123), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111139,23 +122721,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111163,38 +122745,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1003)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1003), - [sym_block_comment] = STATE(1003), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1124)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1789), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(1789), + [sym_array_type] = STATE(1770), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(1770), + [sym_generic_type] = STATE(1534), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(1789), + [sym_reference_type] = STATE(1770), + [sym_pointer_type] = STATE(1770), + [sym_never_type] = STATE(1770), + [sym_abstract_type] = STATE(1770), + [sym_dynamic_type] = STATE(1770), + [sym_macro_invocation] = STATE(1770), + [sym_scoped_identifier] = STATE(3745), + [sym_scoped_type_identifier] = STATE(1238), + [sym_line_comment] = STATE(1124), + [sym_block_comment] = STATE(1124), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3652), + [anon_sym_i8] = ACTIONS(3652), + [anon_sym_u16] = ACTIONS(3652), + [anon_sym_i16] = ACTIONS(3652), + [anon_sym_u32] = ACTIONS(3652), + [anon_sym_i32] = ACTIONS(3652), + [anon_sym_u64] = ACTIONS(3652), + [anon_sym_i64] = ACTIONS(3652), + [anon_sym_u128] = ACTIONS(3652), + [anon_sym_i128] = ACTIONS(3652), + [anon_sym_isize] = ACTIONS(3652), + [anon_sym_usize] = ACTIONS(3652), + [anon_sym_f32] = ACTIONS(3652), + [anon_sym_f64] = ACTIONS(3652), + [anon_sym_bool] = ACTIONS(3652), + [anon_sym_str] = ACTIONS(3652), + [anon_sym_char] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3796), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3664), + [anon_sym_impl] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(3798), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3668), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3674), + }, + [STATE(1125)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2739), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2806), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2501), + [sym_line_comment] = STATE(1125), + [sym_block_comment] = STATE(1125), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3800), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111212,23 +122867,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3802), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111236,38 +122891,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1004)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2436), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1004), - [sym_block_comment] = STATE(1004), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1126)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2829), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1126), + [sym_block_comment] = STATE(1126), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111285,23 +122940,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111309,38 +122964,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1005)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2314), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1005), - [sym_block_comment] = STATE(1005), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1127)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3014), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1127), + [sym_block_comment] = STATE(1127), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111358,23 +123013,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111382,38 +123037,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1006)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2461), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1006), - [sym_block_comment] = STATE(1006), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1128)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2328), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1128), + [sym_block_comment] = STATE(1128), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111431,23 +123086,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111455,38 +123110,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1007)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2466), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1007), - [sym_block_comment] = STATE(1007), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1129)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2329), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1129), + [sym_block_comment] = STATE(1129), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111504,23 +123159,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111528,38 +123183,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1008)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2056), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3473), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2056), - [sym_tuple_type] = STATE(2056), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2026), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2056), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2229), - [sym_line_comment] = STATE(1008), - [sym_block_comment] = STATE(1008), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3346), + [STATE(1130)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3246), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1130), + [sym_block_comment] = STATE(1130), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111577,23 +123232,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(3348), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111601,38 +123256,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1009)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2945), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1009), - [sym_block_comment] = STATE(1009), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1131)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2706), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1131), + [sym_block_comment] = STATE(1131), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111650,23 +123305,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111674,38 +123329,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1010)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(1010), - [sym_block_comment] = STATE(1010), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), + [STATE(1132)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2708), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1132), + [sym_block_comment] = STATE(1132), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111723,23 +123378,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111747,38 +123402,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1011)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2683), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1011), - [sym_block_comment] = STATE(1011), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1133)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2968), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1133), + [sym_block_comment] = STATE(1133), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111796,23 +123451,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111820,38 +123475,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1012)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2471), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1012), - [sym_block_comment] = STATE(1012), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1134)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3256), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1134), + [sym_block_comment] = STATE(1134), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111869,23 +123524,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111893,38 +123548,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1013)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2473), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1013), - [sym_block_comment] = STATE(1013), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1135)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2869), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1135), + [sym_block_comment] = STATE(1135), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -111942,23 +123597,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -111966,38 +123621,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1014)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2427), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1014), - [sym_block_comment] = STATE(1014), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1136)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2974), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1136), + [sym_block_comment] = STATE(1136), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112015,23 +123670,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112039,38 +123694,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1015)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2376), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1015), - [sym_block_comment] = STATE(1015), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1137)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2714), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2811), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2554), + [sym_line_comment] = STATE(1137), + [sym_block_comment] = STATE(1137), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3804), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112088,23 +123743,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3806), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112112,38 +123767,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1016)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2295), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1016), - [sym_block_comment] = STATE(1016), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1138)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2337), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1138), + [sym_block_comment] = STATE(1138), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112161,23 +123816,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112185,38 +123840,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1017)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2687), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1017), - [sym_block_comment] = STATE(1017), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1139)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2322), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1139), + [sym_block_comment] = STATE(1139), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112234,23 +123889,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112258,38 +123913,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1018)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2688), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1018), - [sym_block_comment] = STATE(1018), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1140)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2324), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(4224), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2324), + [sym_tuple_type] = STATE(2324), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2311), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2324), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2289), + [sym_line_comment] = STATE(1140), + [sym_block_comment] = STATE(1140), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3808), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112307,23 +123962,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112331,38 +123986,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1019)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1019), - [sym_block_comment] = STATE(1019), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1141)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2346), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1141), + [sym_block_comment] = STATE(1141), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112380,23 +124035,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112404,38 +124059,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1020)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2973), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1020), - [sym_block_comment] = STATE(1020), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1142)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2347), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1142), + [sym_block_comment] = STATE(1142), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112453,23 +124108,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112477,38 +124132,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1021)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2307), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1021), - [sym_block_comment] = STATE(1021), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1143)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2320), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1143), + [sym_block_comment] = STATE(1143), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112526,23 +124181,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112550,38 +124205,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1022)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2399), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1022), - [sym_block_comment] = STATE(1022), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1144)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2581), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1144), + [sym_block_comment] = STATE(1144), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112599,23 +124254,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112623,38 +124278,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1023)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1023), - [sym_block_comment] = STATE(1023), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1145)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2718), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1145), + [sym_block_comment] = STATE(1145), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112672,23 +124327,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112696,38 +124351,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1024)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2264), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1024), - [sym_block_comment] = STATE(1024), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1146)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2722), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1146), + [sym_block_comment] = STATE(1146), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112745,23 +124400,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112769,38 +124424,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1025)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2596), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1025), - [sym_block_comment] = STATE(1025), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1147)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2723), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1147), + [sym_block_comment] = STATE(1147), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112818,23 +124473,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112842,38 +124497,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1026)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2965), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1026), - [sym_block_comment] = STATE(1026), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1148)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2726), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1148), + [sym_block_comment] = STATE(1148), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112891,23 +124546,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112915,38 +124570,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1027)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2696), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1027), - [sym_block_comment] = STATE(1027), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1149)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3090), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1149), + [sym_block_comment] = STATE(1149), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -112964,23 +124619,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -112988,38 +124643,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1028)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2271), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1028), - [sym_block_comment] = STATE(1028), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1150)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3309), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1150), + [sym_block_comment] = STATE(1150), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113037,23 +124692,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113061,38 +124716,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1029)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2277), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1029), - [sym_block_comment] = STATE(1029), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1151)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2895), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1151), + [sym_block_comment] = STATE(1151), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113110,23 +124765,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113134,38 +124789,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1030)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2285), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1030), - [sym_block_comment] = STATE(1030), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1152)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3099), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1152), + [sym_block_comment] = STATE(1152), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113183,23 +124838,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113207,111 +124862,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1031)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1506), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(1031), - [sym_block_comment] = STATE(1031), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), + [STATE(1153)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3101), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1153), + [sym_block_comment] = STATE(1153), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, - [STATE(1032)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2887), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1032), - [sym_block_comment] = STATE(1032), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1154)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3318), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1154), + [sym_block_comment] = STATE(1154), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113329,23 +124984,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113353,38 +125008,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1033)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3074), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1033), - [sym_block_comment] = STATE(1033), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1155)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3119), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1155), + [sym_block_comment] = STATE(1155), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113402,23 +125057,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113426,38 +125081,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1034)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2987), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1034), - [sym_block_comment] = STATE(1034), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1156)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2753), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2813), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2556), + [sym_line_comment] = STATE(1156), + [sym_block_comment] = STATE(1156), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3810), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113475,23 +125130,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3812), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113499,38 +125154,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1035)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3149), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1035), - [sym_block_comment] = STATE(1035), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1157)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2316), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1157), + [sym_block_comment] = STATE(1157), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113548,23 +125203,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113572,38 +125227,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1036)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2994), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1036), - [sym_block_comment] = STATE(1036), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1158)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2317), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1158), + [sym_block_comment] = STATE(1158), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113621,23 +125276,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113645,38 +125300,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1037)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2606), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1037), - [sym_block_comment] = STATE(1037), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1159)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2319), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1159), + [sym_block_comment] = STATE(1159), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113694,23 +125349,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113718,111 +125373,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1038)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1526), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(1038), - [sym_block_comment] = STATE(1038), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), + [STATE(1160)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2587), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1160), + [sym_block_comment] = STATE(1160), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, - [STATE(1039)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2845), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1039), - [sym_block_comment] = STATE(1039), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1161)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2779), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1161), + [sym_block_comment] = STATE(1161), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -113840,23 +125495,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -113864,184 +125519,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1040)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1421), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(1040), - [sym_block_comment] = STATE(1040), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), + [STATE(1162)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2780), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1162), + [sym_block_comment] = STATE(1162), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, - [STATE(1041)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1444), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(1041), - [sym_block_comment] = STATE(1041), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), + [STATE(1163)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3343), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1163), + [sym_block_comment] = STATE(1163), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, - [STATE(1042)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2460), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2395), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2232), - [sym_line_comment] = STATE(1042), - [sym_block_comment] = STATE(1042), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3350), + [STATE(1164)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3222), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1164), + [sym_block_comment] = STATE(1164), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -114059,23 +125714,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -114083,38 +125738,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1043)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1043), - [sym_block_comment] = STATE(1043), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1165)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2793), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1165), + [sym_block_comment] = STATE(1165), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -114132,23 +125787,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -114156,38 +125811,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1044)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2777), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1044), - [sym_block_comment] = STATE(1044), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1166)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2794), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1166), + [sym_block_comment] = STATE(1166), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -114205,23 +125860,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -114229,38 +125884,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1045)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2056), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3734), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2056), - [sym_tuple_type] = STATE(2056), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2026), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2056), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2010), - [sym_line_comment] = STATE(1045), - [sym_block_comment] = STATE(1045), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3354), + [STATE(1167)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2795), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1167), + [sym_block_comment] = STATE(1167), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -114278,23 +125933,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(3356), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -114302,111 +125957,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1046)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1463), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), - [sym_line_comment] = STATE(1046), - [sym_block_comment] = STATE(1046), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), + [STATE(1168)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2796), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1168), + [sym_block_comment] = STATE(1168), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, - [STATE(1047)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2662), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(1047), - [sym_block_comment] = STATE(1047), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), + [STATE(1169)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2590), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1169), + [sym_block_comment] = STATE(1169), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -114424,23 +126079,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -114448,38 +126103,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1048)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2064), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3473), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2064), - [sym_tuple_type] = STATE(2064), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2019), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2064), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2237), - [sym_line_comment] = STATE(1048), - [sym_block_comment] = STATE(1048), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3358), + [STATE(1170)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2972), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1170), + [sym_block_comment] = STATE(1170), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), [anon_sym_LPAREN] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), [anon_sym_u8] = ACTIONS(1609), [anon_sym_i8] = ACTIONS(1609), [anon_sym_u16] = ACTIONS(1609), @@ -114497,23 +126152,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1609), [anon_sym_str] = ACTIONS(1609), [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), + [anon_sym_impl] = ACTIONS(1147), [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1631), @@ -114521,619 +126176,2720 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1631), [sym_metavariable] = ACTIONS(1633), }, - [STATE(1049)] = { - [sym_attribute_item] = STATE(1050), - [sym_line_comment] = STATE(1049), - [sym_block_comment] = STATE(1049), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_RBRACK] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(759), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_u8] = ACTIONS(3360), - [anon_sym_i8] = ACTIONS(3360), - [anon_sym_u16] = ACTIONS(3360), - [anon_sym_i16] = ACTIONS(3360), - [anon_sym_u32] = ACTIONS(3360), - [anon_sym_i32] = ACTIONS(3360), - [anon_sym_u64] = ACTIONS(3360), - [anon_sym_i64] = ACTIONS(3360), - [anon_sym_u128] = ACTIONS(3360), - [anon_sym_i128] = ACTIONS(3360), - [anon_sym_isize] = ACTIONS(3360), - [anon_sym_usize] = ACTIONS(3360), - [anon_sym_f32] = ACTIONS(3360), - [anon_sym_f64] = ACTIONS(3360), - [anon_sym_bool] = ACTIONS(3360), - [anon_sym_str] = ACTIONS(3360), - [anon_sym_char] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(759), - [anon_sym_AMP] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_DOT_DOT] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_async] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_const] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_default] = ACTIONS(3360), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_gen] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_loop] = ACTIONS(3360), - [anon_sym_match] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_union] = ACTIONS(3360), - [anon_sym_unsafe] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_move] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [sym_integer_literal] = ACTIONS(759), - [aux_sym_string_literal_token1] = ACTIONS(759), - [sym_char_literal] = ACTIONS(759), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), + [STATE(1171)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2986), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1171), + [sym_block_comment] = STATE(1171), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3360), - [sym_super] = ACTIONS(3360), - [sym_crate] = ACTIONS(3360), - [sym_metavariable] = ACTIONS(759), - [sym__raw_string_literal_start] = ACTIONS(759), - [sym_float_literal] = ACTIONS(759), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, - [STATE(1050)] = { - [sym_line_comment] = STATE(1050), - [sym_block_comment] = STATE(1050), - [sym_identifier] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_RBRACK] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_u8] = ACTIONS(3362), - [anon_sym_i8] = ACTIONS(3362), - [anon_sym_u16] = ACTIONS(3362), - [anon_sym_i16] = ACTIONS(3362), - [anon_sym_u32] = ACTIONS(3362), - [anon_sym_i32] = ACTIONS(3362), - [anon_sym_u64] = ACTIONS(3362), - [anon_sym_i64] = ACTIONS(3362), - [anon_sym_u128] = ACTIONS(3362), - [anon_sym_i128] = ACTIONS(3362), - [anon_sym_isize] = ACTIONS(3362), - [anon_sym_usize] = ACTIONS(3362), - [anon_sym_f32] = ACTIONS(3362), - [anon_sym_f64] = ACTIONS(3362), - [anon_sym_bool] = ACTIONS(3362), - [anon_sym_str] = ACTIONS(3362), - [anon_sym_char] = ACTIONS(3362), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_PIPE] = ACTIONS(3364), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_DOT_DOT] = ACTIONS(3364), - [anon_sym_COMMA] = ACTIONS(3364), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_POUND] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3362), - [anon_sym_async] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_gen] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_loop] = ACTIONS(3362), - [anon_sym_match] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_unsafe] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3362), - [anon_sym_move] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [sym_integer_literal] = ACTIONS(3364), - [aux_sym_string_literal_token1] = ACTIONS(3364), - [sym_char_literal] = ACTIONS(3364), - [anon_sym_true] = ACTIONS(3362), - [anon_sym_false] = ACTIONS(3362), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3362), - [sym_super] = ACTIONS(3362), - [sym_crate] = ACTIONS(3362), - [sym_metavariable] = ACTIONS(3364), - [sym__raw_string_literal_start] = ACTIONS(3364), - [sym_float_literal] = ACTIONS(3364), + [STATE(1172)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2983), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1172), + [sym_block_comment] = STATE(1172), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, - [STATE(1051)] = { - [sym_line_comment] = STATE(1051), - [sym_block_comment] = STATE(1051), - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_RBRACK] = ACTIONS(2612), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_u8] = ACTIONS(2614), - [anon_sym_i8] = ACTIONS(2614), - [anon_sym_u16] = ACTIONS(2614), - [anon_sym_i16] = ACTIONS(2614), - [anon_sym_u32] = ACTIONS(2614), - [anon_sym_i32] = ACTIONS(2614), - [anon_sym_u64] = ACTIONS(2614), - [anon_sym_i64] = ACTIONS(2614), - [anon_sym_u128] = ACTIONS(2614), - [anon_sym_i128] = ACTIONS(2614), - [anon_sym_isize] = ACTIONS(2614), - [anon_sym_usize] = ACTIONS(2614), - [anon_sym_f32] = ACTIONS(2614), - [anon_sym_f64] = ACTIONS(2614), - [anon_sym_bool] = ACTIONS(2614), - [anon_sym_str] = ACTIONS(2614), - [anon_sym_char] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2612), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_LT] = ACTIONS(2612), - [anon_sym_DOT_DOT] = ACTIONS(2612), - [anon_sym_COMMA] = ACTIONS(2612), - [anon_sym_COLON_COLON] = ACTIONS(2612), - [anon_sym_POUND] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2614), - [anon_sym_async] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_gen] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_loop] = ACTIONS(2614), - [anon_sym_match] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_unsafe] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_yield] = ACTIONS(2614), - [anon_sym_move] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [sym_integer_literal] = ACTIONS(2612), - [aux_sym_string_literal_token1] = ACTIONS(2612), - [sym_char_literal] = ACTIONS(2612), - [anon_sym_true] = ACTIONS(2614), - [anon_sym_false] = ACTIONS(2614), + [STATE(1173)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3353), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1173), + [sym_block_comment] = STATE(1173), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2614), - [sym_super] = ACTIONS(2614), - [sym_crate] = ACTIONS(2614), - [sym_metavariable] = ACTIONS(2612), - [sym__raw_string_literal_start] = ACTIONS(2612), - [sym_float_literal] = ACTIONS(2612), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, - [STATE(1052)] = { - [sym_line_comment] = STATE(1052), - [sym_block_comment] = STATE(1052), - [sym_identifier] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_u8] = ACTIONS(1593), - [anon_sym_i8] = ACTIONS(1593), - [anon_sym_u16] = ACTIONS(1593), - [anon_sym_i16] = ACTIONS(1593), - [anon_sym_u32] = ACTIONS(1593), - [anon_sym_i32] = ACTIONS(1593), - [anon_sym_u64] = ACTIONS(1593), - [anon_sym_i64] = ACTIONS(1593), - [anon_sym_u128] = ACTIONS(1593), - [anon_sym_i128] = ACTIONS(1593), - [anon_sym_isize] = ACTIONS(1593), - [anon_sym_usize] = ACTIONS(1593), - [anon_sym_f32] = ACTIONS(1593), - [anon_sym_f64] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_str] = ACTIONS(1593), - [anon_sym_char] = ACTIONS(1593), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym__] = ACTIONS(1593), - [anon_sym_DOT_DOT] = ACTIONS(1595), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_DASH_GT] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1593), - [anon_sym_async] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_gen] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_loop] = ACTIONS(1593), - [anon_sym_match] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_unsafe] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_yield] = ACTIONS(1593), - [anon_sym_move] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1595), - [aux_sym_string_literal_token1] = ACTIONS(1595), - [sym_char_literal] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), + [STATE(1174)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2998), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1174), + [sym_block_comment] = STATE(1174), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1593), - [sym_super] = ACTIONS(1593), - [sym_crate] = ACTIONS(1593), - [sym_metavariable] = ACTIONS(1595), - [sym__raw_string_literal_start] = ACTIONS(1595), - [sym_float_literal] = ACTIONS(1595), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, - [STATE(1053)] = { - [sym_line_comment] = STATE(1053), - [sym_block_comment] = STATE(1053), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LPAREN] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_u8] = ACTIONS(3366), - [anon_sym_i8] = ACTIONS(3366), - [anon_sym_u16] = ACTIONS(3366), - [anon_sym_i16] = ACTIONS(3366), - [anon_sym_u32] = ACTIONS(3366), - [anon_sym_i32] = ACTIONS(3366), - [anon_sym_u64] = ACTIONS(3366), - [anon_sym_i64] = ACTIONS(3366), - [anon_sym_u128] = ACTIONS(3366), - [anon_sym_i128] = ACTIONS(3366), - [anon_sym_isize] = ACTIONS(3366), - [anon_sym_usize] = ACTIONS(3366), - [anon_sym_f32] = ACTIONS(3366), - [anon_sym_f64] = ACTIONS(3366), - [anon_sym_bool] = ACTIONS(3366), - [anon_sym_str] = ACTIONS(3366), - [anon_sym_char] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_PIPE] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3368), - [anon_sym__] = ACTIONS(3366), - [anon_sym_DOT_DOT] = ACTIONS(3368), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_DASH_GT] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3366), - [anon_sym_async] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_gen] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_loop] = ACTIONS(3366), - [anon_sym_match] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [anon_sym_unsafe] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_yield] = ACTIONS(3366), - [anon_sym_move] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [sym_integer_literal] = ACTIONS(3368), - [aux_sym_string_literal_token1] = ACTIONS(3368), - [sym_char_literal] = ACTIONS(3368), - [anon_sym_true] = ACTIONS(3366), - [anon_sym_false] = ACTIONS(3366), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3366), - [sym_super] = ACTIONS(3366), - [sym_crate] = ACTIONS(3366), - [sym_metavariable] = ACTIONS(3368), - [sym__raw_string_literal_start] = ACTIONS(3368), - [sym_float_literal] = ACTIONS(3368), + [STATE(1175)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2343), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1175), + [sym_block_comment] = STATE(1175), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, -}; - -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(1054), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1087), 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(3370), 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(1055), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2612), 18, - 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_DOT_DOT_EQ, - anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2614), 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__, - 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_use, - 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, - [148] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1056), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3374), 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(3372), 36, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_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_use, - anon_sym_where, - anon_sym_extern, - anon_sym_else, - anon_sym_dyn, - sym_mutable_specifier, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [219] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(2184), 1, - anon_sym_COLON_COLON, - ACTIONS(3376), 1, - sym_identifier, - ACTIONS(3386), 1, - sym_metavariable, - STATE(2136), 1, - sym_scoped_identifier, - STATE(2208), 1, - sym__literal_pattern, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, - STATE(1057), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1257), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3380), 3, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - ACTIONS(3384), 3, - sym_self, - sym_super, - sym_crate, - STATE(2096), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3378), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - ACTIONS(3382), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, + [STATE(1176)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2816), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1176), + [sym_block_comment] = STATE(1176), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1177)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2817), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1177), + [sym_block_comment] = STATE(1177), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1178)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2593), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1178), + [sym_block_comment] = STATE(1178), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1179)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3370), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1179), + [sym_block_comment] = STATE(1179), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1180)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3052), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1180), + [sym_block_comment] = STATE(1180), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1181)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2594), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1181), + [sym_block_comment] = STATE(1181), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1182)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2695), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1182), + [sym_block_comment] = STATE(1182), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1183)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2696), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1183), + [sym_block_comment] = STATE(1183), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1184)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2697), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1184), + [sym_block_comment] = STATE(1184), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1185)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2698), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1185), + [sym_block_comment] = STATE(1185), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1186)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3160), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1186), + [sym_block_comment] = STATE(1186), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1187)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3183), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1187), + [sym_block_comment] = STATE(1187), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1188)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2597), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1188), + [sym_block_comment] = STATE(1188), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1189)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2703), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1189), + [sym_block_comment] = STATE(1189), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1190)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2704), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1190), + [sym_block_comment] = STATE(1190), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1191)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3382), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1191), + [sym_block_comment] = STATE(1191), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1192)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2970), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1192), + [sym_block_comment] = STATE(1192), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1193)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2598), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1193), + [sym_block_comment] = STATE(1193), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1194)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2599), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1194), + [sym_block_comment] = STATE(1194), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1195)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1781), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(3971), + [sym_array_type] = STATE(1770), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(1770), + [sym_generic_type] = STATE(1534), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(1770), + [sym_pointer_type] = STATE(1770), + [sym_never_type] = STATE(1770), + [sym_abstract_type] = STATE(1770), + [sym_dynamic_type] = STATE(1770), + [sym_macro_invocation] = STATE(1770), + [sym_scoped_identifier] = STATE(3745), + [sym_scoped_type_identifier] = STATE(1238), + [sym_line_comment] = STATE(1195), + [sym_block_comment] = STATE(1195), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3652), + [anon_sym_i8] = ACTIONS(3652), + [anon_sym_u16] = ACTIONS(3652), + [anon_sym_i16] = ACTIONS(3652), + [anon_sym_u32] = ACTIONS(3652), + [anon_sym_i32] = ACTIONS(3652), + [anon_sym_u64] = ACTIONS(3652), + [anon_sym_i64] = ACTIONS(3652), + [anon_sym_u128] = ACTIONS(3652), + [anon_sym_i128] = ACTIONS(3652), + [anon_sym_isize] = ACTIONS(3652), + [anon_sym_usize] = ACTIONS(3652), + [anon_sym_f32] = ACTIONS(3652), + [anon_sym_f64] = ACTIONS(3652), + [anon_sym_bool] = ACTIONS(3652), + [anon_sym_str] = ACTIONS(3652), + [anon_sym_char] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3664), + [anon_sym_impl] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3668), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3674), + }, + [STATE(1196)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3399), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1196), + [sym_block_comment] = STATE(1196), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1197)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1793), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(3971), + [sym_array_type] = STATE(1770), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(1770), + [sym_generic_type] = STATE(1534), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(1770), + [sym_pointer_type] = STATE(1770), + [sym_never_type] = STATE(1770), + [sym_abstract_type] = STATE(1770), + [sym_dynamic_type] = STATE(1770), + [sym_macro_invocation] = STATE(1770), + [sym_scoped_identifier] = STATE(3745), + [sym_scoped_type_identifier] = STATE(1238), + [sym_line_comment] = STATE(1197), + [sym_block_comment] = STATE(1197), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3652), + [anon_sym_i8] = ACTIONS(3652), + [anon_sym_u16] = ACTIONS(3652), + [anon_sym_i16] = ACTIONS(3652), + [anon_sym_u32] = ACTIONS(3652), + [anon_sym_i32] = ACTIONS(3652), + [anon_sym_u64] = ACTIONS(3652), + [anon_sym_i64] = ACTIONS(3652), + [anon_sym_u128] = ACTIONS(3652), + [anon_sym_i128] = ACTIONS(3652), + [anon_sym_isize] = ACTIONS(3652), + [anon_sym_usize] = ACTIONS(3652), + [anon_sym_f32] = ACTIONS(3652), + [anon_sym_f64] = ACTIONS(3652), + [anon_sym_bool] = ACTIONS(3652), + [anon_sym_str] = ACTIONS(3652), + [anon_sym_char] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3664), + [anon_sym_impl] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3668), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3674), + }, + [STATE(1198)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1681), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(3971), + [sym_array_type] = STATE(1770), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(1770), + [sym_generic_type] = STATE(1534), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(1770), + [sym_pointer_type] = STATE(1770), + [sym_never_type] = STATE(1770), + [sym_abstract_type] = STATE(1770), + [sym_dynamic_type] = STATE(1770), + [sym_macro_invocation] = STATE(1770), + [sym_scoped_identifier] = STATE(3745), + [sym_scoped_type_identifier] = STATE(1238), + [sym_line_comment] = STATE(1198), + [sym_block_comment] = STATE(1198), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3652), + [anon_sym_i8] = ACTIONS(3652), + [anon_sym_u16] = ACTIONS(3652), + [anon_sym_i16] = ACTIONS(3652), + [anon_sym_u32] = ACTIONS(3652), + [anon_sym_i32] = ACTIONS(3652), + [anon_sym_u64] = ACTIONS(3652), + [anon_sym_i64] = ACTIONS(3652), + [anon_sym_u128] = ACTIONS(3652), + [anon_sym_i128] = ACTIONS(3652), + [anon_sym_isize] = ACTIONS(3652), + [anon_sym_usize] = ACTIONS(3652), + [anon_sym_f32] = ACTIONS(3652), + [anon_sym_f64] = ACTIONS(3652), + [anon_sym_bool] = ACTIONS(3652), + [anon_sym_str] = ACTIONS(3652), + [anon_sym_char] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3664), + [anon_sym_impl] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3668), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3674), + }, + [STATE(1199)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1705), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(3971), + [sym_array_type] = STATE(1770), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(1770), + [sym_generic_type] = STATE(1534), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(1770), + [sym_pointer_type] = STATE(1770), + [sym_never_type] = STATE(1770), + [sym_abstract_type] = STATE(1770), + [sym_dynamic_type] = STATE(1770), + [sym_macro_invocation] = STATE(1770), + [sym_scoped_identifier] = STATE(3745), + [sym_scoped_type_identifier] = STATE(1238), + [sym_line_comment] = STATE(1199), + [sym_block_comment] = STATE(1199), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3652), + [anon_sym_i8] = ACTIONS(3652), + [anon_sym_u16] = ACTIONS(3652), + [anon_sym_i16] = ACTIONS(3652), + [anon_sym_u32] = ACTIONS(3652), + [anon_sym_i32] = ACTIONS(3652), + [anon_sym_u64] = ACTIONS(3652), + [anon_sym_i64] = ACTIONS(3652), + [anon_sym_u128] = ACTIONS(3652), + [anon_sym_i128] = ACTIONS(3652), + [anon_sym_isize] = ACTIONS(3652), + [anon_sym_usize] = ACTIONS(3652), + [anon_sym_f32] = ACTIONS(3652), + [anon_sym_f64] = ACTIONS(3652), + [anon_sym_bool] = ACTIONS(3652), + [anon_sym_str] = ACTIONS(3652), + [anon_sym_char] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3664), + [anon_sym_impl] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3668), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3674), + }, + [STATE(1200)] = { + [sym_function_modifiers] = STATE(4222), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(1728), + [sym_bracketed_type] = STATE(4139), + [sym_lifetime] = STATE(3971), + [sym_array_type] = STATE(1770), + [sym_for_lifetimes] = STATE(1900), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(1770), + [sym_generic_type] = STATE(1534), + [sym_generic_type_with_turbofish] = STATE(4299), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(3971), + [sym_reference_type] = STATE(1770), + [sym_pointer_type] = STATE(1770), + [sym_never_type] = STATE(1770), + [sym_abstract_type] = STATE(1770), + [sym_dynamic_type] = STATE(1770), + [sym_macro_invocation] = STATE(1770), + [sym_scoped_identifier] = STATE(3745), + [sym_scoped_type_identifier] = STATE(1238), + [sym_line_comment] = STATE(1200), + [sym_block_comment] = STATE(1200), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_QMARK] = ACTIONS(3650), + [anon_sym_u8] = ACTIONS(3652), + [anon_sym_i8] = ACTIONS(3652), + [anon_sym_u16] = ACTIONS(3652), + [anon_sym_i16] = ACTIONS(3652), + [anon_sym_u32] = ACTIONS(3652), + [anon_sym_i32] = ACTIONS(3652), + [anon_sym_u64] = ACTIONS(3652), + [anon_sym_i64] = ACTIONS(3652), + [anon_sym_u128] = ACTIONS(3652), + [anon_sym_i128] = ACTIONS(3652), + [anon_sym_isize] = ACTIONS(3652), + [anon_sym_usize] = ACTIONS(3652), + [anon_sym_f32] = ACTIONS(3652), + [anon_sym_f64] = ACTIONS(3652), + [anon_sym_bool] = ACTIONS(3652), + [anon_sym_str] = ACTIONS(3652), + [anon_sym_char] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(3664), + [anon_sym_impl] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(3668), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_crate] = ACTIONS(3672), + [sym_metavariable] = ACTIONS(3674), + }, + [STATE(1201)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(3124), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1201), + [sym_block_comment] = STATE(1201), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1202)] = { + [sym_function_modifiers] = STATE(4296), + [sym_removed_trait_bound] = STATE(2349), + [sym_extern_modifier] = STATE(2804), + [sym__type] = STATE(2766), + [sym_bracketed_type] = STATE(4197), + [sym_lifetime] = STATE(4224), + [sym_array_type] = STATE(2349), + [sym_for_lifetimes] = STATE(1887), + [sym_function_type] = STATE(2349), + [sym_tuple_type] = STATE(2349), + [sym_unit_type] = STATE(2349), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(4081), + [sym_bounded_type] = STATE(2349), + [sym_use_bounds] = STATE(4224), + [sym_reference_type] = STATE(2349), + [sym_pointer_type] = STATE(2349), + [sym_never_type] = STATE(2349), + [sym_abstract_type] = STATE(2349), + [sym_dynamic_type] = STATE(2349), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(3913), + [sym_scoped_type_identifier] = STATE(2290), + [sym_line_comment] = STATE(1202), + [sym_block_comment] = STATE(1202), + [aux_sym_function_modifiers_repeat1] = STATE(2605), + [sym_identifier] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1135), + [anon_sym_use] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_dyn] = ACTIONS(1155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1203)] = { + [sym_attribute_item] = STATE(1204), + [sym_line_comment] = STATE(1203), + [sym_block_comment] = STATE(1203), + [aux_sym_mod_item_repeat1] = STATE(1203), + [sym_identifier] = ACTIONS(3814), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_RBRACK] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_u8] = ACTIONS(3814), + [anon_sym_i8] = ACTIONS(3814), + [anon_sym_u16] = ACTIONS(3814), + [anon_sym_i16] = ACTIONS(3814), + [anon_sym_u32] = ACTIONS(3814), + [anon_sym_i32] = ACTIONS(3814), + [anon_sym_u64] = ACTIONS(3814), + [anon_sym_i64] = ACTIONS(3814), + [anon_sym_u128] = ACTIONS(3814), + [anon_sym_i128] = ACTIONS(3814), + [anon_sym_isize] = ACTIONS(3814), + [anon_sym_usize] = ACTIONS(3814), + [anon_sym_f32] = ACTIONS(3814), + [anon_sym_f64] = ACTIONS(3814), + [anon_sym_bool] = ACTIONS(3814), + [anon_sym_str] = ACTIONS(3814), + [anon_sym_char] = ACTIONS(3814), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_DOT_DOT] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_COLON_COLON] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(785), + [anon_sym_SQUOTE] = ACTIONS(3814), + [anon_sym_async] = ACTIONS(3814), + [anon_sym_break] = ACTIONS(3814), + [anon_sym_const] = ACTIONS(3814), + [anon_sym_continue] = ACTIONS(3814), + [anon_sym_default] = ACTIONS(3814), + [anon_sym_for] = ACTIONS(3814), + [anon_sym_gen] = ACTIONS(3814), + [anon_sym_if] = ACTIONS(3814), + [anon_sym_loop] = ACTIONS(3814), + [anon_sym_match] = ACTIONS(3814), + [anon_sym_return] = ACTIONS(3814), + [anon_sym_static] = ACTIONS(3814), + [anon_sym_union] = ACTIONS(3814), + [anon_sym_unsafe] = ACTIONS(3814), + [anon_sym_while] = ACTIONS(3814), + [anon_sym_yield] = ACTIONS(3814), + [anon_sym_move] = ACTIONS(3814), + [anon_sym_try] = ACTIONS(3814), + [sym_integer_literal] = ACTIONS(759), + [aux_sym_string_literal_token1] = ACTIONS(759), + [sym_char_literal] = ACTIONS(759), + [anon_sym_true] = ACTIONS(3814), + [anon_sym_false] = ACTIONS(3814), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3814), + [sym_super] = ACTIONS(3814), + [sym_crate] = ACTIONS(3814), + [sym_metavariable] = ACTIONS(759), + [sym__raw_string_literal_start] = ACTIONS(759), + [sym_float_literal] = ACTIONS(759), + }, + [STATE(1204)] = { + [sym_line_comment] = STATE(1204), + [sym_block_comment] = STATE(1204), + [sym_identifier] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(3818), + [anon_sym_LBRACK] = ACTIONS(3818), + [anon_sym_RBRACK] = ACTIONS(3818), + [anon_sym_LBRACE] = ACTIONS(3818), + [anon_sym_STAR] = ACTIONS(3818), + [anon_sym_u8] = ACTIONS(3816), + [anon_sym_i8] = ACTIONS(3816), + [anon_sym_u16] = ACTIONS(3816), + [anon_sym_i16] = ACTIONS(3816), + [anon_sym_u32] = ACTIONS(3816), + [anon_sym_i32] = ACTIONS(3816), + [anon_sym_u64] = ACTIONS(3816), + [anon_sym_i64] = ACTIONS(3816), + [anon_sym_u128] = ACTIONS(3816), + [anon_sym_i128] = ACTIONS(3816), + [anon_sym_isize] = ACTIONS(3816), + [anon_sym_usize] = ACTIONS(3816), + [anon_sym_f32] = ACTIONS(3816), + [anon_sym_f64] = ACTIONS(3816), + [anon_sym_bool] = ACTIONS(3816), + [anon_sym_str] = ACTIONS(3816), + [anon_sym_char] = ACTIONS(3816), + [anon_sym_DASH] = ACTIONS(3818), + [anon_sym_BANG] = ACTIONS(3818), + [anon_sym_AMP] = ACTIONS(3818), + [anon_sym_PIPE] = ACTIONS(3818), + [anon_sym_LT] = ACTIONS(3818), + [anon_sym_DOT_DOT] = ACTIONS(3818), + [anon_sym_COMMA] = ACTIONS(3818), + [anon_sym_COLON_COLON] = ACTIONS(3818), + [anon_sym_POUND] = ACTIONS(3818), + [anon_sym_SQUOTE] = ACTIONS(3816), + [anon_sym_async] = ACTIONS(3816), + [anon_sym_break] = ACTIONS(3816), + [anon_sym_const] = ACTIONS(3816), + [anon_sym_continue] = ACTIONS(3816), + [anon_sym_default] = ACTIONS(3816), + [anon_sym_for] = ACTIONS(3816), + [anon_sym_gen] = ACTIONS(3816), + [anon_sym_if] = ACTIONS(3816), + [anon_sym_loop] = ACTIONS(3816), + [anon_sym_match] = ACTIONS(3816), + [anon_sym_return] = ACTIONS(3816), + [anon_sym_static] = ACTIONS(3816), + [anon_sym_union] = ACTIONS(3816), + [anon_sym_unsafe] = ACTIONS(3816), + [anon_sym_while] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3816), + [anon_sym_move] = ACTIONS(3816), + [anon_sym_try] = ACTIONS(3816), + [sym_integer_literal] = ACTIONS(3818), + [aux_sym_string_literal_token1] = ACTIONS(3818), + [sym_char_literal] = ACTIONS(3818), + [anon_sym_true] = ACTIONS(3816), + [anon_sym_false] = ACTIONS(3816), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3816), + [sym_super] = ACTIONS(3816), + [sym_crate] = ACTIONS(3816), + [sym_metavariable] = ACTIONS(3818), + [sym__raw_string_literal_start] = ACTIONS(3818), + [sym_float_literal] = ACTIONS(3818), + }, + [STATE(1205)] = { + [sym_line_comment] = STATE(1205), + [sym_block_comment] = STATE(1205), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3822), + [anon_sym_RBRACK] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(3822), + [anon_sym_u8] = ACTIONS(3820), + [anon_sym_i8] = ACTIONS(3820), + [anon_sym_u16] = ACTIONS(3820), + [anon_sym_i16] = ACTIONS(3820), + [anon_sym_u32] = ACTIONS(3820), + [anon_sym_i32] = ACTIONS(3820), + [anon_sym_u64] = ACTIONS(3820), + [anon_sym_i64] = ACTIONS(3820), + [anon_sym_u128] = ACTIONS(3820), + [anon_sym_i128] = ACTIONS(3820), + [anon_sym_isize] = ACTIONS(3820), + [anon_sym_usize] = ACTIONS(3820), + [anon_sym_f32] = ACTIONS(3820), + [anon_sym_f64] = ACTIONS(3820), + [anon_sym_bool] = ACTIONS(3820), + [anon_sym_str] = ACTIONS(3820), + [anon_sym_char] = ACTIONS(3820), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_BANG] = ACTIONS(3822), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_PIPE] = ACTIONS(3822), + [anon_sym_LT] = ACTIONS(3822), + [anon_sym_DOT_DOT] = ACTIONS(3822), + [anon_sym_COMMA] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3822), + [anon_sym_POUND] = ACTIONS(3822), + [anon_sym_SQUOTE] = ACTIONS(3820), + [anon_sym_async] = ACTIONS(3820), + [anon_sym_break] = ACTIONS(3820), + [anon_sym_const] = ACTIONS(3820), + [anon_sym_continue] = ACTIONS(3820), + [anon_sym_default] = ACTIONS(3820), + [anon_sym_for] = ACTIONS(3820), + [anon_sym_gen] = ACTIONS(3820), + [anon_sym_if] = ACTIONS(3820), + [anon_sym_loop] = ACTIONS(3820), + [anon_sym_match] = ACTIONS(3820), + [anon_sym_return] = ACTIONS(3820), + [anon_sym_static] = ACTIONS(3820), + [anon_sym_union] = ACTIONS(3820), + [anon_sym_unsafe] = ACTIONS(3820), + [anon_sym_while] = ACTIONS(3820), + [anon_sym_yield] = ACTIONS(3820), + [anon_sym_move] = ACTIONS(3820), + [anon_sym_try] = ACTIONS(3820), + [sym_integer_literal] = ACTIONS(3822), + [aux_sym_string_literal_token1] = ACTIONS(3822), + [sym_char_literal] = ACTIONS(3822), + [anon_sym_true] = ACTIONS(3820), + [anon_sym_false] = ACTIONS(3820), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3820), + [sym_super] = ACTIONS(3820), + [sym_crate] = ACTIONS(3820), + [sym_metavariable] = ACTIONS(3822), + [sym__raw_string_literal_start] = ACTIONS(3822), + [sym_float_literal] = ACTIONS(3822), + }, + [STATE(1206)] = { + [sym_line_comment] = STATE(1206), + [sym_block_comment] = STATE(1206), + [sym_identifier] = ACTIONS(3824), + [anon_sym_LPAREN] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(3826), + [anon_sym_LBRACE] = ACTIONS(3826), + [anon_sym_STAR] = ACTIONS(3826), + [anon_sym_u8] = ACTIONS(3824), + [anon_sym_i8] = ACTIONS(3824), + [anon_sym_u16] = ACTIONS(3824), + [anon_sym_i16] = ACTIONS(3824), + [anon_sym_u32] = ACTIONS(3824), + [anon_sym_i32] = ACTIONS(3824), + [anon_sym_u64] = ACTIONS(3824), + [anon_sym_i64] = ACTIONS(3824), + [anon_sym_u128] = ACTIONS(3824), + [anon_sym_i128] = ACTIONS(3824), + [anon_sym_isize] = ACTIONS(3824), + [anon_sym_usize] = ACTIONS(3824), + [anon_sym_f32] = ACTIONS(3824), + [anon_sym_f64] = ACTIONS(3824), + [anon_sym_bool] = ACTIONS(3824), + [anon_sym_str] = ACTIONS(3824), + [anon_sym_char] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3824), + [anon_sym_BANG] = ACTIONS(3826), + [anon_sym_AMP] = ACTIONS(3826), + [anon_sym_PIPE] = ACTIONS(3826), + [anon_sym_LT] = ACTIONS(3826), + [anon_sym__] = ACTIONS(3824), + [anon_sym_DOT_DOT] = ACTIONS(3826), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_DASH_GT] = ACTIONS(3826), + [anon_sym_SQUOTE] = ACTIONS(3824), + [anon_sym_async] = ACTIONS(3824), + [anon_sym_break] = ACTIONS(3824), + [anon_sym_const] = ACTIONS(3824), + [anon_sym_continue] = ACTIONS(3824), + [anon_sym_default] = ACTIONS(3824), + [anon_sym_for] = ACTIONS(3824), + [anon_sym_gen] = ACTIONS(3824), + [anon_sym_if] = ACTIONS(3824), + [anon_sym_loop] = ACTIONS(3824), + [anon_sym_match] = ACTIONS(3824), + [anon_sym_return] = ACTIONS(3824), + [anon_sym_static] = ACTIONS(3824), + [anon_sym_union] = ACTIONS(3824), + [anon_sym_unsafe] = ACTIONS(3824), + [anon_sym_while] = ACTIONS(3824), + [anon_sym_yield] = ACTIONS(3824), + [anon_sym_move] = ACTIONS(3824), + [anon_sym_try] = ACTIONS(3824), + [sym_integer_literal] = ACTIONS(3826), + [aux_sym_string_literal_token1] = ACTIONS(3826), + [sym_char_literal] = ACTIONS(3826), + [anon_sym_true] = ACTIONS(3824), + [anon_sym_false] = ACTIONS(3824), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3824), + [sym_super] = ACTIONS(3824), + [sym_crate] = ACTIONS(3824), + [sym_metavariable] = ACTIONS(3826), + [sym__raw_string_literal_start] = ACTIONS(3826), + [sym_float_literal] = ACTIONS(3826), + }, + [STATE(1207)] = { + [sym_line_comment] = STATE(1207), + [sym_block_comment] = STATE(1207), + [sym_identifier] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_u8] = ACTIONS(1589), + [anon_sym_i8] = ACTIONS(1589), + [anon_sym_u16] = ACTIONS(1589), + [anon_sym_i16] = ACTIONS(1589), + [anon_sym_u32] = ACTIONS(1589), + [anon_sym_i32] = ACTIONS(1589), + [anon_sym_u64] = ACTIONS(1589), + [anon_sym_i64] = ACTIONS(1589), + [anon_sym_u128] = ACTIONS(1589), + [anon_sym_i128] = ACTIONS(1589), + [anon_sym_isize] = ACTIONS(1589), + [anon_sym_usize] = ACTIONS(1589), + [anon_sym_f32] = ACTIONS(1589), + [anon_sym_f64] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_str] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(1591), + [anon_sym__] = ACTIONS(1589), + [anon_sym_DOT_DOT] = ACTIONS(1591), + [anon_sym_COLON_COLON] = ACTIONS(1591), + [anon_sym_DASH_GT] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1589), + [anon_sym_async] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_gen] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_union] = ACTIONS(1589), + [anon_sym_unsafe] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_yield] = ACTIONS(1589), + [anon_sym_move] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [aux_sym_string_literal_token1] = ACTIONS(1591), + [sym_char_literal] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1589), + [sym_super] = ACTIONS(1589), + [sym_crate] = ACTIONS(1589), + [sym_metavariable] = ACTIONS(1591), + [sym__raw_string_literal_start] = ACTIONS(1591), + [sym_float_literal] = ACTIONS(1591), + }, +}; + +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(1208), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1239), 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(3828), 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, @@ -115144,60 +128900,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, anon_sym_default, + anon_sym_for, anon_sym_gen, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_static, anon_sym_union, - [319] = 21, + 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(1209), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3822), 18, + 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_DOT_DOT_EQ, + anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3820), 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__, + 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_use, + 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, + [148] = 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(3832), 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(3830), 36, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_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_use, + anon_sym_where, + anon_sym_extern, + anon_sym_else, + anon_sym_dyn, + sym_mutable_specifier, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [219] = 21, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(1111), 1, anon_sym_DASH, - ACTIONS(1259), 1, + ACTIONS(1161), 1, aux_sym_string_literal_token1, - ACTIONS(1269), 1, + ACTIONS(1171), 1, sym__raw_string_literal_start, - ACTIONS(2184), 1, + ACTIONS(1884), 1, anon_sym_COLON_COLON, - ACTIONS(3388), 1, + ACTIONS(3834), 1, sym_identifier, - ACTIONS(3398), 1, + ACTIONS(3844), 1, sym_metavariable, - STATE(2116), 1, + STATE(2406), 1, sym_scoped_identifier, - STATE(2163), 1, + STATE(2473), 1, sym__literal_pattern, - STATE(3695), 1, + STATE(4179), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(4258), 1, sym_generic_type_with_turbofish, - ACTIONS(1261), 2, + ACTIONS(1163), 2, anon_sym_true, anon_sym_false, - STATE(1058), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 3, + ACTIONS(1159), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3392), 3, + ACTIONS(3838), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3396), 3, + ACTIONS(3842), 3, sym_self, sym_super, sym_crate, - STATE(2096), 4, + STATE(2377), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3390), 7, + ACTIONS(3836), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -115205,7 +129117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3394), 20, + ACTIONS(3840), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115226,57 +129138,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [419] = 21, + [319] = 21, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(1111), 1, anon_sym_DASH, - ACTIONS(1259), 1, + ACTIONS(1161), 1, aux_sym_string_literal_token1, - ACTIONS(1269), 1, + ACTIONS(1171), 1, sym__raw_string_literal_start, - ACTIONS(2184), 1, + ACTIONS(1884), 1, anon_sym_COLON_COLON, - ACTIONS(3400), 1, + ACTIONS(3846), 1, sym_identifier, - ACTIONS(3410), 1, + ACTIONS(3856), 1, sym_metavariable, - STATE(2109), 1, + STATE(2442), 1, sym_scoped_identifier, - STATE(2177), 1, + STATE(2470), 1, sym__literal_pattern, - STATE(3695), 1, + STATE(4179), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(4258), 1, sym_generic_type_with_turbofish, - ACTIONS(1261), 2, + ACTIONS(1163), 2, anon_sym_true, anon_sym_false, - STATE(1059), 2, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 3, + ACTIONS(1159), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3404), 3, + ACTIONS(3850), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3408), 3, + ACTIONS(3854), 3, sym_self, sym_super, sym_crate, - STATE(2096), 4, + STATE(2377), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3402), 7, + ACTIONS(3848), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -115284,7 +129196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3406), 20, + ACTIONS(3852), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115305,50 +129217,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [519] = 12, + [419] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(3418), 1, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1161), 1, + aux_sym_string_literal_token1, + ACTIONS(1171), 1, + sym__raw_string_literal_start, + ACTIONS(1884), 1, anon_sym_COLON_COLON, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3422), 1, - anon_sym_move, - STATE(1454), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(1060), 2, + ACTIONS(3858), 1, + sym_identifier, + ACTIONS(3868), 1, + sym_metavariable, + STATE(2429), 1, + sym_scoped_identifier, + STATE(2480), 1, + sym__literal_pattern, + STATE(4179), 1, + sym_bracketed_type, + STATE(4258), 1, + sym_generic_type_with_turbofish, + ACTIONS(1163), 2, + anon_sym_true, + anon_sym_false, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3412), 28, + ACTIONS(1159), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3862), 3, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + ACTIONS(3866), 3, + sym_self, + sym_super, + sym_crate, + STATE(2377), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3860), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + ACTIONS(3864), 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, + [519] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_BANG, + ACTIONS(3878), 1, + anon_sym_COLON_COLON, + ACTIONS(3880), 1, + anon_sym_LT2, + STATE(1556), 1, + sym_type_arguments, + STATE(1569), 1, + sym_parameters, + STATE(1214), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3874), 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(3870), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -115361,38 +129352,39 @@ 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, - [598] = 11, + [596] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(3430), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, anon_sym_BANG, - ACTIONS(3432), 1, + ACTIONS(3888), 1, anon_sym_COLON_COLON, - ACTIONS(3434), 1, - anon_sym_LT2, - STATE(1125), 1, - sym_type_arguments, - STATE(1131), 1, - sym_parameters, - STATE(1061), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(3892), 1, + anon_sym_move, + STATE(1786), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(3428), 17, + ACTIONS(3884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115403,19 +129395,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(3424), 27, + ACTIONS(3882), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -115428,14 +129418,15 @@ 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, [675] = 11, @@ -115443,22 +129434,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3432), 1, + ACTIONS(3878), 1, anon_sym_COLON_COLON, - ACTIONS(3434), 1, + ACTIONS(3880), 1, anon_sym_LT2, - ACTIONS(3440), 1, + ACTIONS(3898), 1, anon_sym_BANG, - STATE(1125), 1, + STATE(1556), 1, sym_type_arguments, - STATE(1131), 1, + STATE(1569), 1, sym_parameters, - STATE(1062), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(3438), 17, + ACTIONS(3896), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115476,7 +129467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3436), 27, + ACTIONS(3894), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -115509,22 +129500,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3430), 1, + ACTIONS(3876), 1, anon_sym_BANG, - ACTIONS(3432), 1, + ACTIONS(3878), 1, anon_sym_COLON_COLON, - ACTIONS(3434), 1, + ACTIONS(3880), 1, anon_sym_LT2, - STATE(1125), 1, + STATE(1556), 1, sym_type_arguments, - STATE(1131), 1, + STATE(1569), 1, sym_parameters, - STATE(1063), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(3444), 17, + ACTIONS(3902), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115542,7 +129533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3442), 27, + ACTIONS(3900), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -115570,36 +129561,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [829] = 7, + [829] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3450), 1, - anon_sym_POUND, - STATE(1412), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1064), 3, + STATE(1218), 2, sym_line_comment, sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3448), 14, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, + ACTIONS(1533), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + anon_sym_POUND, sym_metavariable, - ACTIONS(3446), 31, + ACTIONS(1535), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115617,29 +129597,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + 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_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, - [897] = 5, + [893] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1065), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 9, + ACTIONS(1043), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115649,7 +129638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1425), 40, + ACTIONS(1041), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115690,15 +129679,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [961] = 5, + [957] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1066), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(1043), 9, + ACTIONS(1039), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115708,7 +129697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1041), 40, + ACTIONS(1037), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115749,12 +129738,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1025] = 5, + [1021] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1067), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, ACTIONS(1435), 9, @@ -115808,15 +129797,74 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1089] = 5, + [1085] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1068), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 9, + ACTIONS(1431), 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(1433), 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, + [1149] = 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(1423), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115826,7 +129874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1479), 40, + ACTIONS(1425), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115867,12 +129915,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1153] = 5, + [1213] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1069), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, ACTIONS(1419), 9, @@ -115926,15 +129974,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1217] = 5, + [1277] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1070), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 9, + ACTIONS(1499), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115944,7 +129992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1471), 40, + ACTIONS(1501), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115985,15 +130033,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1281] = 5, + [1341] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1071), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(1431), 9, + ACTIONS(1427), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116003,7 +130051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1433), 40, + ACTIONS(1429), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116044,25 +130092,86 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1345] = 10, + [1405] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3908), 1, + anon_sym_POUND, + STATE(1539), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1227), 3, + sym_line_comment, + sym_block_comment, + aux_sym_match_arm_repeat1, + ACTIONS(3906), 14, + sym__raw_string_literal_start, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(3434), 1, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3904), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + 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, + [1473] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, anon_sym_LT2, - ACTIONS(3457), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - STATE(1125), 1, + STATE(1556), 1, sym_type_arguments, - STATE(1131), 1, + STATE(1569), 1, sym_parameters, - STATE(1072), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(3455), 17, + ACTIONS(3913), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116080,7 +130189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3453), 27, + ACTIONS(3911), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -116108,349 +130217,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1419] = 5, + [1547] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1073), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1427), 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(1429), 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, - [1483] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1074), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1039), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, + ACTIONS(3921), 1, + anon_sym_BANG, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1037), 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, - [1547] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1075), 2, + STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(2934), 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(2936), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1610] = 24, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACK, - ACTIONS(3302), 1, - anon_sym_SQUOTE, - ACTIONS(3459), 1, - sym_identifier, - ACTIONS(3463), 1, - anon_sym_LPAREN, - ACTIONS(3465), 1, + ACTIONS(3919), 17, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3469), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3475), 1, - anon_sym_for, - ACTIONS(3479), 1, - sym_metavariable, - STATE(2400), 1, - sym_where_predicate, - STATE(2833), 1, - sym_scoped_type_identifier, - STATE(3139), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(1076), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3461), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, - ACTIONS(3473), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - STATE(3405), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3467), 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, - [1711] = 24, - ACTIONS(29), 1, + anon_sym_GT, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACK, - ACTIONS(3302), 1, - anon_sym_SQUOTE, - ACTIONS(3459), 1, - sym_identifier, - ACTIONS(3463), 1, - anon_sym_LPAREN, - ACTIONS(3465), 1, - anon_sym_STAR, - ACTIONS(3469), 1, - anon_sym_AMP, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3475), 1, - anon_sym_for, - ACTIONS(3479), 1, - sym_metavariable, - STATE(2577), 1, - sym_where_predicate, - STATE(2833), 1, - sym_scoped_type_identifier, - STATE(3139), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(1077), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3473), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3481), 3, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3917), 29, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_EQ, - STATE(3405), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3467), 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, - [1812] = 7, + 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, + [1614] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, + ACTIONS(3929), 1, anon_sym_BANG, - ACTIONS(3489), 1, + ACTIONS(3931), 1, anon_sym_COLON_COLON, - STATE(1078), 2, + STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(3485), 17, + ACTIONS(3927), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116468,7 +130307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3483), 29, + ACTIONS(3925), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116498,32 +130337,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [1879] = 7, + [1681] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3491), 1, - anon_sym_POUND, - STATE(1115), 1, - sym_attribute_item, - STATE(1079), 3, + STATE(1231), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(759), 11, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(2858), 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_SQUOTE, - sym_integer_literal, + anon_sym_POUND, sym_metavariable, - ACTIONS(3360), 34, + ACTIONS(2860), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116544,33 +130376,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, - [1946] = 7, + [1744] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, + ACTIONS(3937), 1, anon_sym_BANG, - ACTIONS(3500), 1, + ACTIONS(3939), 1, anon_sym_COLON_COLON, - STATE(1080), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(3496), 17, + ACTIONS(3935), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116588,7 +130425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3494), 29, + ACTIONS(3933), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116618,15 +130455,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [2013] = 5, + [1811] = 24, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1601), 1, + anon_sym_LBRACK, + ACTIONS(3796), 1, + anon_sym_SQUOTE, + ACTIONS(3941), 1, + sym_identifier, + ACTIONS(3945), 1, + anon_sym_LPAREN, + ACTIONS(3947), 1, + anon_sym_STAR, + ACTIONS(3951), 1, + anon_sym_AMP, + ACTIONS(3953), 1, + anon_sym_COLON_COLON, + ACTIONS(3957), 1, + anon_sym_for, + ACTIONS(3961), 1, + sym_metavariable, + STATE(2865), 1, + sym_where_predicate, + STATE(3170), 1, + sym_scoped_type_identifier, + STATE(3359), 1, + sym_generic_type, + STATE(4014), 1, + sym_scoped_identifier, + STATE(4087), 1, + sym_bracketed_type, + STATE(4231), 1, + sym_generic_type_with_turbofish, + STATE(1233), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3943), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3955), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3959), 3, + sym_self, + sym_super, + sym_crate, + STATE(3633), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3949), 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, + [1912] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1081), 2, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2620), 9, + ACTIONS(2560), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116636,7 +130550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2622), 39, + ACTIONS(2562), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116676,19 +130590,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2076] = 7, + [1975] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, + ACTIONS(3967), 1, anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(3969), 1, anon_sym_COLON_COLON, - STATE(1082), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 17, + ACTIONS(3965), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116706,7 +130620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3502), 29, + ACTIONS(3963), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116736,15 +130650,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [2143] = 5, + [2042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1083), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(1894), 9, + ACTIONS(3354), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116754,7 +130668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1896), 39, + ACTIONS(3356), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116794,83 +130708,100 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2206] = 7, + [2105] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_BANG, - ACTIONS(3516), 1, + ACTIONS(1601), 1, + anon_sym_LBRACK, + ACTIONS(3796), 1, + anon_sym_SQUOTE, + ACTIONS(3941), 1, + sym_identifier, + ACTIONS(3945), 1, + anon_sym_LPAREN, + ACTIONS(3947), 1, + anon_sym_STAR, + ACTIONS(3951), 1, + anon_sym_AMP, + ACTIONS(3953), 1, anon_sym_COLON_COLON, - STATE(1084), 2, + ACTIONS(3957), 1, + anon_sym_for, + ACTIONS(3961), 1, + sym_metavariable, + STATE(2865), 1, + sym_where_predicate, + STATE(3170), 1, + sym_scoped_type_identifier, + STATE(3359), 1, + sym_generic_type, + STATE(4014), 1, + sym_scoped_identifier, + STATE(4087), 1, + sym_bracketed_type, + STATE(4231), 1, + sym_generic_type_with_turbofish, + STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(3512), 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(3510), 29, + ACTIONS(3955), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3959), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3971), 3, 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, - [2273] = 9, + anon_sym_EQ, + STATE(3633), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3949), 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, + [2206] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3434), 1, + ACTIONS(3880), 1, anon_sym_LT2, - STATE(1126), 1, + STATE(1557), 1, sym_type_arguments, - STATE(1132), 1, + STATE(1572), 1, sym_parameters, - STATE(1085), 2, + STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 17, + ACTIONS(3975), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116888,7 +130819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 27, + ACTIONS(3973), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -116916,23 +130847,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2344] = 9, + [2277] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3434), 1, + ACTIONS(3880), 1, anon_sym_LT2, - STATE(1126), 1, + STATE(1557), 1, sym_type_arguments, - STATE(1132), 1, + STATE(1572), 1, sym_parameters, - STATE(1086), 2, + STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 17, + ACTIONS(3979), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116950,7 +130881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3522), 27, + ACTIONS(3977), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -116978,23 +130909,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2415] = 9, + [2348] = 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(2056), 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(2058), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2411] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3434), 1, + ACTIONS(3880), 1, anon_sym_LT2, - STATE(1126), 1, + STATE(1557), 1, sym_type_arguments, - STATE(1132), 1, + STATE(1572), 1, sym_parameters, - STATE(1087), 2, + STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 17, + ACTIONS(3983), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117012,7 +131001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 27, + ACTIONS(3981), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -117040,7 +131029,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2486] = 24, + [2482] = 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(2930), 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(2932), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2545] = 24, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, @@ -117049,93 +131096,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(1601), 1, anon_sym_LBRACK, - ACTIONS(3302), 1, + ACTIONS(3796), 1, anon_sym_SQUOTE, - ACTIONS(3459), 1, + ACTIONS(3941), 1, sym_identifier, - ACTIONS(3463), 1, + ACTIONS(3945), 1, anon_sym_LPAREN, - ACTIONS(3465), 1, + ACTIONS(3947), 1, anon_sym_STAR, - ACTIONS(3469), 1, + ACTIONS(3951), 1, anon_sym_AMP, - ACTIONS(3471), 1, + ACTIONS(3953), 1, anon_sym_COLON_COLON, - ACTIONS(3475), 1, + ACTIONS(3957), 1, anon_sym_for, - ACTIONS(3479), 1, + ACTIONS(3961), 1, sym_metavariable, - STATE(2577), 1, + STATE(2757), 1, sym_where_predicate, - STATE(2833), 1, + STATE(3170), 1, sym_scoped_type_identifier, - STATE(3139), 1, + STATE(3359), 1, sym_generic_type, - STATE(3588), 1, + STATE(4014), 1, sym_scoped_identifier, - STATE(3594), 1, + STATE(4087), 1, sym_bracketed_type, - STATE(3738), 1, + STATE(4231), 1, sym_generic_type_with_turbofish, - STATE(1088), 2, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(3473), 3, + ACTIONS(3955), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(3477), 3, + ACTIONS(3959), 3, sym_self, sym_super, sym_crate, - ACTIONS(3530), 3, + ACTIONS(3985), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - STATE(3405), 6, + STATE(3633), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3467), 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, - [2587] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1089), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2412), 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(2414), 39, + ACTIONS(3949), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117153,45 +131164,23 @@ 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, - [2650] = 9, + [2646] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - ACTIONS(3434), 1, + ACTIONS(3880), 1, anon_sym_LT2, - STATE(1126), 1, + STATE(1557), 1, sym_type_arguments, - STATE(1132), 1, + STATE(1572), 1, sym_parameters, - STATE(1090), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 17, + ACTIONS(3989), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117209,7 +131198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 27, + ACTIONS(3987), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -117237,25 +131226,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2721] = 5, + [2717] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1091), 2, + ACTIONS(3995), 1, + anon_sym_RBRACE, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2736), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(3993), 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_COMMA, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2738), 39, + ACTIONS(3991), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117273,44 +131270,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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, - [2784] = 5, + [2781] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1092), 2, + ACTIONS(3898), 1, + anon_sym_BANG, + ACTIONS(3997), 1, + anon_sym_LBRACE, + ACTIONS(3999), 1, + anon_sym_COLON_COLON, + STATE(1746), 1, + sym_field_initializer_list, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, + ACTIONS(1461), 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, @@ -117320,13 +131316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 31, + ACTIONS(1459), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -117348,19 +131343,17 @@ 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, - [2846] = 5, + [2851] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1093), 2, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 16, + ACTIONS(3937), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117377,7 +131370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3489), 31, + ACTIONS(3939), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117409,15 +131402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2908] = 5, + [2913] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1094), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, + ACTIONS(3929), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117434,7 +131427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 31, + ACTIONS(3931), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117466,131 +131459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2970] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3540), 1, - anon_sym_RBRACE, - STATE(1095), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3538), 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_EQ, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3536), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - 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, - [3034] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3546), 1, - anon_sym_RBRACE, - STATE(1096), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3544), 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_EQ, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3542), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - 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, - [3098] = 5, + [2975] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, + ACTIONS(3921), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117607,7 +131484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3508), 31, + ACTIONS(3923), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117639,29 +131516,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3160] = 5, + [3037] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1098), 2, + ACTIONS(4001), 1, + anon_sym_POUND, + STATE(1772), 1, + sym_attribute_item, + STATE(1250), 3, sym_line_comment, sym_block_comment, - ACTIONS(3550), 13, - anon_sym_SEMI, + aux_sym_mod_item_repeat1, + ACTIONS(759), 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(3548), 34, + ACTIONS(3814), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117686,25 +131565,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_pub, 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, - [3222] = 5, + [3103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1099), 2, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(3554), 13, + ACTIONS(4006), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -117718,7 +131597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3552), 34, + ACTIONS(4004), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117753,23 +131632,26 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3284] = 9, + [3165] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_BANG, - ACTIONS(3556), 1, - anon_sym_LBRACE, - ACTIONS(3558), 1, + ACTIONS(3888), 1, anon_sym_COLON_COLON, - STATE(1514), 1, - sym_field_initializer_list, - STATE(1100), 2, + ACTIONS(4008), 1, + anon_sym_BANG, + STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(3884), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117785,12 +131667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 28, + anon_sym_as, + ACTIONS(3882), 23, 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, @@ -117811,35 +131692,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [3354] = 8, + [3233] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3560), 1, - anon_sym_BANG, - STATE(1101), 2, + STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(4014), 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(4012), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_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_use, + anon_sym_where, anon_sym_extern, - ACTIONS(3414), 16, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3295] = 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(3967), 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, @@ -117849,11 +131774,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3412), 23, + ACTIONS(3969), 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, @@ -117874,15 +131801,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [3422] = 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [3357] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1102), 2, + STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 13, + ACTIONS(4018), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -117896,7 +131828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3564), 34, + ACTIONS(4016), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117931,15 +131863,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3484] = 5, + [3419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(3570), 13, + ACTIONS(4022), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -117953,7 +131885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3568), 34, + ACTIONS(4020), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117988,135 +131920,129 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3546] = 12, - ACTIONS(19), 1, - anon_sym_LBRACE, + [3481] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3560), 1, - anon_sym_BANG, - ACTIONS(3572), 1, - anon_sym_move, - STATE(412), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(1104), 2, + ACTIONS(4028), 1, + anon_sym_RBRACE, + STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(4026), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3412), 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, - [3621] = 6, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(4024), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + 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, + [3545] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3574), 1, - anon_sym_LBRACE, - STATE(1105), 2, + STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 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(3489), 29, + ACTIONS(2938), 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, - [3684] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2940), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3606] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(3578), 7, + ACTIONS(3154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118124,7 +132050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3576), 39, + ACTIONS(3156), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118164,257 +132090,191 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3745] = 6, + [3667] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3580), 1, - anon_sym_LBRACE, - STATE(1107), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 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(3508), 29, + ACTIONS(3166), 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, - [3808] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3168), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3728] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(3584), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3582), 31, + ACTIONS(3170), 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, - [3869] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3172), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3789] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1109), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(3588), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3586), 31, + ACTIONS(3198), 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, - [3930] = 6, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3200), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3850] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3590), 1, - anon_sym_LBRACE, - STATE(1110), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 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(3516), 29, + ACTIONS(3202), 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_COLON_COLON, - anon_sym_as, - anon_sym_else, - [3993] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1111), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3538), 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_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3536), 31, + ACTIONS(3204), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118432,101 +132292,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_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, - [4054] = 5, + [3911] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(1585), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1587), 31, + ACTIONS(3206), 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, - [4115] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1113), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3544), 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_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3542), 31, + ACTIONS(3208), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118544,29 +132348,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_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, - [4176] = 5, + [3972] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(2590), 7, + ACTIONS(3210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118574,7 +132386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2592), 39, + ACTIONS(3212), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118614,28 +132426,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4237] = 5, + [4033] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(3364), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(3214), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, sym_metavariable, - ACTIONS(3362), 34, + ACTIONS(3216), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118656,72 +132463,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_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [4298] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [4094] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3380), 1, - anon_sym_if, - ACTIONS(3592), 1, - sym_identifier, - ACTIONS(3596), 1, - anon_sym_COLON_COLON, - ACTIONS(3600), 1, - sym_metavariable, - STATE(2686), 1, - sym_scoped_identifier, - STATE(2950), 1, - sym__literal_pattern, - STATE(3590), 1, - sym_bracketed_type, - STATE(3607), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3378), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1116), 2, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3598), 3, - sym_self, - sym_super, - sym_crate, - STATE(2465), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3594), 20, + ACTIONS(3218), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3220), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118739,189 +132516,205 @@ 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, - [4391] = 6, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4155] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - STATE(1117), 2, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3518), 30, + ACTIONS(3222), 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, - [4454] = 6, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3224), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4216] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3604), 1, - anon_sym_COLON_COLON, - STATE(1118), 2, + STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3518), 30, + ACTIONS(3226), 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, - [4517] = 6, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3228), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4277] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, - anon_sym_COLON_COLON, - STATE(1119), 2, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3518), 30, + ACTIONS(3234), 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, - [4580] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3236), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4338] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(2170), 7, + ACTIONS(3314), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118929,7 +132722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2172), 39, + ACTIONS(3316), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118969,15 +132762,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4641] = 5, + [4399] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(2226), 7, + ACTIONS(3326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118985,7 +132778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2228), 39, + ACTIONS(3328), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119025,58 +132818,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4702] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [4460] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3404), 1, - anon_sym_if, - ACTIONS(3596), 1, - anon_sym_COLON_COLON, - ACTIONS(3608), 1, - sym_identifier, - ACTIONS(3614), 1, - sym_metavariable, - STATE(2801), 1, - sym_scoped_identifier, - STATE(3086), 1, - sym__literal_pattern, - STATE(3590), 1, - sym_bracketed_type, - STATE(3607), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3402), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1122), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3612), 3, - sym_self, - sym_super, - sym_crate, - STATE(2465), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3610), 20, + ACTIONS(3334), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3336), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119094,117 +132852,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, - [4795] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4521] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3616), 31, + ACTIONS(3350), 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, - [4856] = 21, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3392), 1, - anon_sym_if, - ACTIONS(3596), 1, anon_sym_COLON_COLON, - ACTIONS(3620), 1, - sym_identifier, - ACTIONS(3626), 1, + anon_sym_POUND, sym_metavariable, - STATE(2811), 1, - sym_scoped_identifier, - STATE(3100), 1, - sym__literal_pattern, - STATE(3590), 1, - sym_bracketed_type, - STATE(3607), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3390), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1124), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3624), 3, - sym_self, - sym_super, - sym_crate, - STATE(2465), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3622), 20, + ACTIONS(3352), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119222,471 +132908,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, - [4949] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4582] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3628), 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, - [5010] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1126), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3634), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3632), 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, - [5071] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1127), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3372), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3374), 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, - [5132] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3640), 1, - anon_sym_DASH_GT, - STATE(1128), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3638), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3636), 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, - [5195] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3606), 1, - anon_sym_COLON_COLON, - STATE(1129), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3524), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3522), 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, - [5258] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3606), 1, - anon_sym_COLON_COLON, - STATE(1130), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3534), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3532), 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, - [5321] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3646), 1, - anon_sym_DASH_GT, - STATE(1131), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3644), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3642), 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, - [5384] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3652), 1, - anon_sym_DASH_GT, - STATE(1132), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3650), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3648), 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, - [5447] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1133), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2238), 7, + ACTIONS(3418), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119694,7 +132946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2240), 39, + ACTIONS(3420), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119734,73 +132986,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5508] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3654), 1, - anon_sym_else, - STATE(1539), 1, - sym_else_clause, - STATE(1134), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1395), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1393), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - [5573] = 5, + [4643] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(2312), 7, + ACTIONS(3430), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119808,7 +133002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2314), 39, + ACTIONS(3432), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119848,15 +133042,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5634] = 5, + [4704] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(2320), 7, + ACTIONS(3434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119864,7 +133058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2322), 39, + ACTIONS(3436), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119904,15 +133098,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5695] = 5, + [4765] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(2348), 7, + ACTIONS(3454), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119920,7 +133114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2350), 39, + ACTIONS(3456), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119960,15 +133154,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5756] = 5, + [4826] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(2396), 7, + ACTIONS(3466), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119976,7 +133170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2398), 39, + ACTIONS(3468), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120016,15 +133210,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5817] = 5, + [4887] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(2400), 7, + ACTIONS(1964), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120032,7 +133226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2402), 39, + ACTIONS(1966), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120072,15 +133266,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5878] = 5, + [4948] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(2408), 7, + ACTIONS(1968), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120088,7 +133282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2410), 39, + ACTIONS(1970), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120128,15 +133322,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5939] = 5, + [5009] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(2448), 7, + ACTIONS(1972), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120144,7 +133338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2450), 39, + ACTIONS(1974), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120184,15 +133378,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6000] = 5, + [5070] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(2456), 7, + ACTIONS(1976), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120200,7 +133394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2458), 39, + ACTIONS(1978), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120240,15 +133434,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6061] = 5, + [5131] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(2460), 7, + ACTIONS(1980), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120256,7 +133450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2462), 39, + ACTIONS(1982), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120296,15 +133490,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6122] = 5, + [5192] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(2464), 7, + ACTIONS(1984), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120312,7 +133506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2466), 39, + ACTIONS(1986), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120352,15 +133546,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6183] = 5, + [5253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(2472), 7, + ACTIONS(1988), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120368,7 +133562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2474), 39, + ACTIONS(1990), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120408,15 +133602,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6244] = 5, + [5314] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(2512), 7, + ACTIONS(1992), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120424,7 +133618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2514), 39, + ACTIONS(1994), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120464,15 +133658,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6305] = 5, + [5375] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 7, + ACTIONS(1996), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120480,7 +133674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2524), 39, + ACTIONS(1998), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120520,15 +133714,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6366] = 5, + [5436] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(2526), 7, + ACTIONS(2000), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120536,7 +133730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2528), 39, + ACTIONS(2002), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120576,15 +133770,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6427] = 5, + [5497] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(2548), 7, + ACTIONS(2004), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120592,7 +133786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2550), 39, + ACTIONS(2006), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120632,15 +133826,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6488] = 5, + [5558] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(2552), 7, + ACTIONS(2608), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120648,7 +133842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2554), 39, + ACTIONS(2610), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120688,129 +133882,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6549] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1151), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3485), 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(3483), 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, - [6610] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1152), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3658), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3656), 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, - [6671] = 6, + [5619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3664), 1, - anon_sym_DASH_GT, - STATE(1153), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(3662), 15, + ACTIONS(4032), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120826,7 +133906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3660), 30, + ACTIONS(4030), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120854,20 +133934,19 @@ 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, - [6734] = 6, + [5680] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3670), 1, - anon_sym_DASH_GT, - STATE(1154), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(3668), 15, + ACTIONS(4036), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120883,7 +133962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3666), 30, + ACTIONS(4034), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120911,75 +133990,19 @@ 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, - [6797] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3676), 1, anon_sym_DASH_GT, - STATE(1155), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3674), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3672), 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, - [6860] = 5, + [5741] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(2640), 7, + ACTIONS(2008), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120987,7 +134010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2642), 39, + ACTIONS(2010), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121027,15 +134050,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6921] = 5, + [5802] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(2644), 7, + ACTIONS(2012), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121043,7 +134066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2646), 39, + ACTIONS(2014), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121083,15 +134106,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6982] = 5, + [5863] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(2648), 7, + ACTIONS(2016), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121099,7 +134122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2650), 39, + ACTIONS(2018), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121139,15 +134162,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7043] = 5, + [5924] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(2652), 7, + ACTIONS(2910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121155,7 +134178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2654), 39, + ACTIONS(2912), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121195,15 +134218,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7104] = 5, + [5985] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(2660), 7, + ACTIONS(2024), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121211,7 +134234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2662), 39, + ACTIONS(2026), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121251,15 +134274,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7165] = 5, + [6046] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(2688), 7, + ACTIONS(2028), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121267,7 +134290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2690), 39, + ACTIONS(2030), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121307,15 +134330,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7226] = 5, + [6107] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(2692), 7, + ACTIONS(2032), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121323,7 +134346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2694), 39, + ACTIONS(2034), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121363,15 +134386,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7287] = 5, + [6168] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 7, + ACTIONS(2036), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121379,7 +134402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2698), 39, + ACTIONS(2038), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121419,15 +134442,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7348] = 5, + [6229] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 7, + ACTIONS(2040), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121435,7 +134458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2702), 39, + ACTIONS(2042), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121475,15 +134498,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7409] = 5, + [6290] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(2704), 7, + ACTIONS(2044), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121491,7 +134514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2706), 39, + ACTIONS(2046), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121531,15 +134554,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7470] = 5, + [6351] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 7, + ACTIONS(2052), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121547,7 +134570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2742), 39, + ACTIONS(2054), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121587,15 +134610,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7531] = 5, + [6412] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(2744), 7, + ACTIONS(2612), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121603,7 +134626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2746), 39, + ACTIONS(2614), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121643,15 +134666,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7592] = 5, + [6473] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(2748), 7, + ACTIONS(2060), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121659,7 +134682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2750), 39, + ACTIONS(2062), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121699,15 +134722,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7653] = 5, + [6534] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(2752), 7, + ACTIONS(2064), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121715,7 +134738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2754), 39, + ACTIONS(2066), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121755,15 +134778,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7714] = 5, + [6595] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(2756), 7, + ACTIONS(2068), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121771,7 +134794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2758), 39, + ACTIONS(2070), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121811,15 +134834,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7775] = 5, + [6656] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(2760), 7, + ACTIONS(2072), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121827,7 +134850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2762), 39, + ACTIONS(2074), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121867,15 +134890,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7836] = 5, + [6717] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(2764), 7, + ACTIONS(2076), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121883,7 +134906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2766), 39, + ACTIONS(2078), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121923,15 +134946,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7897] = 5, + [6778] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 7, + ACTIONS(2080), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121939,7 +134962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2770), 39, + ACTIONS(2082), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121979,15 +135002,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7958] = 5, + [6839] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 7, + ACTIONS(2084), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121995,7 +135018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2774), 39, + ACTIONS(2086), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122035,15 +135058,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8019] = 5, + [6900] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(2776), 7, + ACTIONS(2088), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122051,7 +135074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2778), 39, + ACTIONS(2090), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122091,15 +135114,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8080] = 5, + [6961] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(2780), 7, + ACTIONS(2092), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122107,7 +135130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2782), 39, + ACTIONS(2094), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122147,15 +135170,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8141] = 5, + [7022] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(2784), 7, + ACTIONS(2096), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122163,7 +135186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2786), 39, + ACTIONS(2098), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122203,15 +135226,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8202] = 5, + [7083] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1178), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(2788), 7, + ACTIONS(2100), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122219,7 +135242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2790), 39, + ACTIONS(2102), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122259,15 +135282,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8263] = 5, + [7144] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2792), 7, + ACTIONS(2104), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122275,7 +135298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2794), 39, + ACTIONS(2106), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122315,15 +135338,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8324] = 5, + [7205] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(2796), 7, + ACTIONS(2108), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122331,7 +135354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2798), 39, + ACTIONS(2110), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122371,15 +135394,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8385] = 5, + [7266] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(2800), 7, + ACTIONS(2112), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122387,7 +135410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2802), 39, + ACTIONS(2114), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122427,15 +135450,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8446] = 5, + [7327] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 7, + ACTIONS(2116), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122443,7 +135466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2818), 39, + ACTIONS(2118), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122483,15 +135506,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8507] = 5, + [7388] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(2926), 7, + ACTIONS(2120), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122499,7 +135522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2928), 39, + ACTIONS(2122), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122539,15 +135562,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8568] = 5, + [7449] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(2974), 7, + ACTIONS(2124), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122555,7 +135578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2976), 39, + ACTIONS(2126), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122595,15 +135618,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8629] = 5, + [7510] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(2982), 7, + ACTIONS(2128), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122611,7 +135634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2984), 39, + ACTIONS(2130), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122651,15 +135674,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8690] = 5, + [7571] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(2994), 7, + ACTIONS(2132), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122667,7 +135690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2996), 39, + ACTIONS(2134), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122707,15 +135730,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8751] = 5, + [7632] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(3014), 7, + ACTIONS(2140), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122723,7 +135746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3016), 39, + ACTIONS(2142), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122763,15 +135786,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8812] = 5, + [7693] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(3030), 7, + ACTIONS(2144), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122779,7 +135802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3032), 39, + ACTIONS(2146), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122819,15 +135842,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8873] = 5, + [7754] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(3042), 7, + ACTIONS(2148), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122835,7 +135858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3044), 39, + ACTIONS(2150), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122875,15 +135898,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8934] = 5, + [7815] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(2272), 7, + ACTIONS(2152), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122891,7 +135914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2274), 39, + ACTIONS(2154), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122931,15 +135954,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8995] = 5, + [7876] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2596), 7, + ACTIONS(2156), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122947,7 +135970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2598), 39, + ACTIONS(2158), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122987,241 +136010,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9056] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1192), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3680), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3678), 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, - [9117] = 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(3684), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3682), 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, - [9178] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3606), 1, - anon_sym_COLON_COLON, - STATE(1194), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3528), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3526), 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, - [9241] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3690), 1, - anon_sym_DASH_GT, - STATE(1195), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3688), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3686), 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, - [9304] = 5, + [7937] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(2114), 7, + ACTIONS(2160), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123229,7 +136026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2116), 39, + ACTIONS(2162), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123269,15 +136066,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9365] = 5, + [7998] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 7, + ACTIONS(2164), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123285,7 +136082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2120), 39, + ACTIONS(2166), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123325,15 +136122,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9426] = 5, + [8059] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2234), 7, + ACTIONS(2168), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123341,7 +136138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2236), 39, + ACTIONS(2170), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123381,15 +136178,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9487] = 5, + [8120] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(2248), 7, + ACTIONS(2172), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123397,7 +136194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2250), 39, + ACTIONS(2174), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123437,15 +136234,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9548] = 5, + [8181] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(2252), 7, + ACTIONS(2176), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123453,7 +136250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2254), 39, + ACTIONS(2178), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123493,15 +136290,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9609] = 5, + [8242] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(2256), 7, + ACTIONS(2180), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123509,7 +136306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2258), 39, + ACTIONS(2182), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123549,15 +136346,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9670] = 5, + [8303] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(2264), 7, + ACTIONS(2184), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123565,7 +136362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2266), 39, + ACTIONS(2186), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123605,15 +136402,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9731] = 5, + [8364] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(2268), 7, + ACTIONS(2188), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123621,7 +136418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2270), 39, + ACTIONS(2190), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123661,15 +136458,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9792] = 5, + [8425] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(2276), 7, + ACTIONS(2192), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123677,7 +136474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2278), 39, + ACTIONS(2194), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123717,15 +136514,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9853] = 5, + [8486] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2280), 7, + ACTIONS(2196), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123733,7 +136530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2282), 39, + ACTIONS(2198), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123773,15 +136570,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9914] = 5, + [8547] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(2288), 7, + ACTIONS(2200), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123789,7 +136586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2290), 39, + ACTIONS(2202), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123829,15 +136626,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9975] = 5, + [8608] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2372), 7, + ACTIONS(2204), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123845,7 +136642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2374), 39, + ACTIONS(2206), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123885,15 +136682,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10036] = 5, + [8669] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2384), 7, + ACTIONS(2208), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123901,7 +136698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2386), 39, + ACTIONS(2210), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123941,15 +136738,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10097] = 5, + [8730] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(2388), 7, + ACTIONS(2212), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123957,7 +136754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2390), 39, + ACTIONS(2214), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123997,15 +136794,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10158] = 5, + [8791] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(2392), 7, + ACTIONS(2216), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124013,7 +136810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2394), 39, + ACTIONS(2218), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124053,15 +136850,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10219] = 5, + [8852] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(2504), 7, + ACTIONS(2220), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124069,7 +136866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2506), 39, + ACTIONS(2222), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124109,15 +136906,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10280] = 5, + [8913] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(2586), 7, + ACTIONS(2224), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124125,7 +136922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2588), 39, + ACTIONS(2226), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124165,15 +136962,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10341] = 5, + [8974] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2604), 7, + ACTIONS(2228), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124181,7 +136978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2606), 39, + ACTIONS(2230), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124221,15 +137018,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10402] = 5, + [9035] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2632), 7, + ACTIONS(2232), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124237,7 +137034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2634), 39, + ACTIONS(2234), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124277,15 +137074,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10463] = 5, + [9096] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 7, + ACTIONS(2236), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124293,7 +137090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2826), 39, + ACTIONS(2238), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124333,15 +137130,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10524] = 5, + [9157] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1216), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2914), 7, + ACTIONS(2240), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124349,7 +137146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2916), 39, + ACTIONS(2242), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124389,15 +137186,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10585] = 5, + [9218] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2922), 7, + ACTIONS(2244), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124405,7 +137202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2924), 39, + ACTIONS(2246), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124445,15 +137242,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10646] = 5, + [9279] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(1834), 7, + ACTIONS(2248), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124461,7 +137258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1836), 39, + ACTIONS(2250), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124501,15 +137298,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10707] = 5, + [9340] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(1838), 7, + ACTIONS(2256), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124517,7 +137314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1840), 39, + ACTIONS(2258), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124557,15 +137354,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10768] = 5, + [9401] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(1842), 7, + ACTIONS(2260), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124573,7 +137370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1844), 39, + ACTIONS(2262), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124613,15 +137410,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10829] = 5, + [9462] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(1886), 7, + ACTIONS(2264), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124629,7 +137426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1888), 39, + ACTIONS(2266), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124669,15 +137466,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10890] = 5, + [9523] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 7, + ACTIONS(2268), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124685,7 +137482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1976), 39, + ACTIONS(2270), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124725,15 +137522,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10951] = 5, + [9584] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(2062), 7, + ACTIONS(2272), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124741,7 +137538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2064), 39, + ACTIONS(2274), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124781,15 +137578,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11012] = 5, + [9645] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2082), 7, + ACTIONS(2276), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124797,7 +137594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2084), 39, + ACTIONS(2278), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124837,15 +137634,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11073] = 5, + [9706] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 7, + ACTIONS(2280), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124853,7 +137650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2088), 39, + ACTIONS(2282), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124893,15 +137690,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11134] = 5, + [9767] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(2090), 7, + ACTIONS(2284), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124909,7 +137706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2092), 39, + ACTIONS(2286), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124949,15 +137746,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11195] = 5, + [9828] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(2094), 7, + ACTIONS(2288), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124965,7 +137762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2096), 39, + ACTIONS(2290), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125005,15 +137802,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11256] = 5, + [9889] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 7, + ACTIONS(2292), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125021,7 +137818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2100), 39, + ACTIONS(2294), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125061,15 +137858,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11317] = 5, + [9950] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2102), 7, + ACTIONS(2296), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125077,7 +137874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2104), 39, + ACTIONS(2298), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125117,15 +137914,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11378] = 5, + [10011] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(2106), 7, + ACTIONS(2300), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125133,7 +137930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2108), 39, + ACTIONS(2302), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125173,15 +137970,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11439] = 5, + [10072] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(2110), 7, + ACTIONS(2304), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125189,7 +137986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2112), 39, + ACTIONS(2306), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125229,15 +138026,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11500] = 5, + [10133] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(2122), 7, + ACTIONS(2308), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125245,7 +138042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2124), 39, + ACTIONS(2310), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125285,15 +138082,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11561] = 5, + [10194] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(2126), 7, + ACTIONS(2312), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125301,7 +138098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2128), 39, + ACTIONS(2314), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125341,15 +138138,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11622] = 5, + [10255] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(2130), 7, + ACTIONS(2316), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125357,7 +138154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2132), 39, + ACTIONS(2318), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125397,15 +138194,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11683] = 5, + [10316] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(2134), 7, + ACTIONS(2320), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125413,7 +138210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2136), 39, + ACTIONS(2322), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125453,15 +138250,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11744] = 5, + [10377] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(2138), 7, + ACTIONS(2324), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125469,7 +138266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2140), 39, + ACTIONS(2326), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125509,15 +138306,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11805] = 5, + [10438] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 7, + ACTIONS(2328), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125525,7 +138322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2144), 39, + ACTIONS(2330), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125565,15 +138362,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11866] = 5, + [10499] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1238), 2, + STATE(1372), 2, sym_line_comment, sym_block_comment, - ACTIONS(2146), 7, + ACTIONS(2332), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125581,7 +138378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2148), 39, + ACTIONS(2334), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125621,15 +138418,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11927] = 5, + [10560] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1239), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(2150), 7, + ACTIONS(2336), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125637,7 +138434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2152), 39, + ACTIONS(2338), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125677,15 +138474,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11988] = 5, + [10621] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1240), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(2154), 7, + ACTIONS(2340), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125693,7 +138490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2156), 39, + ACTIONS(2342), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125733,15 +138530,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12049] = 5, + [10682] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1241), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(2158), 7, + ACTIONS(2344), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125749,7 +138546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2160), 39, + ACTIONS(2346), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125789,15 +138586,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12110] = 5, + [10743] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1242), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(2162), 7, + ACTIONS(2348), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125805,7 +138602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2164), 39, + ACTIONS(2350), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125845,15 +138642,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12171] = 5, + [10804] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1243), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(2166), 7, + ACTIONS(2352), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125861,7 +138658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2168), 39, + ACTIONS(2354), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125901,15 +138698,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12232] = 5, + [10865] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(2244), 7, + ACTIONS(2356), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125917,7 +138714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2246), 39, + ACTIONS(2358), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125957,15 +138754,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12293] = 5, + [10926] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(2260), 7, + ACTIONS(2360), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125973,7 +138770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2262), 39, + ACTIONS(2362), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126013,127 +138810,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12354] = 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(3694), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3692), 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, - [12415] = 5, + [10987] = 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(3698), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3696), 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, - [12476] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1248), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(2284), 7, + ACTIONS(2364), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126141,7 +138826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2286), 39, + ACTIONS(2366), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126181,15 +138866,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12537] = 5, + [11048] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(2292), 7, + ACTIONS(2368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126197,7 +138882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2294), 39, + ACTIONS(2370), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126237,15 +138922,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12598] = 5, + [11109] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(2296), 7, + ACTIONS(2372), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126253,7 +138938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2298), 39, + ACTIONS(2374), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126293,15 +138978,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12659] = 5, + [11170] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1251), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(2300), 7, + ACTIONS(2380), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126309,7 +138994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2302), 39, + ACTIONS(2382), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126349,15 +139034,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12720] = 5, + [11231] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(2304), 7, + ACTIONS(2384), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126365,7 +139050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2306), 39, + ACTIONS(2386), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126405,15 +139090,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12781] = 5, + [11292] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(2308), 7, + ACTIONS(2388), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126421,7 +139106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2310), 39, + ACTIONS(2390), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126461,15 +139146,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12842] = 5, + [11353] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(2316), 7, + ACTIONS(2392), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126477,7 +139162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2318), 39, + ACTIONS(2394), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126517,15 +139202,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12903] = 5, + [11414] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(2324), 7, + ACTIONS(2396), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126533,7 +139218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2326), 39, + ACTIONS(2398), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126573,15 +139258,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12964] = 5, + [11475] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(2328), 7, + ACTIONS(2400), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126589,7 +139274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2330), 39, + ACTIONS(2402), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126629,15 +139314,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13025] = 5, + [11536] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1257), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(2332), 7, + ACTIONS(2404), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126645,7 +139330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2334), 39, + ACTIONS(2406), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126685,15 +139370,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13086] = 5, + [11597] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(2336), 7, + ACTIONS(2408), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126701,7 +139386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2338), 39, + ACTIONS(2410), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126741,15 +139426,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13147] = 5, + [11658] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 7, + ACTIONS(2420), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126757,7 +139442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2342), 39, + ACTIONS(2422), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126797,15 +139482,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13208] = 5, + [11719] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(2344), 7, + ACTIONS(2424), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126813,7 +139498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2346), 39, + ACTIONS(2426), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126853,15 +139538,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13269] = 5, + [11780] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(2352), 7, + ACTIONS(2428), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126869,7 +139554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2354), 39, + ACTIONS(2430), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126909,15 +139594,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13330] = 5, + [11841] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1262), 2, + STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(2356), 7, + ACTIONS(2432), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126925,7 +139610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2358), 39, + ACTIONS(2434), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126965,15 +139650,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13391] = 5, + [11902] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(2360), 7, + ACTIONS(2436), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126981,7 +139666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2362), 39, + ACTIONS(2438), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127021,15 +139706,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13452] = 5, + [11963] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1264), 2, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(2364), 7, + ACTIONS(2440), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127037,7 +139722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2366), 39, + ACTIONS(2442), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127077,15 +139762,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13513] = 5, + [12024] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + STATE(1397), 2, sym_line_comment, sym_block_comment, - ACTIONS(2368), 7, + ACTIONS(2444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127093,7 +139778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2370), 39, + ACTIONS(2446), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127133,15 +139818,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13574] = 5, + [12085] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(2376), 7, + ACTIONS(2448), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127149,7 +139834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2378), 39, + ACTIONS(2450), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127189,15 +139874,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13635] = 5, + [12146] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1267), 2, + STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(2380), 7, + ACTIONS(2452), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127205,7 +139890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2382), 39, + ACTIONS(2454), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127245,15 +139930,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13696] = 5, + [12207] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(2404), 7, + ACTIONS(2456), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127261,7 +139946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2406), 39, + ACTIONS(2458), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127301,15 +139986,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13757] = 5, + [12268] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1269), 2, + STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(2416), 7, + ACTIONS(2460), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127317,7 +140002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2418), 39, + ACTIONS(2462), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127357,15 +140042,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13818] = 5, + [12329] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(2420), 7, + ACTIONS(2464), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127373,7 +140058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2422), 39, + ACTIONS(2466), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127413,15 +140098,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13879] = 5, + [12390] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(2424), 7, + ACTIONS(2468), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127429,7 +140114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2426), 39, + ACTIONS(2470), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127469,15 +140154,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13940] = 5, + [12451] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 7, + ACTIONS(2472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127485,7 +140170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3048), 39, + ACTIONS(2474), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127525,15 +140210,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14001] = 5, + [12512] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(2432), 7, + ACTIONS(2476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127541,7 +140226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2434), 39, + ACTIONS(2478), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127581,15 +140266,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14062] = 5, + [12573] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(2436), 7, + ACTIONS(2480), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127597,7 +140282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2438), 39, + ACTIONS(2482), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127637,15 +140322,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14123] = 5, + [12634] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(2440), 7, + ACTIONS(2484), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127653,7 +140338,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2442), 39, + ACTIONS(2486), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12695] = 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(2616), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2618), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12756] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1409), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2620), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2622), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127693,17 +140490,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14184] = 6, + [12817] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, + ACTIONS(4038), 1, anon_sym_LBRACE, - STATE(1276), 2, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, + ACTIONS(3937), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -127720,7 +140517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 29, + ACTIONS(3939), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127750,15 +140547,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [14247] = 5, + [12880] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(2452), 7, + ACTIONS(2914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127766,7 +140563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2454), 39, + ACTIONS(2916), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127806,15 +140603,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14308] = 5, + [12941] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(2468), 7, + ACTIONS(4042), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127822,7 +140619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2470), 39, + ACTIONS(4040), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127862,15 +140659,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14369] = 5, + [13002] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(2476), 7, + ACTIONS(2624), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127878,7 +140675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2478), 39, + ACTIONS(2626), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127918,15 +140715,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14430] = 5, + [13063] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(1814), 7, + ACTIONS(2628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127934,7 +140731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1816), 39, + ACTIONS(2630), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127974,15 +140771,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14491] = 5, + [13124] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(2484), 7, + ACTIONS(2644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127990,7 +140787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2486), 39, + ACTIONS(2646), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128030,71 +140827,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14552] = 5, + [13185] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, + ACTIONS(4044), 1, + anon_sym_LBRACE, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(2488), 7, + ACTIONS(3929), 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(3931), 29, 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_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_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_POUND, - sym_metavariable, - ACTIONS(2490), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14613] = 5, + anon_sym_as, + anon_sym_else, + [13248] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1283), 2, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(2492), 7, + ACTIONS(2660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128102,7 +140900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2494), 39, + ACTIONS(2662), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128142,15 +140940,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14674] = 5, + [13309] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(2496), 7, + ACTIONS(2664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128158,7 +140956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2498), 39, + ACTIONS(2666), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128198,15 +140996,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14735] = 5, + [13370] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(2500), 7, + ACTIONS(2922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128214,7 +141012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2502), 39, + ACTIONS(2924), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128254,71 +141052,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14796] = 5, + [13431] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + ACTIONS(4046), 1, + anon_sym_LBRACE, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(2508), 7, + ACTIONS(3921), 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(3923), 29, 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_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_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_POUND, - sym_metavariable, - ACTIONS(2510), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14857] = 5, + anon_sym_as, + anon_sym_else, + [13494] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(2518), 7, + ACTIONS(2926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128326,7 +141125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2520), 39, + ACTIONS(2928), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128366,15 +141165,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14918] = 5, + [13555] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1288), 2, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(2530), 7, + ACTIONS(2668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128382,7 +141181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2532), 39, + ACTIONS(2670), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128422,15 +141221,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14979] = 5, + [13616] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1423), 2, sym_line_comment, sym_block_comment, - ACTIONS(2534), 7, + ACTIONS(2672), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128438,7 +141237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2536), 39, + ACTIONS(2674), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128478,15 +141277,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15040] = 5, + [13677] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1424), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 7, + ACTIONS(2676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128494,7 +141293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2540), 39, + ACTIONS(2678), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128534,15 +141333,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15101] = 5, + [13738] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + STATE(1425), 2, sym_line_comment, sym_block_comment, - ACTIONS(2556), 7, + ACTIONS(2680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128550,7 +141349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2558), 39, + ACTIONS(2682), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128590,15 +141389,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15162] = 5, + [13799] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1426), 2, sym_line_comment, sym_block_comment, - ACTIONS(2562), 7, + ACTIONS(2946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128606,7 +141405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2564), 39, + ACTIONS(2948), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128646,15 +141445,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15223] = 5, + [13860] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(2566), 7, + ACTIONS(2684), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128662,7 +141461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2568), 39, + ACTIONS(2686), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128702,15 +141501,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15284] = 5, + [13921] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1294), 2, + STATE(1428), 2, sym_line_comment, sym_block_comment, - ACTIONS(2574), 7, + ACTIONS(2692), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128718,7 +141517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2576), 39, + ACTIONS(2694), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128758,15 +141557,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15345] = 5, + [13982] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1429), 2, sym_line_comment, sym_block_comment, - ACTIONS(2578), 7, + ACTIONS(2696), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128774,7 +141573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2580), 39, + ACTIONS(2698), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128814,15 +141613,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15406] = 5, + [14043] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1296), 2, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(2582), 7, + ACTIONS(2700), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128830,7 +141629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2584), 39, + ACTIONS(2702), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128870,15 +141669,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15467] = 5, + [14104] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(2608), 7, + ACTIONS(2756), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128886,7 +141685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2610), 39, + ACTIONS(2758), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128926,15 +141725,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15528] = 5, + [14165] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1298), 2, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(2616), 7, + ACTIONS(2764), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128942,7 +141741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2618), 39, + ACTIONS(2766), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128982,15 +141781,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15589] = 5, + [14226] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 15, + ACTIONS(4050), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129006,7 +141805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3702), 31, + ACTIONS(4048), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129038,15 +141837,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15650] = 5, + [14287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + STATE(1434), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2544), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2546), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14348] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(3708), 15, + ACTIONS(4054), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129062,7 +141917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3706), 31, + ACTIONS(4052), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129094,15 +141949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15711] = 5, + [14409] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(2624), 7, + ACTIONS(2564), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129110,7 +141965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2626), 39, + ACTIONS(2566), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129150,127 +142005,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15772] = 5, + [14470] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2628), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(4056), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2630), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15833] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1303), 2, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(2636), 7, + ACTIONS(3979), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3977), 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(2638), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15894] = 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, + [14533] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(2656), 7, + ACTIONS(2568), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129278,7 +142078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2658), 39, + ACTIONS(2570), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129318,23 +142118,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15955] = 5, + [14594] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(2664), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(2802), 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_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2666), 39, + ACTIONS(2804), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129352,37 +142160,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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, - [16016] = 5, + [14655] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1440), 2, sym_line_comment, sym_block_comment, - ACTIONS(2668), 7, + ACTIONS(2950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129390,7 +142190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2670), 39, + ACTIONS(2952), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129430,15 +142230,185 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16077] = 5, + [14716] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(2672), 7, + ACTIONS(4060), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4058), 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, + [14777] = 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(4064), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4062), 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, + [14838] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4068), 1, + anon_sym_LPAREN, + STATE(1714), 1, + sym_arguments, + STATE(1443), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4070), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4066), 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, + [14903] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1444), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3030), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129446,7 +142416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2674), 39, + ACTIONS(3032), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129486,15 +142456,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16138] = 5, + [14964] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 7, + ACTIONS(2576), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129502,7 +142472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2678), 39, + ACTIONS(2578), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129542,15 +142512,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16199] = 5, + [15025] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(2680), 7, + ACTIONS(2580), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129558,7 +142528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2682), 39, + ACTIONS(2582), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129598,15 +142568,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16260] = 5, + [15086] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + ACTIONS(4076), 1, + anon_sym_DASH_GT, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(2684), 7, + ACTIONS(4074), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4072), 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, + [15149] = 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(2584), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129614,7 +142641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2686), 39, + ACTIONS(2586), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129654,15 +142681,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16321] = 5, + [15210] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(2708), 7, + ACTIONS(2802), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129670,7 +142697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2710), 39, + ACTIONS(2804), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129710,15 +142737,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16382] = 5, + [15271] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(2712), 7, + ACTIONS(2806), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129726,7 +142753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2714), 39, + ACTIONS(2808), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129766,15 +142793,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16443] = 5, + [15332] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(2716), 7, + ACTIONS(2822), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129782,7 +142809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2718), 39, + ACTIONS(2824), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129822,15 +142849,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16504] = 5, + [15393] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(2720), 7, + ACTIONS(2830), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129838,7 +142865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2722), 39, + ACTIONS(2832), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129878,15 +142905,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16565] = 5, + [15454] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(2724), 7, + ACTIONS(2834), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129894,7 +142921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2726), 39, + ACTIONS(2836), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129934,23 +142961,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16626] = 5, + [15515] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3822), 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_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2730), 39, + ACTIONS(3820), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129968,37 +143003,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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, - [16687] = 5, + [15576] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(2732), 7, + ACTIONS(2842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130006,7 +143033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2734), 39, + ACTIONS(2844), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130046,15 +143073,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16748] = 5, + [15637] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1318), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(2804), 7, + ACTIONS(2846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130062,7 +143089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2806), 39, + ACTIONS(2848), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130102,15 +143129,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16809] = 5, + [15698] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(2808), 7, + ACTIONS(2850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130118,7 +143145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2810), 39, + ACTIONS(2852), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130158,15 +143185,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16870] = 5, + [15759] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1320), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(2812), 7, + ACTIONS(2862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130174,7 +143201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2814), 39, + ACTIONS(2864), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130214,15 +143241,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16931] = 5, + [15820] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(2820), 7, + ACTIONS(2866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130230,7 +143257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2822), 39, + ACTIONS(2868), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130270,15 +143297,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16992] = 5, + [15881] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(2918), 7, + ACTIONS(2870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130286,7 +143313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2920), 39, + ACTIONS(2872), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130326,15 +143353,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17053] = 5, + [15942] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1323), 2, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(2930), 7, + ACTIONS(2874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130342,7 +143369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2932), 39, + ACTIONS(2876), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130382,15 +143409,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17114] = 5, + [16003] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(2938), 7, + ACTIONS(2878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130398,7 +143425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2940), 39, + ACTIONS(2880), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130438,15 +143465,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17175] = 5, + [16064] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(2942), 7, + ACTIONS(2882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130454,7 +143481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2944), 39, + ACTIONS(2884), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130494,15 +143521,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17236] = 5, + [16125] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(2946), 7, + ACTIONS(2886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130510,7 +143537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2948), 39, + ACTIONS(2888), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130550,15 +143577,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17297] = 5, + [16186] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(2950), 7, + ACTIONS(2894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130566,7 +143593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2952), 39, + ACTIONS(2896), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130606,15 +143633,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17358] = 5, + [16247] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(2954), 7, + ACTIONS(2898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130622,7 +143649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2956), 39, + ACTIONS(2900), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130662,15 +143689,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17419] = 5, + [16308] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + ACTIONS(4078), 1, + anon_sym_COLON_COLON, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(2958), 7, + ACTIONS(1461), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_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), 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, + [16371] = 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(2918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130678,7 +143762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2960), 39, + ACTIONS(2920), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130718,15 +143802,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17480] = 5, + [16432] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(2962), 7, + ACTIONS(2588), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130734,7 +143818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2964), 39, + ACTIONS(2590), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130774,15 +143858,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17541] = 5, + [16493] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(2966), 7, + ACTIONS(2934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130790,7 +143874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2968), 39, + ACTIONS(2936), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130830,15 +143914,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17602] = 5, + [16554] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(2970), 7, + ACTIONS(2540), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130846,7 +143930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2972), 39, + ACTIONS(2542), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130886,15 +143970,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17663] = 5, + [16615] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(2978), 7, + ACTIONS(2942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130902,7 +143986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2980), 39, + ACTIONS(2944), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130942,15 +144026,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17724] = 5, + [16676] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1473), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4026), 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_EQ, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(4024), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + 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, + [16737] = 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(2986), 7, + ACTIONS(2954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130958,7 +144098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2988), 39, + ACTIONS(2956), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130998,15 +144138,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17785] = 5, + [16798] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(2990), 7, + ACTIONS(2958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131014,7 +144154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2992), 39, + ACTIONS(2960), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131054,15 +144194,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17846] = 5, + [16859] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1336), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(2998), 7, + ACTIONS(2962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131070,7 +144210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3000), 39, + ACTIONS(2964), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131110,15 +144250,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17907] = 5, + [16920] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1337), 2, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3002), 7, + ACTIONS(2966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131126,7 +144266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3004), 39, + ACTIONS(2968), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131166,15 +144306,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17968] = 5, + [16981] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(3006), 7, + ACTIONS(2970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131182,7 +144322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3008), 39, + ACTIONS(2972), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131222,15 +144362,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18029] = 5, + [17042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, - ACTIONS(3010), 7, + ACTIONS(3034), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131238,7 +144378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3012), 39, + ACTIONS(3036), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131278,15 +144418,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18090] = 5, + [17103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3018), 7, + ACTIONS(2974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131294,7 +144434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3020), 39, + ACTIONS(2976), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131334,15 +144474,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18151] = 5, + [17164] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3022), 7, + ACTIONS(2978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131350,7 +144490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3024), 39, + ACTIONS(2980), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131390,15 +144530,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18212] = 5, + [17225] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(3026), 7, + ACTIONS(2984), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131406,7 +144546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3028), 39, + ACTIONS(2986), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131446,15 +144586,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18273] = 5, + [17286] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3034), 7, + ACTIONS(2988), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131462,7 +144602,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3036), 39, + ACTIONS(2990), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17347] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1484), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2992), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2994), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131502,15 +144698,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18334] = 5, + [17408] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3038), 7, + ACTIONS(2996), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131518,7 +144714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3040), 39, + ACTIONS(2998), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131558,15 +144754,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18395] = 5, + [17469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(2480), 7, + ACTIONS(3000), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131574,7 +144770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2482), 39, + ACTIONS(3002), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131614,15 +144810,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18456] = 5, + [17530] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1487), 2, sym_line_comment, sym_block_comment, - ACTIONS(2428), 7, + ACTIONS(3004), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131630,7 +144826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2430), 39, + ACTIONS(3006), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131670,15 +144866,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18517] = 5, + [17591] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(2542), 7, + ACTIONS(3008), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131686,7 +144882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2544), 39, + ACTIONS(3010), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131726,15 +144922,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18578] = 5, + [17652] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(1818), 7, + ACTIONS(3012), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131742,7 +144938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1820), 39, + ACTIONS(3014), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131782,15 +144978,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18639] = 5, + [17713] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1490), 2, sym_line_comment, sym_block_comment, - ACTIONS(1822), 7, + ACTIONS(3024), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131798,7 +144994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1824), 39, + ACTIONS(3026), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131838,15 +145034,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18700] = 5, + [17774] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(1826), 7, + ACTIONS(3038), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131854,7 +145050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1828), 39, + ACTIONS(3040), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131894,15 +145090,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18761] = 5, + [17835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1492), 2, sym_line_comment, sym_block_comment, - ACTIONS(1830), 7, + ACTIONS(3042), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131910,7 +145106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1832), 39, + ACTIONS(3044), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131950,127 +145146,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18822] = 5, + [17896] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, - ACTIONS(3712), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3710), 31, + ACTIONS(3046), 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, - [18883] = 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(3716), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3714), 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, - [18944] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3048), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17957] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(1846), 7, + ACTIONS(3050), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132078,7 +145218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1848), 39, + ACTIONS(3052), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132118,15 +145258,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19005] = 5, + [18018] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(1850), 7, + ACTIONS(3054), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132134,7 +145274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1852), 39, + ACTIONS(3056), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132174,15 +145314,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19066] = 5, + [18079] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(1854), 7, + ACTIONS(3058), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132190,7 +145330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1856), 39, + ACTIONS(3060), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132230,15 +145370,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19127] = 5, + [18140] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(1858), 7, + ACTIONS(3062), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132246,7 +145386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1860), 39, + ACTIONS(3064), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132286,15 +145426,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19188] = 5, + [18201] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(1862), 7, + ACTIONS(3074), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132302,7 +145442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1864), 39, + ACTIONS(3076), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132342,15 +145482,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19249] = 5, + [18262] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 7, + ACTIONS(3078), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132358,7 +145498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1868), 39, + ACTIONS(3080), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132398,15 +145538,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19310] = 5, + [18323] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1500), 2, sym_line_comment, sym_block_comment, - ACTIONS(1870), 7, + ACTIONS(3082), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132414,7 +145554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1872), 39, + ACTIONS(3084), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132454,15 +145594,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19371] = 5, + [18384] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1501), 2, sym_line_comment, sym_block_comment, - ACTIONS(1874), 7, + ACTIONS(3086), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132470,7 +145610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1876), 39, + ACTIONS(3088), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132510,15 +145650,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19432] = 5, + [18445] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(1878), 7, + ACTIONS(3102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132526,7 +145666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1880), 39, + ACTIONS(3104), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132566,15 +145706,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19493] = 5, + [18506] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(1882), 7, + ACTIONS(3110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132582,7 +145722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1884), 39, + ACTIONS(3112), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132622,15 +145762,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19554] = 5, + [18567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(1890), 7, + ACTIONS(3114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132638,7 +145778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1892), 39, + ACTIONS(3116), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132678,15 +145818,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19615] = 5, + [18628] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + STATE(1505), 2, sym_line_comment, sym_block_comment, - ACTIONS(1898), 7, + ACTIONS(3118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132694,7 +145834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1900), 39, + ACTIONS(3120), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132734,15 +145874,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19676] = 5, + [18689] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(1902), 7, + ACTIONS(3122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132750,7 +145890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1904), 39, + ACTIONS(3124), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132790,15 +145930,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19737] = 5, + [18750] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + ACTIONS(4080), 1, + anon_sym_LBRACE, + STATE(1507), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3967), 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(3969), 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, + [18813] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(1906), 7, + ACTIONS(3130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132806,7 +146003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1908), 39, + ACTIONS(3132), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132846,15 +146043,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19798] = 5, + [18874] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(1910), 7, + ACTIONS(3134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132862,7 +146059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1912), 39, + ACTIONS(3136), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132902,15 +146099,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19859] = 5, + [18935] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(1914), 7, + ACTIONS(3138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132918,7 +146115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1916), 39, + ACTIONS(3140), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132958,15 +146155,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19920] = 5, + [18996] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, + STATE(1511), 2, sym_line_comment, sym_block_comment, - ACTIONS(1918), 7, + ACTIONS(3066), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132974,7 +146171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1920), 39, + ACTIONS(3068), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133014,15 +146211,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19981] = 5, + [19057] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(1922), 7, + ACTIONS(3142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133030,7 +146227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1924), 39, + ACTIONS(3144), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133070,23 +146267,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20042] = 5, + [19118] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1513), 2, sym_line_comment, sym_block_comment, - ACTIONS(1926), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3993), 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_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1928), 39, + ACTIONS(3991), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133104,37 +146309,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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, - [20103] = 5, + [19179] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1514), 2, sym_line_comment, sym_block_comment, - ACTIONS(1930), 7, + ACTIONS(3146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133142,7 +146339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1932), 39, + ACTIONS(3148), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133182,127 +146379,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20164] = 5, + [19240] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(1934), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(1585), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_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(1936), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20225] = 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(1938), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1587), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1940), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20286] = 5, + 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, + [19301] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(1942), 7, + ACTIONS(3150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133310,7 +146451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1944), 39, + ACTIONS(3152), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133350,15 +146491,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20347] = 5, + [19362] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1377), 2, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(1946), 7, + ACTIONS(3158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133366,7 +146507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1948), 39, + ACTIONS(3160), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133406,15 +146547,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20408] = 5, + [19423] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 7, + ACTIONS(3162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133422,7 +146563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1952), 39, + ACTIONS(3164), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133462,15 +146603,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20469] = 5, + [19484] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(1954), 7, + ACTIONS(2592), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133478,7 +146619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1956), 39, + ACTIONS(2594), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133518,15 +146659,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20530] = 5, + [19545] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1380), 2, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(1958), 7, + ACTIONS(3178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133534,7 +146675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1960), 39, + ACTIONS(3180), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133574,15 +146715,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20591] = 5, + [19606] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1381), 2, + STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(1962), 7, + ACTIONS(3194), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133590,7 +146731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1964), 39, + ACTIONS(3196), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133630,71 +146771,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20652] = 5, + [19667] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1522), 2, sym_line_comment, sym_block_comment, - ACTIONS(1966), 7, + ACTIONS(4084), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4082), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_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_POUND, - sym_metavariable, - ACTIONS(1968), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20713] = 5, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [19728] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1383), 2, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(1970), 7, + ACTIONS(3070), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133702,7 +146843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1972), 39, + ACTIONS(3072), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133742,15 +146883,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20774] = 5, + [19789] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1384), 2, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(1978), 7, + ACTIONS(3370), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133758,7 +146899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1980), 39, + ACTIONS(3372), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133798,15 +146939,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20835] = 5, + [19850] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1385), 2, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(1982), 7, + ACTIONS(4088), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4086), 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, + [19911] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1526), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3090), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133814,7 +147011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1984), 39, + ACTIONS(3092), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133854,23 +147051,184 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20896] = 5, + [19972] = 12, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + ACTIONS(3888), 1, + anon_sym_COLON_COLON, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(4008), 1, + anon_sym_BANG, + ACTIONS(4090), 1, + anon_sym_move, + STATE(410), 1, + sym_block, + STATE(3965), 1, + sym_label, + STATE(1527), 2, sym_line_comment, sym_block_comment, - ACTIONS(1986), 7, + ACTIONS(3884), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3882), 24, 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, + anon_sym_as, + [20047] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_BANG, + ACTIONS(3888), 1, + anon_sym_COLON_COLON, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(4092), 1, + anon_sym_move, + STATE(497), 1, + sym_block, + STATE(4253), 1, + sym_label, + STATE(1528), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3884), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3882), 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, + [20122] = 21, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1669), 1, + anon_sym_DASH, + ACTIONS(1695), 1, + aux_sym_string_literal_token1, + ACTIONS(1703), 1, + sym__raw_string_literal_start, + ACTIONS(3850), 1, + anon_sym_if, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4098), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(4102), 1, sym_metavariable, - ACTIONS(1988), 39, + STATE(3097), 1, + sym_scoped_identifier, + STATE(3407), 1, + sym__literal_pattern, + STATE(4083), 1, + sym_bracketed_type, + STATE(4100), 1, + sym_generic_type_with_turbofish, + ACTIONS(1697), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3848), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1529), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1693), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(4100), 3, + sym_self, + sym_super, + sym_crate, + STATE(2755), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(4096), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133888,37 +147246,18 @@ 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, - [20957] = 5, + [20215] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1387), 2, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 7, + ACTIONS(2596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133926,7 +147265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1992), 39, + ACTIONS(2598), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133966,15 +147305,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21018] = 5, + [20276] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1388), 2, + ACTIONS(4104), 1, + anon_sym_COLON_COLON, + STATE(1531), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3973), 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, + [20339] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1532), 2, sym_line_comment, sym_block_comment, - ACTIONS(1994), 7, + ACTIONS(3238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133982,7 +147378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1996), 39, + ACTIONS(3240), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134022,15 +147418,129 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21079] = 5, + [20400] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + ACTIONS(4106), 1, + anon_sym_COLON_COLON, + STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(1998), 7, + ACTIONS(3975), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3973), 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, + [20463] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4056), 1, + anon_sym_COLON_COLON, + STATE(1534), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3973), 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, + [20526] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1535), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134038,7 +147548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2000), 39, + ACTIONS(3248), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134078,15 +147588,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21140] = 5, + [20587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(2002), 7, + ACTIONS(3250), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134094,7 +147604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2004), 39, + ACTIONS(3252), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134134,15 +147644,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21201] = 5, + [20648] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1391), 2, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(2006), 7, + ACTIONS(3254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134150,7 +147660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2008), 39, + ACTIONS(3256), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134190,15 +147700,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21262] = 5, + [20709] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1392), 2, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(2010), 7, + ACTIONS(3258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134206,7 +147716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2012), 39, + ACTIONS(3260), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134246,23 +147756,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21323] = 5, + [20770] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1393), 2, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(2014), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(4110), 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_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2016), 39, + ACTIONS(4108), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134280,37 +147798,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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, - [21384] = 5, + [20831] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + STATE(1540), 2, sym_line_comment, sym_block_comment, - ACTIONS(2018), 7, + ACTIONS(3098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134318,7 +147828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2020), 39, + ACTIONS(3100), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134358,23 +147868,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21445] = 5, + [20892] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(2022), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(4114), 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_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2024), 39, + ACTIONS(4112), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134392,37 +147910,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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, - [21506] = 5, + [20953] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, + STATE(1542), 2, sym_line_comment, sym_block_comment, - ACTIONS(2026), 7, + ACTIONS(2810), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134430,7 +147940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2028), 39, + ACTIONS(2812), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134470,15 +147980,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21567] = 5, + [21014] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(2030), 7, + ACTIONS(2906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134486,7 +147996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2032), 39, + ACTIONS(2908), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134526,15 +148036,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21628] = 5, + [21075] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + STATE(1544), 2, sym_line_comment, sym_block_comment, - ACTIONS(2034), 7, + ACTIONS(3262), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134542,7 +148052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2036), 39, + ACTIONS(3264), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134582,15 +148092,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21689] = 5, + [21136] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1399), 2, + STATE(1545), 2, sym_line_comment, sym_block_comment, - ACTIONS(2038), 7, + ACTIONS(3266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134598,7 +148108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2040), 39, + ACTIONS(3268), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134638,15 +148148,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21750] = 5, + [21197] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1400), 2, + STATE(1546), 2, sym_line_comment, sym_block_comment, - ACTIONS(2042), 7, + ACTIONS(3270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134654,7 +148164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2044), 39, + ACTIONS(3272), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134694,15 +148204,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21811] = 5, + [21258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(2046), 7, + ACTIONS(3274), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134710,7 +148220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2048), 39, + ACTIONS(3276), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134750,15 +148260,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21872] = 5, + [21319] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1402), 2, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(2050), 7, + ACTIONS(3278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134766,7 +148276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2052), 39, + ACTIONS(3280), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134806,15 +148316,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21933] = 5, + [21380] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(2054), 7, + ACTIONS(3282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134822,7 +148332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2056), 39, + ACTIONS(3284), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134862,15 +148372,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21994] = 5, + [21441] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + STATE(1550), 2, sym_line_comment, sym_block_comment, - ACTIONS(2058), 7, + ACTIONS(3286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134878,7 +148388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2060), 39, + ACTIONS(3288), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134918,15 +148428,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22055] = 5, + [21502] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(2066), 7, + ACTIONS(3290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134934,7 +148444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2068), 39, + ACTIONS(3292), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134974,135 +148484,58 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22116] = 5, + [21563] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1406), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2070), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1669), 1, + anon_sym_DASH, + ACTIONS(1695), 1, + aux_sym_string_literal_token1, + ACTIONS(1703), 1, + sym__raw_string_literal_start, + ACTIONS(3838), 1, + anon_sym_if, + ACTIONS(4098), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2072), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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(4116), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [22177] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1407), 2, + ACTIONS(4122), 1, + sym_metavariable, + STATE(2989), 1, + sym_scoped_identifier, + STATE(3300), 1, + sym__literal_pattern, + STATE(4083), 1, + sym_bracketed_type, + STATE(4100), 1, + sym_generic_type_with_turbofish, + ACTIONS(1697), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3836), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1552), 2, sym_line_comment, sym_block_comment, - ACTIONS(2074), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2076), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_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(1693), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(4120), 3, sym_self, sym_super, sym_crate, - [22238] = 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(2078), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2080), 39, + STATE(2755), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(4118), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135120,41 +148553,18 @@ 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, - [22299] = 7, + [21656] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1428), 1, - sym_label, - STATE(1409), 2, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(4126), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135170,7 +148580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 29, + ACTIONS(4124), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135198,30 +148608,27 @@ 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, - [22364] = 5, + [21717] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(2612), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(3294), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, sym_metavariable, - ACTIONS(2614), 34, + ACTIONS(3296), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135242,45 +148649,77 @@ 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, - [22425] = 5, + [21778] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + ACTIONS(1669), 1, + anon_sym_DASH, + ACTIONS(1695), 1, + aux_sym_string_literal_token1, + ACTIONS(1703), 1, + sym__raw_string_literal_start, + ACTIONS(3862), 1, + anon_sym_if, + ACTIONS(4098), 1, + anon_sym_COLON_COLON, + ACTIONS(4128), 1, + sym_identifier, + ACTIONS(4134), 1, + sym_metavariable, + STATE(3086), 1, + sym_scoped_identifier, + STATE(3327), 1, + sym__literal_pattern, + STATE(4083), 1, + sym_bracketed_type, + STATE(4100), 1, + sym_generic_type_with_turbofish, + ACTIONS(1697), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3860), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1555), 2, sym_line_comment, sym_block_comment, - ACTIONS(2114), 15, - sym__raw_string_literal_start, + ACTIONS(1693), 3, 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_EQ, - anon_sym_COLON_COLON, - anon_sym_POUND, sym_integer_literal, - aux_sym_string_literal_token1, sym_char_literal, - sym_metavariable, - ACTIONS(2116), 31, + ACTIONS(4132), 3, + sym_self, + sym_super, + sym_crate, + STATE(2755), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(4130), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135298,141 +148737,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - 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, - [22486] = 5, + [21871] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1412), 2, + STATE(1556), 2, sym_line_comment, sym_block_comment, - ACTIONS(3724), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4138), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4136), 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_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3722), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - 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, - [22547] = 5, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [21932] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1413), 2, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(3728), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4142), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4140), 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_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3726), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - 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, - [22608] = 5, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [21993] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1414), 2, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(2612), 7, + ACTIONS(3298), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135440,7 +148868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2614), 39, + ACTIONS(3300), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135480,31 +148908,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22669] = 5, + [22054] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1415), 2, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(2612), 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(3302), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2614), 31, + ACTIONS(3304), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135522,33 +148942,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_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, - [22730] = 7, + [22115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3732), 1, - anon_sym_LPAREN, - STATE(1523), 1, - sym_arguments, - STATE(1416), 2, + STATE(1560), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, + ACTIONS(3830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135564,13 +148988,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 29, + ACTIONS(3832), 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, @@ -135594,29 +149020,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22795] = 12, + [22176] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3736), 1, - anon_sym_move, - STATE(484), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(1417), 2, + ACTIONS(4148), 1, + anon_sym_DASH_GT, + STATE(1561), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(4146), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135632,9 +149046,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 24, + ACTIONS(4144), 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, @@ -135656,18 +149074,76 @@ 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, - [22870] = 6, + anon_sym_else, + [22239] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3738), 1, + STATE(1562), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3306), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, anon_sym_COLON_COLON, - STATE(1418), 2, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3308), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22300] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4056), 1, + anon_sym_COLON_COLON, + STATE(1563), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3983), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135683,7 +149159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(3981), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135714,15 +149190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22933] = 5, + [22363] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1419), 2, + STATE(1564), 2, sym_line_comment, sym_block_comment, - ACTIONS(2444), 7, + ACTIONS(3310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135730,7 +149206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2446), 39, + ACTIONS(3312), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135770,77 +149246,73 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22994] = 12, + [22424] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3740), 1, - anon_sym_BANG, - ACTIONS(3742), 1, - anon_sym_COLON_COLON, - ACTIONS(3744), 1, - anon_sym_move, - STATE(1779), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(1420), 2, + STATE(1565), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(3318), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3412), 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, - [23068] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3320), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22485] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1421), 2, + ACTIONS(4056), 1, + anon_sym_COLON_COLON, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(3748), 15, + ACTIONS(3989), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135856,7 +149328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3746), 30, + ACTIONS(3987), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135887,125 +149359,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23128] = 5, + [22548] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1422), 2, + STATE(1567), 2, sym_line_comment, sym_block_comment, - ACTIONS(3752), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3750), 30, + ACTIONS(3322), 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, - [23188] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3324), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22609] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1568), 2, sym_line_comment, sym_block_comment, - ACTIONS(3756), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3754), 30, + ACTIONS(3126), 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, - [23248] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3128), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22670] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, + ACTIONS(4154), 1, + anon_sym_DASH_GT, + STATE(1569), 2, sym_line_comment, sym_block_comment, - ACTIONS(907), 15, + ACTIONS(4152), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136021,7 +149497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(909), 30, + ACTIONS(4150), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136052,125 +149528,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23308] = 5, + [22733] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1425), 2, + STATE(1570), 2, sym_line_comment, sym_block_comment, - ACTIONS(3760), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3758), 30, + ACTIONS(3342), 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, - [23368] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3344), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22794] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + STATE(1571), 2, sym_line_comment, sym_block_comment, - ACTIONS(3764), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3762), 30, + ACTIONS(2600), 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, - [23428] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2602), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22855] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + ACTIONS(4160), 1, + anon_sym_DASH_GT, + STATE(1572), 2, sym_line_comment, sym_block_comment, - ACTIONS(3768), 15, + ACTIONS(4158), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136186,7 +149666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3766), 30, + ACTIONS(4156), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136217,291 +149697,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23488] = 5, + [22918] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1428), 2, + STATE(1573), 2, sym_line_comment, sym_block_comment, - ACTIONS(3772), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3770), 30, + ACTIONS(3358), 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, - [23548] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3360), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22979] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1574), 2, sym_line_comment, sym_block_comment, - ACTIONS(1037), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1039), 30, + ACTIONS(2772), 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, - [23608] = 6, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2774), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23040] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1430), 2, + STATE(1575), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3774), 28, + ACTIONS(3362), 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, - [23670] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3364), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23101] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + STATE(1576), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3774), 30, + ACTIONS(3366), 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, - [23730] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3368), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23162] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1432), 2, + STATE(1577), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3780), 30, + ACTIONS(1958), 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, - [23790] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1960), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23223] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(1755), 1, + sym_label, + STATE(1578), 2, sym_line_comment, sym_block_comment, - ACTIONS(3786), 15, + ACTIONS(4164), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136517,7 +150005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3784), 30, + ACTIONS(4162), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136545,76 +150033,77 @@ 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, - [23850] = 8, + [23288] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - STATE(1434), 2, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(3792), 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(3788), 28, + ACTIONS(3374), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23916] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3376), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23349] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + ACTIONS(4166), 1, + anon_sym_else, + STATE(1799), 1, + sym_else_clause, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(3800), 15, + ACTIONS(1415), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136630,7 +150119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3798), 30, + ACTIONS(1413), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136660,354 +150149,13692 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [23976] = 5, + [23414] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1581), 2, sym_line_comment, sym_block_comment, - ACTIONS(1517), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1515), 30, + ACTIONS(3378), 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, - [24036] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3380), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23475] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1582), 2, sym_line_comment, sym_block_comment, - ACTIONS(3804), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3802), 30, + ACTIONS(3382), 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, - [24096] = 8, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3384), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23536] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - STATE(1438), 2, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(3808), 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(3806), 28, + ACTIONS(3386), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24162] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3388), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23597] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(3812), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3810), 30, + ACTIONS(2818), 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, - [24222] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2820), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23658] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(3816), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3814), 30, + ACTIONS(3390), 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, - [24282] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3392), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23719] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(1425), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1423), 30, + ACTIONS(3394), 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, - [24342] = 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(3820), 15, - anon_sym_PLUS, - anon_sym_STAR, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3396), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23780] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1587), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3398), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3400), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23841] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1588), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3402), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3404), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23902] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1589), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2826), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2828), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23963] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1590), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2890), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2892), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24024] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1591), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3016), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3018), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24085] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1592), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3020), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3022), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24146] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1593), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3406), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3408), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24207] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1594), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3094), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3096), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24268] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1595), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3410), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3412), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24329] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1596), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3414), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3416), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24390] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1597), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3422), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3424), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24451] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1598), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3426), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3428), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24512] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1599), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3438), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3440), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24573] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1600), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3442), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3444), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24634] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1601), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3446), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3448), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24695] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1602), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3450), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3452), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24756] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1603), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3458), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3460), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24817] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1604), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3462), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3464), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24878] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1605), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3470), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3472), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24939] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1606), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3106), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3108), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25000] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1607), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3174), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3176), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25061] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1608), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3474), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3476), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25122] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1609), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3478), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3480), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25183] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1610), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2636), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2638), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25244] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1611), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2688), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2690), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25305] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1612), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2814), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2816), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25366] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1613), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3330), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3332), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25427] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1614), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2048), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2050), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25488] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1615), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2136), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2138), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25549] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1616), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2252), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2254), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25610] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1617), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3182), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3184), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25671] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1618), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2376), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2378), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25732] = 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(2412), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2414), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25793] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1620), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2416), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2418), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25854] = 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(3186), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3188), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25915] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1622), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2488), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2490), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25976] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1623), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3190), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3192), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26037] = 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(2492), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2494), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26098] = 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(2496), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2498), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26159] = 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(2504), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2506), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26220] = 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(2524), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2526), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26281] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1628), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2548), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2550), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26342] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1629), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2552), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2554), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26403] = 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(2556), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2558), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26464] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1631), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2572), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2574), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26525] = 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(2652), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2654), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26586] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1633), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2656), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2658), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26647] = 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(4170), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4168), 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, + [26708] = 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(3242), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3244), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26769] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1636), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3338), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3340), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26830] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1637), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4174), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4172), 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, + [26891] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1638), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3346), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3348), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26952] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1639), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2704), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2706), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27013] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1640), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2708), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2710), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27074] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1641), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2712), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2714), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27135] = 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(2716), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2718), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27196] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1643), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2720), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2722), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27257] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1644), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2724), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2726), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27318] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1645), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2728), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2730), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27379] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1646), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2732), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2734), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27440] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1647), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2640), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2642), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27501] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1648), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2736), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2738), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27562] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1649), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2648), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2650), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27623] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1650), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2740), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2742), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27684] = 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(2744), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2746), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27745] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1652), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2748), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2750), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27806] = 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(2752), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2754), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27867] = 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(2760), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2762), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27928] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1655), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3935), 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(3933), 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, + [27989] = 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(2768), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2770), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28050] = 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(2776), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2778), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28111] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1658), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4178), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4176), 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, + [28172] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1659), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2780), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2782), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28233] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1660), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2786), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2788), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28294] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1661), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2790), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2792), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28355] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1662), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2794), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2796), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28416] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4184), 1, + anon_sym_DASH_GT, + STATE(1663), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4182), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4180), 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, + [28479] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4190), 1, + anon_sym_DASH_GT, + STATE(1664), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4188), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4186), 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, + [28542] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4196), 1, + anon_sym_DASH_GT, + STATE(1665), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4194), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4192), 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, + [28605] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1666), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2798), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2800), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28666] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1667), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2838), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2840), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28727] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1668), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2854), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2856), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28788] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1669), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2500), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2502), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28849] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1670), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2508), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2510), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28910] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1671), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2512), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2514), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28971] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1672), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2604), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2606), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29032] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1673), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2516), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2518), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29093] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1674), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2902), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2904), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29154] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1675), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2520), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2522), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29215] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1676), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2528), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2530), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29276] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1677), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2532), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2534), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29337] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1678), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2536), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2538), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29398] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1679), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2020), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2022), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29459] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1680), 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, + anon_sym_PIPE, + anon_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), 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, + [29519] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1681), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4200), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4198), 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, + [29579] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1682), 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, + anon_sym_PIPE, + anon_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), 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, + [29639] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + STATE(1683), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4206), 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(4202), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29705] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1684), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4214), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4212), 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, + [29765] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1685), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4218), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4216), 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, + [29825] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1686), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4222), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4220), 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, + [29885] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1687), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4226), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4224), 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, + [29945] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1688), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4230), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4228), 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, + [30005] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1689), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4234), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4232), 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, + [30065] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1690), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4238), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4236), 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, + [30125] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1691), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4242), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4240), 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, + [30185] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1692), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3983), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3981), 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, + [30245] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1693), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(961), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(963), 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, + [30305] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1694), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4246), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4244), 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, + [30365] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1695), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3989), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3987), 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, + [30425] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1696), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4250), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4248), 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, + [30485] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3898), 1, + anon_sym_BANG, + ACTIONS(4252), 1, + anon_sym_COLON_COLON, + STATE(1697), 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, + anon_sym_PIPE, + anon_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), 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, + [30549] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1698), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4256), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4254), 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, + [30609] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1699), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1539), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1537), 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, + [30669] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + STATE(1700), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4260), 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(4258), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30735] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(4262), 1, + anon_sym_BANG, + ACTIONS(4264), 1, + anon_sym_COLON_COLON, + ACTIONS(4266), 1, + anon_sym_move, + STATE(2065), 1, + sym_block, + STATE(4254), 1, + sym_label, + STATE(1701), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3884), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3882), 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, + [30809] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1702), 2, + sym_line_comment, + sym_block_comment, + 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_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, + [30869] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1703), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1501), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1499), 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, + [30929] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1704), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4270), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4268), 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, + [30989] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1705), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4274), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4272), 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, + [31049] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1706), 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, + anon_sym_PIPE, + anon_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), 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, + [31109] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1707), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1509), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1507), 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, + [31169] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1708), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4278), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4276), 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, + [31229] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4282), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1709), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4284), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4280), 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, + [31291] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1710), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4288), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4286), 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, + [31351] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1711), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4292), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4290), 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, + [31411] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1712), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4296), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4294), 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, + [31471] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1713), 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, + anon_sym_PIPE, + anon_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), 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, + [31531] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1714), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4300), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4298), 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, + [31591] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1715), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1447), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1445), 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, + [31651] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1716), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4284), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4280), 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, + [31711] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1717), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4304), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4302), 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, + [31771] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1718), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1425), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1423), 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, + [31831] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1719), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1525), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1523), 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, + [31891] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1720), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4308), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4306), 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, + [31951] = 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(1441), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1439), 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, + [32011] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1722), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4070), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4066), 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, + [32071] = 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(4312), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4310), 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, + [32131] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1724), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4316), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4314), 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, + [32191] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1725), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1481), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_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), 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, + [32251] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1726), 2, + sym_line_comment, + sym_block_comment, + 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_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, + [32311] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1727), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4318), 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, + [32371] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1728), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4324), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4322), 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, + [32431] = 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(4328), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4326), 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, + [32491] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1730), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4332), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4330), 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, + [32551] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1731), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4336), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4334), 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, + [32611] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1732), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4340), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4338), 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, + [32671] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1733), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4344), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4342), 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, + [32731] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3886), 1, + anon_sym_BANG, + ACTIONS(3888), 1, + anon_sym_COLON_COLON, + STATE(1734), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3884), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3882), 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, + [32795] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + STATE(1735), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4348), 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(4346), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [32861] = 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(1041), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1043), 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, + [32921] = 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(1429), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1427), 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, + [32981] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1738), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1473), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1471), 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, + [33041] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1739), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4352), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4350), 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, + [33101] = 23, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1601), 1, + anon_sym_LBRACK, + ACTIONS(3796), 1, + anon_sym_SQUOTE, + ACTIONS(3941), 1, + sym_identifier, + ACTIONS(3945), 1, + anon_sym_LPAREN, + ACTIONS(3947), 1, + anon_sym_STAR, + ACTIONS(3951), 1, + anon_sym_AMP, + ACTIONS(3953), 1, + anon_sym_COLON_COLON, + ACTIONS(3957), 1, + anon_sym_for, + ACTIONS(3961), 1, + sym_metavariable, + STATE(2865), 1, + sym_where_predicate, + STATE(3170), 1, + sym_scoped_type_identifier, + STATE(3359), 1, + sym_generic_type, + STATE(4014), 1, + sym_scoped_identifier, + STATE(4087), 1, + sym_bracketed_type, + STATE(4231), 1, + sym_generic_type_with_turbofish, + STATE(1740), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3955), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3959), 3, + sym_self, + sym_super, + sym_crate, + STATE(3633), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3949), 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, + [33197] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1741), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4356), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4354), 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, + [33257] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + STATE(1742), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4360), 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(4358), 27, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_else, + [33325] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1743), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4366), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4364), 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, + [33385] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1744), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4370), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4368), 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, + [33445] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1745), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4374), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4372), 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, + [33505] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1746), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4378), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4376), 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, + [33565] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1747), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4382), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4380), 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, + [33625] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1748), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1433), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1431), 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, + [33685] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1749), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4386), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4384), 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, + [33745] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1750), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4390), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4388), 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, + [33805] = 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(1529), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1527), 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, + [33865] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1752), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(901), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(903), 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, + [33925] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1753), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1535), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1533), 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, + [33985] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1754), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4394), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4392), 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, + [34045] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1755), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4398), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4396), 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, + [34105] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1756), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4402), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4400), 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, + [34165] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1757), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1437), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1435), 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, + [34225] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1758), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4406), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4404), 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, + [34285] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1759), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4410), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4408), 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, + [34345] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1760), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4414), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4412), 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, + [34405] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1761), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4418), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4416), 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, + [34465] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1762), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1513), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1511), 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, + [34525] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1763), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1517), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1515), 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, + [34585] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1764), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4422), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4420), 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, + [34645] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + STATE(1765), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4426), 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(4424), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [34711] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1766), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4430), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4428), 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, + [34771] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1767), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4434), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4432), 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, + [34831] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1768), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4438), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4436), 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, + [34891] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1769), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(979), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(981), 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, + [34951] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1770), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3975), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3973), 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, + [35011] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1771), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1421), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1419), 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, + [35071] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1772), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3818), 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(3816), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_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_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35131] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1773), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3822), 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(3820), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_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_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35191] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1774), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4442), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4440), 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, + [35251] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1775), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4446), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4444), 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, + [35311] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1776), 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, + [35371] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1777), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4450), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4448), 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, + [35431] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1778), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4454), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4452), 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, + [35491] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1779), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4458), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4456), 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, + [35551] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1780), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4462), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4460), 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, + [35611] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1781), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4466), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4464), 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, + [35671] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1782), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1465), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1463), 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, + [35731] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1783), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(991), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(993), 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, + [35791] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1784), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4470), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4468), 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, + [35851] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1785), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4474), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4472), 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, + [35911] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1786), 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, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_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), 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, + [35971] = 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(1485), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_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), 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, + [36031] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4476), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1788), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4284), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4280), 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, + [36093] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1789), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4480), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4478), 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, + [36153] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1790), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1497), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1495), 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, + [36213] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1791), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1505), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1503), 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, + [36273] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1792), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1521), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1519), 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, + [36333] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1793), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4484), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4482), 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, + [36393] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1794), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4488), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4486), 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, + [36453] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1795), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1037), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1039), 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, + [36513] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1796), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4492), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4490), 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, + [36573] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1797), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3979), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3977), 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, + [36633] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1798), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4496), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4494), 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, + [36693] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1799), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1477), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1475), 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, + [36753] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1800), 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, + anon_sym_PIPE, + anon_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), 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, + [36813] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1801), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4500), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4498), 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, + [36873] = 25, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1151), 1, + anon_sym_extern, + ACTIONS(1621), 1, + anon_sym_fn, + ACTIONS(3953), 1, + anon_sym_COLON_COLON, + ACTIONS(3961), 1, + sym_metavariable, + ACTIONS(4502), 1, + sym_identifier, + ACTIONS(4506), 1, + anon_sym_default, + ACTIONS(4508), 1, + anon_sym_for, + STATE(1869), 1, + sym_for_lifetimes, + STATE(2313), 1, + sym_generic_type, + STATE(2506), 1, + sym_scoped_type_identifier, + STATE(2605), 1, + aux_sym_function_modifiers_repeat1, + STATE(2804), 1, + sym_extern_modifier, + STATE(4014), 1, + sym_scoped_identifier, + STATE(4077), 1, + sym_function_modifiers, + STATE(4087), 1, + sym_bracketed_type, + STATE(4231), 1, + sym_generic_type_with_turbofish, + ACTIONS(3955), 2, + anon_sym_gen, + anon_sym_union, + STATE(1802), 2, + sym_line_comment, + sym_block_comment, + STATE(2340), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1135), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3959), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4504), 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, + [36972] = 25, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1151), 1, + anon_sym_extern, + ACTIONS(3662), 1, + anon_sym_fn, + ACTIONS(4510), 1, + sym_identifier, + ACTIONS(4514), 1, + anon_sym_COLON_COLON, + ACTIONS(4516), 1, + anon_sym_default, + ACTIONS(4518), 1, + anon_sym_for, + ACTIONS(4524), 1, + sym_metavariable, + STATE(1244), 1, + sym_scoped_type_identifier, + STATE(1566), 1, + sym_generic_type, + STATE(1900), 1, + sym_for_lifetimes, + STATE(2605), 1, + aux_sym_function_modifiers_repeat1, + STATE(2804), 1, + sym_extern_modifier, + STATE(4105), 1, + sym_scoped_identifier, + STATE(4141), 1, + sym_generic_type_with_turbofish, + STATE(4152), 1, + sym_bracketed_type, + STATE(4222), 1, + sym_function_modifiers, + ACTIONS(4520), 2, + anon_sym_gen, + anon_sym_union, + STATE(1695), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + STATE(1803), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1135), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(4522), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4512), 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, + [37071] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3886), 1, + anon_sym_BANG, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(3892), 1, + anon_sym_move, + ACTIONS(4526), 1, + anon_sym_COLON_COLON, + STATE(1786), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(1804), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3884), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3882), 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, + [37142] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4528), 1, + anon_sym_COLON_COLON, + STATE(1805), 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, + anon_sym_PIPE, + anon_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), 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, + [37203] = 25, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1141), 1, + anon_sym_fn, + ACTIONS(1151), 1, + anon_sym_extern, + ACTIONS(3682), 1, + anon_sym_for, + ACTIONS(3953), 1, + anon_sym_COLON_COLON, + ACTIONS(3961), 1, + sym_metavariable, + ACTIONS(4506), 1, + anon_sym_default, + ACTIONS(4530), 1, + sym_identifier, + STATE(1887), 1, + sym_for_lifetimes, + STATE(2281), 1, + sym_scoped_type_identifier, + STATE(2313), 1, + sym_generic_type, + STATE(2605), 1, + aux_sym_function_modifiers_repeat1, + STATE(2804), 1, + sym_extern_modifier, + STATE(4014), 1, + sym_scoped_identifier, + STATE(4087), 1, + sym_bracketed_type, + STATE(4231), 1, + sym_generic_type_with_turbofish, + STATE(4296), 1, + sym_function_modifiers, + ACTIONS(3955), 2, + anon_sym_gen, + anon_sym_union, + STATE(1806), 2, + sym_line_comment, + sym_block_comment, + STATE(2340), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1135), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3959), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4504), 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, + [37302] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3886), 1, + anon_sym_BANG, + ACTIONS(3892), 1, + anon_sym_move, + ACTIONS(4526), 1, + anon_sym_COLON_COLON, + STATE(1786), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(1807), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3884), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3882), 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, + [37371] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3888), 1, + anon_sym_COLON_COLON, + STATE(1808), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3884), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3882), 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, + [37432] = 25, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1151), 1, + anon_sym_extern, + ACTIONS(3626), 1, + anon_sym_fn, + ACTIONS(4532), 1, + sym_identifier, + ACTIONS(4536), 1, + anon_sym_COLON_COLON, + ACTIONS(4538), 1, + anon_sym_default, + ACTIONS(4540), 1, + anon_sym_for, + ACTIONS(4546), 1, + sym_metavariable, + STATE(1859), 1, + sym_scoped_type_identifier, + STATE(1883), 1, + sym_for_lifetimes, + STATE(1958), 1, + sym_generic_type, + STATE(2605), 1, + aux_sym_function_modifiers_repeat1, + STATE(2804), 1, + sym_extern_modifier, + STATE(4095), 1, + sym_function_modifiers, + STATE(4132), 1, + sym_scoped_identifier, + STATE(4150), 1, + sym_generic_type_with_turbofish, + STATE(4156), 1, + sym_bracketed_type, + ACTIONS(4542), 2, + anon_sym_gen, + anon_sym_union, + STATE(1809), 2, + sym_line_comment, + sym_block_comment, + STATE(2014), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1135), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(4544), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4534), 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, + [37531] = 17, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4360), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1810), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4358), 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, + [37613] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1669), 1, + anon_sym_DASH, + ACTIONS(1695), 1, + aux_sym_string_literal_token1, + ACTIONS(1703), 1, + sym__raw_string_literal_start, + ACTIONS(4098), 1, + anon_sym_COLON_COLON, + ACTIONS(4128), 1, + sym_identifier, + ACTIONS(4134), 1, + sym_metavariable, + STATE(3086), 1, + sym_scoped_identifier, + STATE(3327), 1, + sym__literal_pattern, + STATE(4083), 1, + sym_bracketed_type, + STATE(4100), 1, + sym_generic_type_with_turbofish, + ACTIONS(1697), 2, + anon_sym_true, + anon_sym_false, + STATE(1811), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1693), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(4132), 3, + sym_self, + sym_super, + sym_crate, + STATE(2755), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(4130), 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, + [37699] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4570), 1, + anon_sym_EQ, + ACTIONS(4572), 1, + anon_sym_DOT_DOT, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1812), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4564), 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, + [37789] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4578), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + STATE(1813), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4576), 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, + [37875] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3997), 1, + anon_sym_LBRACE, + ACTIONS(3999), 1, + anon_sym_COLON_COLON, + ACTIONS(4580), 1, + anon_sym_BANG, + STATE(1746), 1, + sym_field_initializer_list, + STATE(1814), 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, + anon_sym_PIPE, + anon_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), 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, + [37941] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4572), 1, + anon_sym_DOT_DOT, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1815), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 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, + [38031] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3876), 1, + anon_sym_BANG, + ACTIONS(4582), 1, + anon_sym_LPAREN, + ACTIONS(4584), 1, + anon_sym_COLON_COLON, + ACTIONS(4586), 1, + anon_sym_LT2, + STATE(1953), 1, + sym_type_arguments, + STATE(1961), 1, + sym_parameters, + STATE(1816), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3902), 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(3900), 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, + [38101] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1817), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4590), 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(4588), 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_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38159] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4572), 1, + anon_sym_DOT_DOT, + ACTIONS(4594), 1, + anon_sym_EQ, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1818), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4592), 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, + [38249] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(377), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1819), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(375), 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, + [38335] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3876), 1, + anon_sym_BANG, + ACTIONS(4582), 1, + anon_sym_LPAREN, + ACTIONS(4584), 1, + anon_sym_COLON_COLON, + ACTIONS(4586), 1, + anon_sym_LT2, + STATE(1953), 1, + sym_type_arguments, + STATE(1961), 1, + sym_parameters, + STATE(1820), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3874), 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(3870), 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, + [38405] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4572), 1, + anon_sym_DOT_DOT, + ACTIONS(4598), 1, + anon_sym_EQ, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1821), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4596), 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, + [38495] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4360), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4358), 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, + [38573] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4548), 2, + anon_sym_PLUS, anon_sym_DASH, + STATE(1823), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4360), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -137016,17 +163843,333 @@ 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(3818), 30, + ACTIONS(4358), 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, + [38643] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1669), 1, + anon_sym_DASH, + ACTIONS(1695), 1, + aux_sym_string_literal_token1, + ACTIONS(1703), 1, + sym__raw_string_literal_start, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4098), 1, + anon_sym_COLON_COLON, + ACTIONS(4102), 1, + sym_metavariable, + STATE(3097), 1, + sym_scoped_identifier, + STATE(3407), 1, + sym__literal_pattern, + STATE(4083), 1, + sym_bracketed_type, + STATE(4100), 1, + sym_generic_type_with_turbofish, + ACTIONS(1697), 2, + anon_sym_true, + anon_sym_false, + STATE(1824), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1693), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(4100), 3, + sym_self, + sym_super, + sym_crate, + STATE(2755), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(4096), 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, + [38729] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + STATE(1825), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4360), 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(4358), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [38797] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1669), 1, + anon_sym_DASH, + ACTIONS(1695), 1, + aux_sym_string_literal_token1, + ACTIONS(1703), 1, + sym__raw_string_literal_start, + ACTIONS(4098), 1, + anon_sym_COLON_COLON, + ACTIONS(4116), 1, + sym_identifier, + ACTIONS(4122), 1, + sym_metavariable, + STATE(2989), 1, + sym_scoped_identifier, + STATE(3300), 1, + sym__literal_pattern, + STATE(4083), 1, + sym_bracketed_type, + STATE(4100), 1, + sym_generic_type_with_turbofish, + ACTIONS(1697), 2, + anon_sym_true, + anon_sym_false, + STATE(1826), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1693), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(4120), 3, + sym_self, + sym_super, + sym_crate, + STATE(2755), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(4118), 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, + [38883] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1161), 1, + aux_sym_string_literal_token1, + ACTIONS(1171), 1, + sym__raw_string_literal_start, + ACTIONS(1884), 1, + anon_sym_COLON_COLON, + ACTIONS(3858), 1, + sym_identifier, + ACTIONS(3868), 1, + sym_metavariable, + STATE(2429), 1, + sym_scoped_identifier, + STATE(2480), 1, + sym__literal_pattern, + STATE(4179), 1, + sym_bracketed_type, + STATE(4258), 1, + sym_generic_type_with_turbofish, + ACTIONS(1163), 2, + anon_sym_true, + anon_sym_false, + STATE(1827), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1159), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3866), 3, + sym_self, + sym_super, + sym_crate, + STATE(2377), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3864), 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, + [38969] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1828), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4360), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4358), 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, @@ -137046,44 +164189,940 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_else, + [39043] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4572), 1, + anon_sym_DOT_DOT, + ACTIONS(4602), 1, + anon_sym_EQ, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1829), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4600), 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, + [39133] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1830), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4606), 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(4604), 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_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [39191] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1831), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4610), 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(4608), 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_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [39249] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4572), 1, + anon_sym_DOT_DOT, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1832), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4486), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_else, - [24402] = 5, + ACTIONS(4612), 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, + [39341] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + ACTIONS(4582), 1, + anon_sym_LPAREN, + ACTIONS(4584), 1, + anon_sym_COLON_COLON, + ACTIONS(4586), 1, + anon_sym_LT2, + ACTIONS(4616), 1, + anon_sym_BANG, + STATE(1953), 1, + sym_type_arguments, + STATE(1961), 1, + sym_parameters, + STATE(1833), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3896), 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(3894), 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, + [39411] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1161), 1, + aux_sym_string_literal_token1, + ACTIONS(1171), 1, + sym__raw_string_literal_start, + ACTIONS(1884), 1, + anon_sym_COLON_COLON, + ACTIONS(3846), 1, + sym_identifier, + ACTIONS(3856), 1, + sym_metavariable, + STATE(2442), 1, + sym_scoped_identifier, + STATE(2470), 1, + sym__literal_pattern, + STATE(4179), 1, + sym_bracketed_type, + STATE(4258), 1, + sym_generic_type_with_turbofish, + ACTIONS(1163), 2, + anon_sym_true, + anon_sym_false, + STATE(1834), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1159), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3854), 3, + sym_self, + sym_super, + sym_crate, + STATE(2377), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3852), 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, + [39497] = 14, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1835), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4360), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4358), 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, + [39573] = 18, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4360), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1836), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4358), 20, + anon_sym_SEMI, + 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, + [39657] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(3824), 15, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4360), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4358), 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, + [39729] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4572), 1, + anon_sym_DOT_DOT, + ACTIONS(4620), 1, + anon_sym_EQ, + ACTIONS(4548), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1838), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4618), 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, + [39819] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4624), 1, + anon_sym_LPAREN, + STATE(1839), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4627), 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_SQUOTE, + sym_metavariable, + ACTIONS(4622), 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_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [39879] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4572), 1, + anon_sym_DOT_DOT, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4548), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1840), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4490), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4612), 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, + [39971] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1161), 1, + aux_sym_string_literal_token1, + ACTIONS(1171), 1, + sym__raw_string_literal_start, + ACTIONS(1884), 1, + anon_sym_COLON_COLON, + ACTIONS(3834), 1, + sym_identifier, + ACTIONS(3844), 1, + sym_metavariable, + STATE(2406), 1, + sym_scoped_identifier, + STATE(2473), 1, + sym__literal_pattern, + STATE(4179), 1, + sym_bracketed_type, + STATE(4258), 1, + sym_generic_type_with_turbofish, + ACTIONS(1163), 2, + anon_sym_true, + anon_sym_false, + STATE(1841), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1159), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3842), 3, + sym_self, + sym_super, + sym_crate, + STATE(2377), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3840), 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, + [40057] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4629), 1, + anon_sym_COLON_COLON, + STATE(1842), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4627), 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(4622), 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_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [40117] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4572), 1, + anon_sym_DOT_DOT, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3822), 30, + ACTIONS(4574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1843), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4436), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137094,25 +165133,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_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24462] = 5, + [40209] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + ACTIONS(4616), 1, + anon_sym_BANG, + ACTIONS(4632), 1, + anon_sym_LBRACE, + ACTIONS(4634), 1, + anon_sym_COLON_COLON, + STATE(2013), 1, + sym_field_initializer_list, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(3828), 15, + ACTIONS(1461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137128,14 +165165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3826), 30, - anon_sym_SEMI, + ACTIONS(1459), 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, @@ -137155,19 +165188,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [24522] = 5, + [40274] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + ACTIONS(4582), 1, + anon_sym_LPAREN, + ACTIONS(4586), 1, + anon_sym_LT2, + ACTIONS(4636), 1, + anon_sym_COLON_COLON, + STATE(1953), 1, + sym_type_arguments, + STATE(1961), 1, + sym_parameters, + STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(3832), 15, + ACTIONS(3913), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137178,19 +165218,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(3830), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3911), 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, @@ -137202,27 +165239,28 @@ 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, - [24582] = 5, + [40341] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + ACTIONS(3888), 1, + anon_sym_COLON_COLON, + ACTIONS(4008), 1, + anon_sym_BANG, + ACTIONS(4638), 1, + sym_identifier, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3884), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137238,13 +165276,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1427), 30, + anon_sym_as, + ACTIONS(3882), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -137265,25 +165301,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, - [24642] = 8, + [40404] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - STATE(1447), 2, + ACTIONS(3898), 1, + anon_sym_BANG, + ACTIONS(4640), 1, + anon_sym_COLON_COLON, + STATE(1746), 1, + sym_field_initializer_list, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(3836), 14, + ACTIONS(1461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137297,14 +165329,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(3834), 28, - anon_sym_SEMI, + ACTIONS(1459), 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, @@ -137323,19 +165354,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, - [24708] = 5, + [40467] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + ACTIONS(3898), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_COLON_COLON, + STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(3840), 15, + ACTIONS(1461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137351,14 +165384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3838), 30, - anon_sym_SEMI, + ACTIONS(1459), 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, @@ -137378,19 +165407,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, - [24768] = 5, + [40527] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + ACTIONS(3886), 1, + anon_sym_BANG, + ACTIONS(4526), 1, + anon_sym_COLON_COLON, + STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137406,14 +165437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 30, - anon_sym_SEMI, + ACTIONS(3882), 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, @@ -137433,25 +165460,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [24828] = 5, + [40587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(3967), 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, @@ -137461,14 +165487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3842), 30, - anon_sym_SEMI, + ACTIONS(3969), 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, @@ -137488,25 +165510,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [24888] = 5, + [40643] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(1537), 15, + ACTIONS(3929), 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, @@ -137516,14 +165538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1535), 30, - anon_sym_SEMI, + ACTIONS(3931), 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, @@ -137543,25 +165561,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [24948] = 5, + [40699] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(1497), 15, + ACTIONS(3937), 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, @@ -137571,14 +165589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1495), 30, - anon_sym_SEMI, + ACTIONS(3939), 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, @@ -137598,25 +165612,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [25008] = 5, + [40755] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 15, + ACTIONS(3921), 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, @@ -137626,14 +165640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1499), 30, - anon_sym_SEMI, + ACTIONS(3923), 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, @@ -137653,19 +165663,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, - [25068] = 5, + [40811] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + ACTIONS(4252), 1, + anon_sym_COLON_COLON, + ACTIONS(4580), 1, + anon_sym_BANG, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(1505), 15, + ACTIONS(1461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137681,13 +165694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1503), 30, + ACTIONS(1459), 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, @@ -137708,19 +165718,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [25128] = 5, + [40871] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + ACTIONS(4582), 1, + anon_sym_LPAREN, + ACTIONS(4586), 1, + anon_sym_LT2, + STATE(1903), 1, + sym_parameters, + STATE(1954), 1, + sym_type_arguments, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(3975), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137731,19 +165746,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(3846), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3973), 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, @@ -137755,33 +165767,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_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [25188] = 5, + [40935] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1456), 2, + ACTIONS(4080), 1, + anon_sym_LBRACE, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(3967), 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, @@ -137791,14 +165801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 30, - anon_sym_SEMI, + ACTIONS(3969), 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, @@ -137818,25 +165824,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [25248] = 5, + [40993] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + ACTIONS(4044), 1, + anon_sym_LBRACE, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(1493), 15, + ACTIONS(3929), 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, @@ -137846,14 +165853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1491), 30, - anon_sym_SEMI, + ACTIONS(3931), 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, @@ -137873,19 +165876,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [25308] = 5, + [41051] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, + ACTIONS(4582), 1, + anon_sym_LPAREN, + ACTIONS(4586), 1, + anon_sym_LT2, + STATE(1903), 1, + sym_parameters, + STATE(1954), 1, + sym_type_arguments, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(3856), 15, + ACTIONS(3983), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137896,19 +165905,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(3854), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3981), 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, @@ -137920,27 +165926,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, - [25368] = 5, + [41115] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1459), 2, + ACTIONS(4582), 1, + anon_sym_LPAREN, + ACTIONS(4586), 1, + anon_sym_LT2, + STATE(1903), 1, + sym_parameters, + STATE(1954), 1, + sym_type_arguments, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, + ACTIONS(3989), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137951,19 +165960,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(3526), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3987), 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, @@ -137975,33 +165981,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_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [25428] = 5, + [41179] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1460), 2, + ACTIONS(4038), 1, + anon_sym_LBRACE, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 15, + ACTIONS(3937), 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, @@ -138011,14 +166015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1453), 30, - anon_sym_SEMI, + ACTIONS(3939), 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, @@ -138038,25 +166038,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [25488] = 5, + [41237] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + ACTIONS(4046), 1, + anon_sym_LBRACE, + STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(3860), 15, + ACTIONS(3921), 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, @@ -138066,14 +166067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3858), 30, - anon_sym_SEMI, + ACTIONS(3923), 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, @@ -138093,19 +166090,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [25548] = 5, + [41295] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + ACTIONS(4582), 1, + anon_sym_LPAREN, + ACTIONS(4586), 1, + anon_sym_LT2, + STATE(1903), 1, + sym_parameters, + STATE(1954), 1, + sym_type_arguments, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(3864), 15, + ACTIONS(3979), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138116,19 +166119,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(3862), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3977), 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, @@ -138140,27 +166140,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_SQUOTE, anon_sym_as, - anon_sym_else, - [25608] = 5, + [41359] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + ACTIONS(3967), 1, + anon_sym_BANG, + ACTIONS(3969), 1, + anon_sym_COLON_COLON, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(3965), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138171,19 +166170,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(3866), 30, - anon_sym_SEMI, + ACTIONS(3963), 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, @@ -138195,27 +166192,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [25668] = 5, + anon_sym_LT2, + [41419] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + ACTIONS(3929), 1, + anon_sym_BANG, + ACTIONS(3931), 1, + anon_sym_COLON_COLON, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3927), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138226,19 +166223,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(1457), 30, - anon_sym_SEMI, + ACTIONS(3925), 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, @@ -138250,27 +166245,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [25728] = 5, + anon_sym_LT2, + [41479] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, + ACTIONS(3937), 1, + anon_sym_BANG, + ACTIONS(3939), 1, + anon_sym_COLON_COLON, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 15, + ACTIONS(3935), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138281,19 +166276,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(3870), 30, - anon_sym_SEMI, + ACTIONS(3933), 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, @@ -138305,27 +166298,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [25788] = 5, + anon_sym_LT2, + [41539] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + ACTIONS(3921), 1, + anon_sym_BANG, + ACTIONS(3923), 1, + anon_sym_COLON_COLON, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(3876), 15, + ACTIONS(3919), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138336,19 +166329,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(3874), 30, - anon_sym_SEMI, + ACTIONS(3917), 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, @@ -138360,53 +166351,74 @@ 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, - [25848] = 5, + anon_sym_LT2, + [41599] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1467), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1041), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(744), 1, + anon_sym_RBRACK, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4644), 1, + anon_sym_SEMI, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4650), 1, + anon_sym_COMMA, + STATE(3405), 1, + aux_sym_arguments_repeat1, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1043), 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(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1867), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138417,25 +166429,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, - [25908] = 5, + [41694] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + ACTIONS(4282), 1, + anon_sym_COLON_COLON, + STATE(1868), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 15, + ACTIONS(4284), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138451,14 +166455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1435), 30, - anon_sym_SEMI, + ACTIONS(4280), 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, @@ -138478,45 +166478,135 @@ 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, - [25968] = 5, + [41751] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + ACTIONS(1151), 1, + anon_sym_extern, + ACTIONS(3953), 1, + anon_sym_COLON_COLON, + ACTIONS(3961), 1, + sym_metavariable, + ACTIONS(4506), 1, + anon_sym_default, + ACTIONS(4652), 1, + sym_identifier, + ACTIONS(4654), 1, + anon_sym_fn, + STATE(2605), 1, + aux_sym_function_modifiers_repeat1, + STATE(2804), 1, + sym_extern_modifier, + STATE(3077), 1, + sym_scoped_type_identifier, + STATE(3941), 1, + sym_function_modifiers, + STATE(4014), 1, + sym_scoped_identifier, + STATE(4087), 1, + sym_bracketed_type, + STATE(4120), 1, + sym_generic_type, + STATE(4231), 1, + sym_generic_type_with_turbofish, + ACTIONS(3955), 2, + anon_sym_gen, + anon_sym_union, + STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(3880), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1135), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3959), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4504), 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, + [41840] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(959), 1, + anon_sym_RBRACK, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4656), 1, + anon_sym_SEMI, + ACTIONS(4658), 1, + anon_sym_COMMA, + STATE(3358), 1, + aux_sym_arguments_repeat1, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3878), 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(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1870), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138527,25 +166617,19 @@ 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, - [26028] = 5, + [41935] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + ACTIONS(4660), 1, + anon_sym_SQUOTE, + STATE(2005), 1, + sym_label, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(1527), 15, + ACTIONS(4164), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138561,14 +166645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1525), 30, - anon_sym_SEMI, + ACTIONS(4162), 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, @@ -138588,19 +166668,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, - [26088] = 5, + [41994] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1471), 2, + ACTIONS(4616), 1, + anon_sym_BANG, + ACTIONS(4662), 1, + anon_sym_COLON_COLON, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(1461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138616,14 +166697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1485), 30, - anon_sym_SEMI, + ACTIONS(1459), 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, @@ -138643,25 +166720,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, - [26148] = 5, + [42053] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3967), 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, @@ -138671,14 +166746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, - anon_sym_SEMI, + ACTIONS(3969), 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, @@ -138698,16 +166769,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_COLON_COLON, anon_sym_as, - anon_sym_else, - [26208] = 5, + [42108] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + ACTIONS(4262), 1, + anon_sym_BANG, + ACTIONS(4264), 1, + anon_sym_COLON_COLON, + STATE(1874), 2, sym_line_comment, sym_block_comment, ACTIONS(3884), 15, @@ -138726,14 +166799,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3882), 30, - anon_sym_SEMI, + ACTIONS(3882), 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, @@ -138753,25 +166822,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, - [26268] = 5, + [42167] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(3888), 15, + ACTIONS(3929), 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, @@ -138781,14 +166848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3886), 30, - anon_sym_SEMI, + ACTIONS(3931), 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, @@ -138808,19 +166871,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, - [26328] = 5, + [42222] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1475), 2, + STATE(1755), 1, + sym_label, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(3892), 15, + ACTIONS(4164), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138836,14 +166899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3890), 30, - anon_sym_SEMI, + ACTIONS(4162), 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, @@ -138863,25 +166922,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [26388] = 5, + [42279] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(3896), 15, + ACTIONS(3937), 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, @@ -138891,14 +166949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3894), 30, - anon_sym_SEMI, + ACTIONS(3939), 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, @@ -138918,19 +166972,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_COLON_COLON, anon_sym_as, - anon_sym_else, - [26448] = 5, + [42334] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1477), 2, + ACTIONS(4476), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(4284), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138946,14 +167001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3898), 30, - anon_sym_SEMI, + ACTIONS(4280), 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, @@ -138973,25 +167024,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, - [26508] = 5, + [42391] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1478), 2, + STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(3921), 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, @@ -139001,14 +167050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 30, - anon_sym_SEMI, + ACTIONS(3923), 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, @@ -139028,19 +167073,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_COLON_COLON, anon_sym_as, - anon_sym_else, - [26568] = 5, + [42446] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, + ACTIONS(4282), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(1509), 15, + ACTIONS(4284), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139056,14 +167102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1507), 30, - anon_sym_SEMI, + ACTIONS(4280), 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, @@ -139083,19 +167125,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, - [26628] = 5, + [42503] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1480), 2, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, + ACTIONS(4050), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139111,14 +167150,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3902), 30, - anon_sym_SEMI, + ACTIONS(4048), 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, @@ -139138,45 +167174,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, - [26688] = 5, + [42558] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1481), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3524), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4668), 1, anon_sym_CARET, + ACTIONS(4670), 1, anon_sym_AMP, + ACTIONS(4672), 1, anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_DOT_DOT, + STATE(422), 1, + sym_block, + STATE(3965), 1, + sym_label, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4686), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3522), 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(4690), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1882), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4666), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4680), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139187,72 +167246,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [26748] = 23, + [42653] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACK, - ACTIONS(3302), 1, - anon_sym_SQUOTE, - ACTIONS(3459), 1, - sym_identifier, - ACTIONS(3463), 1, - anon_sym_LPAREN, - ACTIONS(3465), 1, - anon_sym_STAR, - ACTIONS(3469), 1, - anon_sym_AMP, - ACTIONS(3471), 1, + ACTIONS(1151), 1, + anon_sym_extern, + ACTIONS(3953), 1, anon_sym_COLON_COLON, - ACTIONS(3475), 1, - anon_sym_for, - ACTIONS(3479), 1, + ACTIONS(3961), 1, sym_metavariable, - STATE(2577), 1, - sym_where_predicate, - STATE(2833), 1, + ACTIONS(4506), 1, + anon_sym_default, + ACTIONS(4692), 1, + sym_identifier, + ACTIONS(4694), 1, + anon_sym_fn, + STATE(2605), 1, + aux_sym_function_modifiers_repeat1, + STATE(2804), 1, + sym_extern_modifier, + STATE(3162), 1, sym_scoped_type_identifier, - STATE(3139), 1, - sym_generic_type, - STATE(3588), 1, + STATE(4014), 1, sym_scoped_identifier, - STATE(3594), 1, + STATE(4087), 1, sym_bracketed_type, - STATE(3738), 1, + STATE(4106), 1, + sym_function_modifiers, + STATE(4120), 1, + sym_generic_type, + STATE(4231), 1, sym_generic_type_with_turbofish, - STATE(1482), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3473), 3, - anon_sym_default, + ACTIONS(3955), 2, anon_sym_gen, anon_sym_union, - ACTIONS(3477), 3, + STATE(1883), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1135), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3959), 3, sym_self, sym_super, sym_crate, - STATE(3405), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3467), 17, + ACTIONS(4504), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -139268,182 +167311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f32, anon_sym_f64, anon_sym_bool, - anon_sym_str, - anon_sym_char, - [26844] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1483), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3534), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3532), 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, - [26904] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1484), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(919), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(921), 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, - [26964] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1485), 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), 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, - [27024] = 5, + anon_sym_str, + anon_sym_char, + [42742] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1486), 2, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 15, + ACTIONS(4170), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139459,14 +167337,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1461), 30, - anon_sym_SEMI, + ACTIONS(4168), 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, @@ -139486,19 +167361,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, - [27084] = 5, + [42797] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1487), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(4032), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139514,14 +167387,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 30, - anon_sym_SEMI, + ACTIONS(4030), 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, @@ -139541,22 +167411,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, - [27144] = 6, + [42852] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1488), 2, + ACTIONS(4696), 1, + anon_sym_else, + STATE(2092), 1, + sym_else_clause, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(1415), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139572,13 +167441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 28, - anon_sym_SEMI, + ACTIONS(1413), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139598,44 +167464,134 @@ 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, - [27206] = 5, + [42911] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1489), 2, + ACTIONS(1151), 1, + anon_sym_extern, + ACTIONS(3953), 1, + anon_sym_COLON_COLON, + ACTIONS(3961), 1, + sym_metavariable, + ACTIONS(4506), 1, + anon_sym_default, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4700), 1, + anon_sym_fn, + STATE(2605), 1, + aux_sym_function_modifiers_repeat1, + STATE(2804), 1, + sym_extern_modifier, + STATE(3225), 1, + sym_scoped_type_identifier, + STATE(4014), 1, + sym_scoped_identifier, + STATE(4087), 1, + sym_bracketed_type, + STATE(4120), 1, + sym_generic_type, + STATE(4231), 1, + sym_generic_type_with_turbofish, + STATE(4298), 1, + sym_function_modifiers, + ACTIONS(3955), 2, + anon_sym_gen, + anon_sym_union, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(1483), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1135), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3959), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4504), 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, + [43000] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4668), 1, anon_sym_CARET, + ACTIONS(4670), 1, anon_sym_AMP, + ACTIONS(4672), 1, anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_DOT_DOT, + STATE(404), 1, + sym_block, + STATE(3965), 1, + sym_label, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4686), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1481), 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(4690), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1888), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4666), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4680), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139646,25 +167602,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, - [27266] = 5, + [43095] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1490), 2, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4284), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139680,14 +167628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, - anon_sym_SEMI, + ACTIONS(4280), 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, @@ -139707,45 +167651,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, - [27326] = 5, + [43152] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1491), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(975), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(889), 1, + anon_sym_RBRACK, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4702), 1, + anon_sym_SEMI, + ACTIONS(4704), 1, + anon_sym_COMMA, + STATE(3523), 1, + aux_sym_arguments_repeat1, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(977), 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(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1890), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139756,51 +167723,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, - [27386] = 5, + [43247] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1492), 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, + ACTIONS(1025), 1, + anon_sym_RBRACK, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4706), 1, + anon_sym_SEMI, + ACTIONS(4708), 1, + anon_sym_COMMA, + STATE(3574), 1, + aux_sym_arguments_repeat1, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3912), 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(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1891), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139811,51 +167793,136 @@ 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, - [27446] = 5, + [43342] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1493), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4668), 1, + anon_sym_CARET, + ACTIONS(4670), 1, + anon_sym_AMP, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_DOT_DOT, + STATE(1762), 1, + sym_block, + STATE(4169), 1, + sym_label, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4690), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 15, - anon_sym_PLUS, + ACTIONS(4666), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4680), 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, + [43437] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4668), 1, anon_sym_CARET, + ACTIONS(4670), 1, anon_sym_AMP, + ACTIONS(4672), 1, anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_DOT_DOT, + STATE(1715), 1, + sym_block, + STATE(4169), 1, + sym_label, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4686), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1531), 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(4690), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1893), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4666), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4680), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139866,51 +167933,136 @@ 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, - [27506] = 5, + [43532] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1494), 2, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4668), 1, + anon_sym_CARET, + ACTIONS(4670), 1, + anon_sym_AMP, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_DOT_DOT, + STATE(479), 1, + sym_block, + STATE(4253), 1, + sym_label, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4690), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(3918), 15, - anon_sym_PLUS, + ACTIONS(4666), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4680), 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, + [43627] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4668), 1, anon_sym_CARET, + ACTIONS(4670), 1, anon_sym_AMP, + ACTIONS(4672), 1, anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_DOT_DOT, + STATE(483), 1, + sym_block, + STATE(4253), 1, + sym_label, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4686), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3916), 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(4690), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1895), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4666), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4680), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139921,56 +168073,136 @@ 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, - [27566] = 9, + [43722] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - STATE(1495), 2, + ACTIONS(4668), 1, + anon_sym_CARET, + ACTIONS(4670), 1, + anon_sym_AMP, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_DOT_DOT, + STATE(2097), 1, + sym_block, + STATE(4254), 1, + sym_label, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4690), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(3922), 14, - anon_sym_PLUS, + ACTIONS(4666), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4680), 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, + [43817] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4668), 1, anon_sym_CARET, + ACTIONS(4670), 1, anon_sym_AMP, + ACTIONS(4672), 1, anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_DOT_DOT, + STATE(2102), 1, + sym_block, + STATE(4254), 1, + sym_label, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4686), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 27, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4690), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1897), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4666), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4680), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139981,24 +168213,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_else, - [27634] = 5, + [43912] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1496), 2, + ACTIONS(4526), 1, + anon_sym_COLON_COLON, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(1467), 15, + ACTIONS(3884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140014,14 +168239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1465), 30, - anon_sym_SEMI, + ACTIONS(3882), 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, @@ -140041,19 +168262,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, - [27694] = 5, + [43969] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1497), 2, + ACTIONS(4710), 1, + anon_sym_COLON_COLON, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(1471), 15, + ACTIONS(1461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140069,14 +168290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1469), 30, - anon_sym_SEMI, + ACTIONS(1459), 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, @@ -140096,19 +168313,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [27754] = 5, + [44026] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1498), 2, + ACTIONS(1151), 1, + anon_sym_extern, + ACTIONS(3953), 1, + anon_sym_COLON_COLON, + ACTIONS(3961), 1, + sym_metavariable, + ACTIONS(4506), 1, + anon_sym_default, + ACTIONS(4712), 1, + sym_identifier, + ACTIONS(4714), 1, + anon_sym_fn, + STATE(2605), 1, + aux_sym_function_modifiers_repeat1, + STATE(2804), 1, + sym_extern_modifier, + STATE(3157), 1, + sym_scoped_type_identifier, + STATE(3934), 1, + sym_function_modifiers, + STATE(4014), 1, + sym_scoped_identifier, + STATE(4087), 1, + sym_bracketed_type, + STATE(4120), 1, + sym_generic_type, + STATE(4231), 1, + sym_generic_type_with_turbofish, + ACTIONS(3955), 2, + anon_sym_gen, + anon_sym_union, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(1421), 15, + ACTIONS(1135), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3959), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4504), 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, + [44115] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1901), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4084), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140124,14 +168406,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1419), 30, - anon_sym_SEMI, + ACTIONS(4082), 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, @@ -140151,45 +168430,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_COLON_COLON, anon_sym_as, - anon_sym_else, - [27814] = 5, + [44170] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1499), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1475), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4602), 1, + anon_sym_EQ, + ACTIONS(4668), 1, anon_sym_CARET, + ACTIONS(4670), 1, anon_sym_AMP, + ACTIONS(4672), 1, anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4716), 1, + anon_sym_DOT_DOT, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4686), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1473), 30, - anon_sym_SEMI, + ACTIONS(4718), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1902), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4666), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4600), 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, @@ -140200,25 +168496,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, - [27874] = 5, + [44256] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1500), 2, + ACTIONS(4720), 1, + anon_sym_DASH_GT, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(3928), 15, + ACTIONS(4158), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140234,14 +168523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3926), 30, - anon_sym_SEMI, + ACTIONS(4156), 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, @@ -140261,19 +168546,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, - [27934] = 5, + [44312] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1501), 2, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(3932), 15, + ACTIONS(4060), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140289,14 +168571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3930), 30, - anon_sym_SEMI, + ACTIONS(4058), 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, @@ -140316,19 +168594,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, - [27994] = 5, + [44366] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1502), 2, + STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(3936), 15, + ACTIONS(4064), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140344,14 +168620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3934), 30, - anon_sym_SEMI, + ACTIONS(4062), 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, @@ -140371,45 +168643,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, - [28054] = 5, + [44420] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1503), 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, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4668), 1, anon_sym_CARET, + ACTIONS(4670), 1, anon_sym_AMP, + ACTIONS(4672), 1, anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4578), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4686), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3938), 30, - anon_sym_SEMI, + STATE(1906), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4666), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4576), 15, 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, @@ -140420,49 +168705,114 @@ 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, - [28114] = 5, + [44502] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1504), 2, + ACTIONS(921), 1, + anon_sym_RPAREN, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4722), 1, + anon_sym_COMMA, + STATE(3434), 1, + aux_sym_arguments_repeat1, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1907), 2, sym_line_comment, sym_block_comment, - ACTIONS(3944), 15, - anon_sym_PLUS, + ACTIONS(4550), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 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, + [44594] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4664), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4678), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1908), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4666), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4360), 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(3942), 30, - anon_sym_SEMI, + ACTIONS(4358), 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, @@ -140481,19 +168831,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, + [44662] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, anon_sym_as, - anon_sym_else, - [28174] = 5, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1909), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4724), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 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, + [44750] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1505), 2, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(3948), 15, + ACTIONS(3935), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140504,19 +168917,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(3946), 30, - anon_sym_SEMI, + ACTIONS(3933), 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, @@ -140528,27 +168939,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_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [28234] = 5, + anon_sym_LT2, + [44804] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1506), 2, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(3952), 15, + ACTIONS(4178), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140564,14 +168971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3950), 30, - anon_sym_SEMI, + ACTIONS(4176), 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, @@ -140591,19 +168994,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_DASH_GT, anon_sym_as, - anon_sym_else, - [28294] = 5, + [44858] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1507), 2, + ACTIONS(4726), 1, + anon_sym_DASH_GT, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(3956), 15, + ACTIONS(4182), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140619,14 +169022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3954), 30, - anon_sym_SEMI, + ACTIONS(4180), 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, @@ -140646,23 +169045,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, - [28354] = 7, + [44914] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - STATE(1508), 2, + ACTIONS(4728), 1, + anon_sym_DASH_GT, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(4188), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140678,13 +169072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 28, - anon_sym_SEMI, + ACTIONS(4186), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140704,18 +169095,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_as, - anon_sym_else, - [28418] = 5, + [44970] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1509), 2, + ACTIONS(4730), 1, + anon_sym_DASH_GT, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(1433), 15, + ACTIONS(4194), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140731,14 +169122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, - anon_sym_SEMI, + ACTIONS(4192), 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, @@ -140758,45 +169145,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, - [28478] = 5, + [45026] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1510), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3960), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4668), 1, anon_sym_CARET, + ACTIONS(4670), 1, anon_sym_AMP, + ACTIONS(4672), 1, anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4716), 1, + anon_sym_DOT_DOT, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4686), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3958), 30, - anon_sym_SEMI, + ACTIONS(4718), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1915), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4490), 3, 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_SQUOTE, + ACTIONS(4666), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4680), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140807,25 +169212,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, - [28538] = 5, + [45114] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1511), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4054), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140841,14 +169236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, - anon_sym_SEMI, + ACTIONS(4052), 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, @@ -140868,19 +169259,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_DASH_GT, anon_sym_as, - anon_sym_else, - [28598] = 5, + [45168] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1512), 2, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(3964), 15, + ACTIONS(3979), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140896,14 +169287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3962), 30, - anon_sym_SEMI, + ACTIONS(3977), 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, @@ -140923,43 +169310,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [28658] = 5, + [45224] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1513), 2, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4668), 1, + anon_sym_CARET, + ACTIONS(4670), 1, + anon_sym_AMP, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(911), 15, - anon_sym_PLUS, + ACTIONS(4666), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(4360), 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(913), 30, - anon_sym_SEMI, + ACTIONS(4358), 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, @@ -140978,19 +169368,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, - [28718] = 5, + [45296] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1514), 2, + ACTIONS(4734), 1, + anon_sym_DASH_GT, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(3968), 15, + ACTIONS(4074), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141006,14 +169395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3966), 30, - anon_sym_SEMI, + ACTIONS(4072), 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, @@ -141033,43 +169418,53 @@ 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, - [28778] = 5, + [45352] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1515), 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(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4668), 1, anon_sym_CARET, + ACTIONS(4670), 1, anon_sym_AMP, + ACTIONS(4672), 1, anon_sym_PIPE, + ACTIONS(4360), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4686), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1451), 30, - anon_sym_SEMI, + STATE(1920), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4666), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4358), 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, @@ -141082,25 +169477,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, - [28838] = 5, + [45430] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1516), 2, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(3972), 15, + ACTIONS(4088), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141116,14 +169504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3970), 30, - anon_sym_SEMI, + ACTIONS(4086), 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, @@ -141143,44 +169527,56 @@ 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, - [28898] = 5, + [45484] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1517), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3976), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4668), 1, anon_sym_CARET, + ACTIONS(4670), 1, anon_sym_AMP, + ACTIONS(4672), 1, anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4360), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4686), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3974), 30, - anon_sym_SEMI, + STATE(1922), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4666), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4358), 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, @@ -141192,25 +169588,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, - [28958] = 5, + [45564] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1518), 2, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(3980), 15, + ACTIONS(4174), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141226,14 +169615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3978), 30, - anon_sym_SEMI, + ACTIONS(4172), 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, @@ -141253,19 +169638,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_DASH_GT, anon_sym_as, - anon_sym_else, - [29018] = 5, + [45618] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1519), 2, + ACTIONS(4736), 1, + anon_sym_COLON_COLON, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 15, + ACTIONS(3975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141281,14 +169666,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 30, - anon_sym_SEMI, + ACTIONS(3973), 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, @@ -141308,19 +169689,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, - [29078] = 5, + [45674] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1520), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(3988), 15, + ACTIONS(4036), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141336,14 +169714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3986), 30, - anon_sym_SEMI, + ACTIONS(4034), 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, @@ -141363,19 +169737,149 @@ 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, - [29138] = 5, + [45728] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1521), 2, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4738), 1, + anon_sym_RPAREN, + ACTIONS(4740), 1, + anon_sym_COMMA, + STATE(3469), 1, + aux_sym_arguments_repeat1, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1926), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 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, + [45820] = 18, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_LBRACE, + ACTIONS(4746), 1, + anon_sym_RBRACE, + ACTIONS(4748), 1, + anon_sym_STAR, + ACTIONS(4752), 1, + anon_sym_COMMA, + ACTIONS(4754), 1, + anon_sym_COLON_COLON, + ACTIONS(4758), 1, + sym_metavariable, + STATE(2826), 1, + sym_scoped_identifier, + STATE(3490), 1, + sym__use_clause, + STATE(4017), 1, + sym_bracketed_type, + STATE(4282), 1, + sym_generic_type_with_turbofish, + STATE(1927), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4756), 3, + sym_self, + sym_super, + sym_crate, + STATE(3435), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4750), 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, + [45900] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4760), 1, + anon_sym_COLON_COLON, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(3992), 15, + ACTIONS(3975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141391,14 +169895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3990), 30, - anon_sym_SEMI, + ACTIONS(3973), 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, @@ -141418,19 +169918,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, - [29198] = 5, + [45956] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1522), 2, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(3996), 15, + ACTIONS(3975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141446,14 +169945,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3994), 30, - anon_sym_SEMI, + ACTIONS(3973), 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, @@ -141473,43 +169968,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [29258] = 5, + [46012] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1523), 2, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4670), 1, + anon_sym_AMP, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(4000), 15, - anon_sym_PLUS, + ACTIONS(4666), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4360), 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(3998), 30, - anon_sym_SEMI, + ACTIONS(4358), 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, @@ -141528,19 +170025,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, - [29318] = 5, + [46082] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1524), 2, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, + ACTIONS(1433), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141556,14 +170050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 30, - anon_sym_SEMI, + ACTIONS(1431), 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, @@ -141583,19 +170073,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, - [29378] = 5, + [46136] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1525), 2, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 15, + ACTIONS(1421), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141611,14 +170099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4002), 30, - anon_sym_SEMI, + ACTIONS(1419), 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, @@ -141638,19 +170122,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, - [29438] = 5, + [46190] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1526), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(4008), 15, + ACTIONS(1425), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141666,14 +170148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4006), 30, - anon_sym_SEMI, + ACTIONS(1423), 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, @@ -141693,19 +170171,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, - [29498] = 5, + [46244] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1527), 2, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(4012), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141721,14 +170197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4010), 30, - anon_sym_SEMI, + ACTIONS(1427), 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, @@ -141748,24 +170220,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29558] = 5, + [46298] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1528), 2, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(4016), 15, - anon_sym_PLUS, + ACTIONS(4666), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4360), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -141774,17 +170254,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(4014), 30, - anon_sym_SEMI, + ACTIONS(4358), 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, @@ -141803,19 +170276,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, + [46364] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, anon_sym_as, - anon_sym_else, - [29618] = 5, + ACTIONS(4668), 1, + anon_sym_CARET, + ACTIONS(4670), 1, + anon_sym_AMP, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4716), 1, + anon_sym_DOT_DOT, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4718), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1936), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4486), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4666), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4680), 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, + [46452] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1529), 2, + ACTIONS(4762), 1, + anon_sym_COLON_COLON, + STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(4020), 15, + ACTIONS(1461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141831,14 +170369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4018), 30, - anon_sym_SEMI, + ACTIONS(1459), 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, @@ -141858,19 +170392,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, - [29678] = 5, + [46508] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1530), 2, + ACTIONS(4764), 1, + anon_sym_COLON_COLON, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(4024), 15, + ACTIONS(1461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141886,14 +170419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4022), 30, - anon_sym_SEMI, + ACTIONS(1459), 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, @@ -141913,23 +170442,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, - [29738] = 7, + [46564] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_BANG, - ACTIONS(4026), 1, - anon_sym_COLON_COLON, - STATE(1531), 2, + ACTIONS(4766), 1, + anon_sym_LPAREN, + STATE(2016), 1, + sym_arguments, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4070), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141945,13 +170471,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4066), 22, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141971,44 +170493,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_as, - anon_sym_else, - [29802] = 5, + [46622] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1532), 2, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4570), 1, + anon_sym_EQ, + ACTIONS(4668), 1, + anon_sym_CARET, + ACTIONS(4670), 1, + anon_sym_AMP, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4716), 1, + anon_sym_DOT_DOT, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4718), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, + ACTIONS(4666), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4564), 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, + [46708] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4668), 1, anon_sym_CARET, + ACTIONS(4670), 1, anon_sym_AMP, + ACTIONS(4672), 1, anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(377), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4686), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1451), 30, - anon_sym_SEMI, + STATE(1941), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4666), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(375), 15, 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, @@ -142019,51 +170619,193 @@ 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, - [29862] = 5, + [46790] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1533), 2, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4668), 1, + anon_sym_CARET, + ACTIONS(4670), 1, + anon_sym_AMP, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4716), 1, + anon_sym_DOT_DOT, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4718), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(915), 15, - anon_sym_PLUS, + ACTIONS(4666), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_SQUOTE, + [46876] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4620), 1, + anon_sym_EQ, + ACTIONS(4668), 1, anon_sym_CARET, + ACTIONS(4670), 1, anon_sym_AMP, + ACTIONS(4672), 1, anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4716), 1, + anon_sym_DOT_DOT, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4686), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(917), 30, - anon_sym_SEMI, + ACTIONS(4718), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1943), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4666), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4618), 13, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - 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_SQUOTE, + [46962] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4598), 1, + anon_sym_EQ, + ACTIONS(4668), 1, + anon_sym_CARET, + ACTIONS(4670), 1, + anon_sym_AMP, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4674), 1, anon_sym_AMP_AMP, + ACTIONS(4676), 1, anon_sym_PIPE_PIPE, + ACTIONS(4716), 1, + anon_sym_DOT_DOT, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4718), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1944), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4666), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4596), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142074,49 +170816,248 @@ 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, + [47048] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4594), 1, + anon_sym_EQ, + ACTIONS(4668), 1, + anon_sym_CARET, + ACTIONS(4670), 1, + anon_sym_AMP, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP_AMP, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4716), 1, + anon_sym_DOT_DOT, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4718), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1945), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4666), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4684), 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_COMMA, + ACTIONS(4592), 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, - anon_sym_as, - anon_sym_else, - [29922] = 5, + [47134] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1534), 2, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4768), 1, + anon_sym_RPAREN, + ACTIONS(4770), 1, + anon_sym_COMMA, + STATE(3267), 1, + aux_sym_arguments_repeat1, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(4030), 15, - anon_sym_PLUS, + ACTIONS(4550), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 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, + [47226] = 24, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(995), 1, + anon_sym_RBRACK, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4772), 1, + anon_sym_COMMA, + STATE(3272), 1, + aux_sym_arguments_repeat1, + ACTIONS(4548), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1947), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 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, + [47318] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4668), 1, anon_sym_CARET, + ACTIONS(4670), 1, anon_sym_AMP, + ACTIONS(4672), 1, anon_sym_PIPE, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1948), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4666), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4360), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4028), 30, - anon_sym_SEMI, + ACTIONS(4358), 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, @@ -142135,45 +171076,65 @@ 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, - [29982] = 5, + [47392] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1535), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4034), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1023), 1, + anon_sym_RPAREN, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4774), 1, + anon_sym_COMMA, + STATE(3322), 1, + aux_sym_arguments_repeat1, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4032), 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(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1949), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142184,51 +171145,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, - [30042] = 5, + [47484] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1536), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1541), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1539), 30, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1950), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4776), 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(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142239,25 +171211,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, - [30102] = 5, + [47572] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1537), 2, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(4038), 15, + ACTIONS(4126), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142273,14 +171235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4036), 30, - anon_sym_SEMI, + ACTIONS(4124), 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, @@ -142300,48 +171258,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_COLON_COLON, anon_sym_as, - anon_sym_else, - [30162] = 8, + [47626] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(1035), 1, + anon_sym_RBRACK, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - STATE(1538), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4042), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4778), 1, + anon_sym_COMMA, + STATE(3410), 1, + aux_sym_arguments_repeat1, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(4040), 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(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1952), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142352,25 +171328,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, - [30228] = 5, + [47718] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1539), 2, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(1513), 15, + ACTIONS(4138), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142386,14 +171352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1511), 30, - anon_sym_SEMI, + ACTIONS(4136), 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, @@ -142413,177 +171375,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, - [30288] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(1621), 1, - anon_sym_fn, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4044), 1, - sym_identifier, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4050), 1, - anon_sym_for, - STATE(1607), 1, - sym_for_lifetimes, - STATE(2015), 1, - sym_generic_type, - STATE(2235), 1, - sym_scoped_type_identifier, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(3766), 1, - sym_function_modifiers, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1540), 2, - sym_line_comment, - sym_block_comment, - STATE(2060), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 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, - [30387] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1239), 1, - anon_sym_fn, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3254), 1, - anon_sym_for, - ACTIONS(3471), 1, anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4052), 1, - sym_identifier, - STATE(1634), 1, - sym_for_lifetimes, - STATE(2011), 1, - sym_scoped_type_identifier, - STATE(2015), 1, - sym_generic_type, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(3774), 1, - sym_function_modifiers, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1541), 2, - sym_line_comment, - sym_block_comment, - STATE(2060), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 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, - [30486] = 10, + anon_sym_as, + [47772] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(3422), 1, - anon_sym_move, - ACTIONS(4054), 1, - anon_sym_COLON_COLON, - STATE(1454), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(1542), 2, + STATE(1954), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(4142), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142599,10 +171401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 24, + ACTIONS(4140), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142622,29 +171424,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_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - [30555] = 11, + [47826] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3422), 1, - anon_sym_move, - ACTIONS(4054), 1, - anon_sym_COLON_COLON, - STATE(1454), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(1543), 2, + ACTIONS(4780), 1, + anon_sym_DASH_GT, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(4146), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142660,10 +171452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(4144), 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, @@ -142684,17 +171476,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [30626] = 6, + [47882] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4056), 1, + ACTIONS(4732), 1, anon_sym_COLON_COLON, - STATE(1544), 2, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3983), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142710,13 +171502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 28, - anon_sym_SEMI, + ACTIONS(3981), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142736,20 +171525,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_as, - anon_sym_else, - [30687] = 6, + [47938] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 1, + ACTIONS(4264), 1, anon_sym_COLON_COLON, - STATE(1545), 2, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142765,13 +171552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 28, - anon_sym_SEMI, + ACTIONS(3882), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142791,181 +171575,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_as, - anon_sym_else, - [30748] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3172), 1, - anon_sym_fn, - ACTIONS(4058), 1, - sym_identifier, - ACTIONS(4062), 1, - anon_sym_COLON_COLON, - ACTIONS(4064), 1, - anon_sym_default, - ACTIONS(4066), 1, - anon_sym_for, - ACTIONS(4072), 1, - sym_metavariable, - STATE(1090), 1, - sym_scoped_type_identifier, - STATE(1130), 1, - sym_generic_type, - STATE(1605), 1, - sym_for_lifetimes, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(3612), 1, - sym_scoped_identifier, - STATE(3648), 1, - sym_generic_type_with_turbofish, - STATE(3660), 1, - sym_bracketed_type, - STATE(3733), 1, - sym_function_modifiers, - ACTIONS(4068), 2, - anon_sym_gen, - anon_sym_union, - STATE(1483), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - STATE(1546), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(4070), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4060), 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, - [30847] = 25, - ACTIONS(29), 1, - anon_sym_LT, + [47994] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3214), 1, - anon_sym_fn, - ACTIONS(4074), 1, - sym_identifier, - ACTIONS(4078), 1, + ACTIONS(4732), 1, anon_sym_COLON_COLON, - ACTIONS(4080), 1, - anon_sym_default, - ACTIONS(4082), 1, - anon_sym_for, - ACTIONS(4088), 1, - sym_metavariable, - STATE(1603), 1, - sym_scoped_type_identifier, - STATE(1638), 1, - sym_for_lifetimes, - STATE(1669), 1, - sym_generic_type, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(3602), 1, - sym_function_modifiers, - STATE(3639), 1, - sym_scoped_identifier, - STATE(3658), 1, - sym_generic_type_with_turbofish, - STATE(3664), 1, - sym_bracketed_type, - ACTIONS(4084), 2, - anon_sym_gen, - anon_sym_union, - STATE(1547), 2, + STATE(1958), 2, sym_line_comment, sym_block_comment, - STATE(1720), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(4086), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4076), 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, - [30946] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4090), 2, + ACTIONS(3989), 15, anon_sym_PLUS, - anon_sym_DASH, - STATE(1548), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -142974,13 +171600,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(3920), 25, - anon_sym_SEMI, + ACTIONS(3987), 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, @@ -142999,124 +171625,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31016] = 17, + anon_sym_as, + [48050] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(3922), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1549), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4666), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3920), 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, - [31098] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4360), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1550), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3920), 20, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(4358), 21, 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, @@ -143128,67 +171673,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_COMMA, - anon_sym_else, - [31182] = 21, + anon_sym_SQUOTE, + [48114] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4668), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4670), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4672), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4674), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4676), 1, anon_sym_PIPE_PIPE, - ACTIONS(4112), 1, + ACTIONS(4682), 1, anon_sym_EQ, - ACTIONS(4114), 1, + ACTIONS(4716), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4678), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4718), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1551), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4436), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4666), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4684), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4108), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(4680), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143199,29 +171746,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_COMMA, - anon_sym_else, - [31272] = 11, + [48202] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4120), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_COLON_COLON, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1646), 1, - sym_type_arguments, - STATE(1671), 1, - sym_parameters, - STATE(1552), 2, + ACTIONS(4782), 1, + anon_sym_DASH_GT, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(3438), 17, + ACTIONS(4152), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143232,14 +171767,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(3436), 20, + ACTIONS(4150), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -143253,34 +171787,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, - [31342] = 11, + [48258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_BANG, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4122), 1, - anon_sym_COLON_COLON, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1646), 1, - sym_type_arguments, - STATE(1671), 1, - sym_parameters, - STATE(1553), 2, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(3444), 17, + ACTIONS(1437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143291,14 +171815,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(3442), 20, + ACTIONS(1435), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -143312,34 +171835,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_as, - [31412] = 11, + anon_sym_else, + [48312] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_BANG, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4122), 1, - anon_sym_COLON_COLON, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1646), 1, - sym_type_arguments, - STATE(1671), 1, - sym_parameters, - STATE(1554), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(3428), 17, + ACTIONS(4462), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143350,14 +171864,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(3424), 20, + ACTIONS(4460), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -143371,70 +171884,71 @@ 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, - [31482] = 21, + [48365] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4128), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4090), 2, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_else, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1555), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143445,118 +171959,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_COMMA, - anon_sym_else, - [31572] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1556), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4132), 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(4130), 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_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31630] = 21, + [48454] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(1343), 1, + anon_sym_RPAREN, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4136), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4090), 2, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4788), 1, + anon_sym_COMMA, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1557), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4134), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143567,51 +172025,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, - [31720] = 15, + [48543] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1558), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4492), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 25, - anon_sym_SEMI, + ACTIONS(4490), 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, @@ -143630,121 +172072,41 @@ 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, - [31798] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1559), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4140), 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(4138), 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_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31856] = 22, + anon_sym_as, + [48596] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4790), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4792), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4794), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1967), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4206), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1560), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3958), 7, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(4202), 21, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4142), 10, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143755,170 +172117,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31948] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1561), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 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(4146), 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_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32006] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4152), 1, - anon_sym_LPAREN, - STATE(1562), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4155), 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_SQUOTE, - sym_metavariable, - ACTIONS(4150), 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_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32066] = 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, + [48655] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1968), 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, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4159), 1, - anon_sym_EQ, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + 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, - STATE(1563), 2, + anon_sym_as, + [48708] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4332), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4157), 17, - anon_sym_SEMI, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4330), 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, @@ -143929,25 +172213,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_COMMA, - anon_sym_else, - [32156] = 9, + anon_sym_EQ_EQ, + 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, + [48761] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - anon_sym_LBRACE, - ACTIONS(3558), 1, - anon_sym_COLON_COLON, - ACTIONS(4161), 1, - anon_sym_BANG, - STATE(1514), 1, - sym_field_initializer_list, - STATE(1564), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4296), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143963,11 +172244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 24, - anon_sym_SEMI, + ACTIONS(4294), 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, @@ -143988,193 +172268,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [32222] = 19, - ACTIONS(29), 1, - anon_sym_LT, + [48814] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(2184), 1, - anon_sym_COLON_COLON, - ACTIONS(3400), 1, - sym_identifier, - ACTIONS(3410), 1, - sym_metavariable, - STATE(2109), 1, - sym_scoped_identifier, - STATE(2177), 1, - sym__literal_pattern, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, - STATE(1565), 2, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - STATE(2096), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3406), 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, - [32308] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(4352), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(2184), 1, - anon_sym_COLON_COLON, - ACTIONS(3388), 1, - sym_identifier, - ACTIONS(3398), 1, - sym_metavariable, - STATE(2116), 1, - sym_scoped_identifier, - STATE(2163), 1, - sym__literal_pattern, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, - STATE(1566), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1257), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3396), 3, - sym_self, - sym_super, - sym_crate, - STATE(2096), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3394), 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, - [32394] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4165), 2, - anon_sym_EQ, + anon_sym_DOT, anon_sym_DOT_DOT, - STATE(1567), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4163), 19, - anon_sym_SEMI, + ACTIONS(4350), 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, @@ -144185,67 +172309,92 @@ 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, - [32480] = 21, + anon_sym_as, + [48867] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1972), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4356), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4169), 1, - anon_sym_EQ, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4354), 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(1568), 2, + anon_sym_as, + [48920] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4270), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4167), 17, - anon_sym_SEMI, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4268), 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, @@ -144256,195 +172405,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_COMMA, - anon_sym_else, - [32570] = 19, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_EQ_EQ, + 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, + [48973] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3596), 1, - anon_sym_COLON_COLON, - ACTIONS(3620), 1, - sym_identifier, - ACTIONS(3626), 1, - sym_metavariable, - STATE(2811), 1, - sym_scoped_identifier, - STATE(3100), 1, - sym__literal_pattern, - STATE(3590), 1, - sym_bracketed_type, - STATE(3607), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - STATE(1569), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3624), 3, - sym_self, - sym_super, - sym_crate, - STATE(2465), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3622), 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, - [32656] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1667), 1, + ACTIONS(4288), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3592), 1, - sym_identifier, - ACTIONS(3596), 1, - anon_sym_COLON_COLON, - ACTIONS(3600), 1, - sym_metavariable, - STATE(2686), 1, - sym_scoped_identifier, - STATE(2950), 1, - sym__literal_pattern, - STATE(3590), 1, - sym_bracketed_type, - STATE(3607), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - STATE(1570), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3598), 3, - sym_self, - sym_super, - sym_crate, - STATE(2465), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3594), 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, - [32742] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(403), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1571), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(401), 19, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4286), 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, @@ -144455,70 +172453,92 @@ 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, - [32828] = 22, + anon_sym_as, + [49026] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1975), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4292), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4290), 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(1572), 2, + anon_sym_as, + [49079] = 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(4092), 3, + ACTIONS(4316), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3878), 7, - anon_sym_SEMI, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4314), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4142), 10, + 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, @@ -144529,63 +172549,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32920] = 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, + [49132] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1977), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4414), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4412), 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(1573), 2, + anon_sym_as, + [49185] = 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(4092), 3, + ACTIONS(4382), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 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_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4380), 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, @@ -144596,68 +172645,67 @@ 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, - [33010] = 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, + anon_sym_as, + [49238] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4668), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4670), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4672), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4676), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4144), 1, + ACTIONS(4682), 1, anon_sym_EQ, - ACTIONS(4090), 2, + ACTIONS(4688), 1, + anon_sym_DOT_DOT, + ACTIONS(4664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4678), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4690), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1574), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4666), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4796), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4684), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4022), 7, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4142), 10, + ACTIONS(4680), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144668,96 +172716,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33102] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3596), 1, - anon_sym_COLON_COLON, - ACTIONS(3608), 1, - sym_identifier, - ACTIONS(3614), 1, - sym_metavariable, - STATE(2801), 1, - sym_scoped_identifier, - STATE(3086), 1, - sym__literal_pattern, - STATE(3590), 1, - sym_bracketed_type, - STATE(3607), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - STATE(1575), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3612), 3, - sym_self, - sym_super, - sym_crate, - STATE(2465), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3610), 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, - [33188] = 10, + [49323] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - STATE(1576), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4222), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -144766,13 +172738,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(3920), 25, - anon_sym_SEMI, + ACTIONS(4220), 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, @@ -144791,116 +172763,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_COMMA, - anon_sym_else, - [33256] = 19, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_as, + [49376] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(2184), 1, - anon_sym_COLON_COLON, - ACTIONS(3376), 1, - sym_identifier, - ACTIONS(3386), 1, - sym_metavariable, - STATE(2136), 1, - sym_scoped_identifier, - STATE(2208), 1, - sym__literal_pattern, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, - STATE(1577), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3384), 3, - sym_self, - sym_super, - sym_crate, - STATE(2096), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3382), 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, - [33342] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4090), 2, + ACTIONS(4256), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1578), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 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(3920), 25, - anon_sym_SEMI, + ACTIONS(4254), 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, @@ -144919,48 +172811,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_COMMA, - anon_sym_else, - [33416] = 12, + anon_sym_as, + [49429] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1579), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4320), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 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(3920), 25, - anon_sym_SEMI, + ACTIONS(4318), 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, @@ -144979,52 +172859,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_else, - [33488] = 14, + anon_sym_as, + [49482] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4090), 2, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4798), 1, + anon_sym_SEMI, + ACTIONS(4800), 1, + anon_sym_else, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1580), 2, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 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(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145035,83 +172926,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_else, - [33564] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_COLON_COLON, - STATE(1581), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4155), 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(4150), 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_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33624] = 8, + [49571] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_BANG, - ACTIONS(4174), 1, - anon_sym_COLON_COLON, - STATE(1514), 1, - sym_field_initializer_list, - STATE(1582), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4308), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145127,10 +172950,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 24, + ACTIONS(4306), 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, @@ -145150,25 +172973,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, - [33687] = 9, + [49624] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4120), 1, - anon_sym_BANG, - ACTIONS(4176), 1, - anon_sym_LBRACE, - ACTIONS(4178), 1, - anon_sym_COLON_COLON, - STATE(1823), 1, - sym_field_initializer_list, - STATE(1583), 2, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4386), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145184,7 +172998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(4384), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145208,48 +173022,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33752] = 10, + [49677] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(4180), 1, - anon_sym_COLON_COLON, - STATE(1646), 1, - sym_type_arguments, - STATE(1671), 1, - sym_parameters, - STATE(1584), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3455), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(287), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3453), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1986), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145258,28 +173086,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, - [33819] = 8, + [49766] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3560), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - sym_identifier, - STATE(1585), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 16, + ACTIONS(4238), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145295,12 +173112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3412), 23, - anon_sym_SEMI, + ACTIONS(4236), 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, @@ -145320,19 +173135,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [33882] = 7, + anon_sym_as, + [49819] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_BANG, - ACTIONS(3500), 1, - anon_sym_COLON_COLON, - STATE(1586), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3496), 17, + ACTIONS(4340), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145343,14 +173155,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(3494), 22, + ACTIONS(4338), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145365,32 +173175,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_as, - anon_sym_LT2, - [33942] = 6, + [49872] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3574), 1, - anon_sym_LBRACE, - STATE(1587), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 16, + ACTIONS(4344), 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, @@ -145400,7 +173208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3489), 24, + ACTIONS(4342), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145423,42 +173231,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_COLON_COLON, anon_sym_as, - [34000] = 6, + [49925] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3580), 1, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, anon_sym_LBRACE, - STATE(1588), 2, + ACTIONS(4748), 1, + anon_sym_STAR, + ACTIONS(4754), 1, + anon_sym_COLON_COLON, + ACTIONS(4758), 1, + sym_metavariable, + ACTIONS(4804), 1, + anon_sym_RBRACE, + STATE(2826), 1, + sym_scoped_identifier, + STATE(3607), 1, + sym__use_clause, + STATE(4017), 1, + sym_bracketed_type, + STATE(4282), 1, + sym_generic_type_with_turbofish, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4756), 3, + sym_self, + sym_super, + sym_crate, + STATE(3435), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4750), 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, + [50002] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3508), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4806), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1991), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145469,50 +173357,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_COLON_COLON, - anon_sym_as, - [34058] = 7, + [50089] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4026), 1, - anon_sym_COLON_COLON, - ACTIONS(4161), 1, - anon_sym_BANG, - STATE(1589), 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(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1451), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4808), 2, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + STATE(1992), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145523,31 +173422,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [50176] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4810), 1, + anon_sym_RBRACE, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1993), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 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, - [34118] = 6, + ACTIONS(4612), 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, + [50265] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, - anon_sym_LBRACE, - STATE(1590), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, + ACTIONS(4442), 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, @@ -145557,7 +173512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 24, + ACTIONS(4440), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145580,45 +173535,193 @@ 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, - [34176] = 7, + [50318] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_BANG, - ACTIONS(3516), 1, - anon_sym_COLON_COLON, - STATE(1591), 2, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4668), 1, + anon_sym_CARET, + ACTIONS(4670), 1, + anon_sym_AMP, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_DOT_DOT, + ACTIONS(4814), 1, + anon_sym_AMP_AMP, + ACTIONS(4664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4678), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4686), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4690), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4812), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(3512), 17, - anon_sym_PLUS, + ACTIONS(4666), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4684), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4680), 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, + [50405] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4788), 1, + anon_sym_COMMA, + ACTIONS(4816), 1, + anon_sym_RPAREN, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1996), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 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(3510), 22, - anon_sym_LPAREN, + ACTIONS(4612), 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, + [50494] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(4208), 1, anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, anon_sym_AMP_AMP, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4818), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1997), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145627,30 +173730,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, - anon_sym_LT2, - [34236] = 5, + [50581] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1592), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 16, + ACTIONS(4434), 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, @@ -145660,10 +173756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3489), 25, + ACTIONS(4432), 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, @@ -145683,25 +173779,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, - [34292] = 5, + [50634] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1593), 2, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, + ACTIONS(3975), 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, @@ -145711,10 +173804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 25, + ACTIONS(3973), 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, @@ -145734,46 +173827,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_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [34348] = 7, + [50687] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, - anon_sym_BANG, - ACTIONS(3489), 1, - anon_sym_COLON_COLON, - STATE(1594), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3485), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4792), 1, + anon_sym_QMARK, + ACTIONS(4794), 1, + anon_sym_DOT, + ACTIONS(4824), 1, anon_sym_CARET, + ACTIONS(4826), 1, anon_sym_AMP, + ACTIONS(4828), 1, anon_sym_PIPE, + ACTIONS(4830), 1, + anon_sym_AMP_AMP, + ACTIONS(4832), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(377), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4820), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4834), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4838), 2, anon_sym_GT, anon_sym_LT, + STATE(2000), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4822), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4836), 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(3483), 22, + ACTIONS(375), 14, 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, @@ -145782,49 +173886,195 @@ 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, - [34408] = 7, + [50768] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(4054), 1, - anon_sym_COLON_COLON, - STATE(1595), 2, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4792), 1, + anon_sym_QMARK, + ACTIONS(4794), 1, + anon_sym_DOT, + ACTIONS(4824), 1, + anon_sym_CARET, + ACTIONS(4826), 1, + anon_sym_AMP, + ACTIONS(4828), 1, + anon_sym_PIPE, + ACTIONS(4830), 1, + anon_sym_AMP_AMP, + ACTIONS(4832), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4842), 1, + anon_sym_DOT_DOT, + ACTIONS(4820), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4834), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4838), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4844), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, - anon_sym_PLUS, + ACTIONS(4822), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4836), 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50853] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4846), 1, + anon_sym_SEMI, + ACTIONS(4848), 1, + anon_sym_else, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3412), 24, - anon_sym_LPAREN, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2002), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 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, + [50942] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(4208), 1, anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4854), 1, + anon_sym_CARET, + ACTIONS(4856), 1, + anon_sym_AMP, + ACTIONS(4858), 1, + anon_sym_PIPE, + ACTIONS(4860), 1, anon_sym_AMP_AMP, + ACTIONS(4862), 1, anon_sym_PIPE_PIPE, + ACTIONS(4868), 1, + anon_sym_EQ, + ACTIONS(4874), 1, + anon_sym_DOT_DOT, + ACTIONS(4436), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4850), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4864), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4872), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4876), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2003), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4852), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4870), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4866), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145835,27 +174085,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [51029] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4878), 1, + anon_sym_RBRACE, + ACTIONS(4880), 1, + anon_sym_COMMA, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2004), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 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_SQUOTE, - anon_sym_as, - [34468] = 7, + ACTIONS(4612), 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, + [51118] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, - anon_sym_BANG, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - STATE(1596), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 17, + ACTIONS(4398), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145866,14 +174170,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(3502), 22, + ACTIONS(4396), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145888,54 +174190,133 @@ 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, - [34528] = 9, + [51171] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1659), 1, - sym_type_arguments, - STATE(1673), 1, - sym_parameters, - STATE(1597), 2, + ACTIONS(4620), 1, + anon_sym_EQ, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4792), 1, + anon_sym_QMARK, + ACTIONS(4794), 1, + anon_sym_DOT, + ACTIONS(4824), 1, + anon_sym_CARET, + ACTIONS(4826), 1, + anon_sym_AMP, + ACTIONS(4828), 1, + anon_sym_PIPE, + ACTIONS(4830), 1, + anon_sym_AMP_AMP, + ACTIONS(4832), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4842), 1, + anon_sym_DOT_DOT, + ACTIONS(4820), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4834), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4838), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4844), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 17, - anon_sym_PLUS, + ACTIONS(4822), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4836), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4618), 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, + [51256] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4598), 1, + anon_sym_EQ, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4792), 1, + anon_sym_QMARK, + ACTIONS(4794), 1, + anon_sym_DOT, + ACTIONS(4824), 1, anon_sym_CARET, + ACTIONS(4826), 1, anon_sym_AMP, + ACTIONS(4828), 1, anon_sym_PIPE, + ACTIONS(4830), 1, + anon_sym_AMP_AMP, + ACTIONS(4832), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4842), 1, + anon_sym_DOT_DOT, + ACTIONS(4820), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4834), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4838), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4844), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2007), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4822), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4836), 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(3526), 20, - anon_sym_LBRACK, + ACTIONS(4596), 12, + anon_sym_LPAREN, 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, @@ -145944,30 +174325,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, - [34592] = 9, + [51341] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1659), 1, - sym_type_arguments, - STATE(1673), 1, - sym_parameters, - STATE(1598), 2, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 17, + ACTIONS(4226), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145978,14 +174346,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(3518), 20, + ACTIONS(4224), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145999,29 +174366,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_as, - [34656] = 5, + [51394] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1599), 2, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, + ACTIONS(4230), 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, @@ -146031,10 +174399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 25, + ACTIONS(4228), 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, @@ -146054,26 +174422,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_SQUOTE, anon_sym_as, - [34712] = 9, + [51447] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1659), 1, - sym_type_arguments, - STATE(1673), 1, - sym_parameters, - STATE(1600), 2, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 17, + ACTIONS(3830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146084,14 +174442,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(3522), 20, + ACTIONS(3832), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -146105,26 +174462,84 @@ 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, - [34776] = 7, + [51500] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_BANG, - ACTIONS(4184), 1, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_LBRACE, + ACTIONS(4748), 1, + anon_sym_STAR, + ACTIONS(4754), 1, anon_sym_COLON_COLON, - STATE(1601), 2, + ACTIONS(4758), 1, + sym_metavariable, + ACTIONS(4882), 1, + anon_sym_RBRACE, + STATE(2826), 1, + sym_scoped_identifier, + STATE(3607), 1, + sym__use_clause, + STATE(4017), 1, + sym_bracketed_type, + STATE(4282), 1, + sym_generic_type_with_turbofish, + STATE(2011), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4756), 3, + sym_self, + sym_super, + sym_crate, + STATE(3435), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4750), 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, + [51577] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3983), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146140,10 +174555,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 24, + ACTIONS(3981), 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, @@ -146163,26 +174578,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_SQUOTE, anon_sym_as, - [34836] = 6, + [51630] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3590), 1, - anon_sym_LBRACE, - STATE(1602), 2, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, + ACTIONS(4378), 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, @@ -146192,7 +174603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 24, + ACTIONS(4376), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146215,25 +174626,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, - [34894] = 9, + [51683] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1659), 1, - sym_type_arguments, - STATE(1673), 1, - sym_parameters, - STATE(1603), 2, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 17, + ACTIONS(3989), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146244,14 +174646,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(3532), 20, + ACTIONS(3987), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -146265,29 +174666,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_as, - [34958] = 5, + [51736] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1604), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, + ACTIONS(4214), 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, @@ -146297,10 +174699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3508), 25, + ACTIONS(4212), 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, @@ -146320,89 +174722,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_SQUOTE, anon_sym_as, - [35014] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4186), 1, - sym_identifier, - ACTIONS(4188), 1, - anon_sym_fn, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(2632), 1, - sym_scoped_type_identifier, - STATE(3478), 1, - sym_function_modifiers, - STATE(3513), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1605), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 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, - [35103] = 7, + [51789] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4190), 1, - anon_sym_SQUOTE, - STATE(1757), 1, - sym_label, - STATE(1606), 2, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(4300), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146418,7 +174747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 23, + ACTIONS(4298), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146442,84 +174771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35162] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4192), 1, - sym_identifier, - ACTIONS(4194), 1, - anon_sym_fn, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(2698), 1, - sym_scoped_type_identifier, - STATE(3513), 1, - sym_generic_type, - STATE(3542), 1, - sym_function_modifiers, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1607), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 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, - [35251] = 6, + [51842] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1428), 1, - sym_label, - STATE(1608), 2, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(4312), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146535,10 +174795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 24, + ACTIONS(4310), 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, @@ -146558,41 +174818,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_SQUOTE, anon_sym_as, - [35308] = 6, + [51895] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 1, - anon_sym_COLON_COLON, - STATE(1609), 2, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, + anon_sym_AMP, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4884), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, - anon_sym_PLUS, + ACTIONS(4550), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 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, + [51982] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4602), 1, + anon_sym_EQ, + ACTIONS(4854), 1, anon_sym_CARET, + ACTIONS(4856), 1, anon_sym_AMP, + ACTIONS(4858), 1, anon_sym_PIPE, + ACTIONS(4860), 1, + anon_sym_AMP_AMP, + ACTIONS(4862), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4874), 1, + anon_sym_DOT_DOT, + ACTIONS(4850), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4872), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3774), 24, + ACTIONS(4876), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2019), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4852), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4870), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4600), 12, 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, @@ -146602,75 +174947,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - 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, - [35365] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + anon_sym_GT_GT_EQ, + [52067] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4856), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4858), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4860), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4862), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4868), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4874), 1, anon_sym_DOT_DOT, - STATE(418), 1, - sym_block, - STATE(3532), 1, - sym_label, - ACTIONS(4196), 2, + ACTIONS(4486), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4850), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4872), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4876), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1610), 2, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4852), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4870), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4866), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146681,15 +175013,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35460] = 5, + [52154] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1611), 2, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(3694), 15, + ACTIONS(4438), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146705,10 +175037,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3692), 25, + ACTIONS(4436), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -146729,17 +175060,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, - [35515] = 5, + [52207] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1612), 2, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 15, + ACTIONS(1461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146755,10 +175085,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3702), 25, + ACTIONS(1459), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -146779,17 +175108,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, - [35570] = 5, + [52260] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1613), 2, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3712), 15, + ACTIONS(4496), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146805,10 +175133,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3710), 25, + ACTIONS(4494), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -146829,68 +175156,44 @@ 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, - [35625] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [52313] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4200), 1, + STATE(2024), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4852), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4360), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(413), 1, - sym_block, - STATE(3532), 1, - sym_label, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1614), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 10, + anon_sym_DOT_DOT, + ACTIONS(4358), 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, @@ -146901,39 +175204,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35720] = 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, + [52376] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4224), 1, - anon_sym_else, - STATE(1807), 1, - sym_else_clause, - STATE(1615), 2, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4856), 1, + anon_sym_AMP, + ACTIONS(4850), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4864), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(1395), 15, - anon_sym_PLUS, + ACTIONS(4852), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4360), 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(1393), 23, + ACTIONS(4358), 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, @@ -146952,38 +175266,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_as, - [35779] = 6, + [52445] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 1, - anon_sym_COLON_COLON, - STATE(1616), 2, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4850), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4864), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, - anon_sym_PLUS, + ACTIONS(4852), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4360), 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(3774), 24, + ACTIONS(4358), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -147002,38 +175321,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, - [35836] = 5, + [52512] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1617), 2, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4854), 1, + anon_sym_CARET, + ACTIONS(4856), 1, + anon_sym_AMP, + ACTIONS(4850), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4864), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, - anon_sym_PLUS, + ACTIONS(4852), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(4360), 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(3516), 24, + ACTIONS(4358), 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, @@ -147052,38 +175378,52 @@ 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, - [35891] = 5, + [52583] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1618), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3498), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4854), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(4856), 1, anon_sym_AMP, + ACTIONS(4858), 1, anon_sym_PIPE, + ACTIONS(4360), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4850), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4872), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3500), 24, + STATE(2028), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4852), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4870), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4358), 16, 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, @@ -147096,74 +175436,57 @@ 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, - [35946] = 25, + [52660] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(875), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4856), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4858), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4860), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4360), 2, anon_sym_EQ, - ACTIONS(4226), 1, - anon_sym_SEMI, - ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4232), 1, - anon_sym_COMMA, - STATE(3017), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4850), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4872), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1619), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4852), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4870), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4358), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147174,24 +175497,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36041] = 7, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [52739] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4120), 1, - anon_sym_BANG, - ACTIONS(4234), 1, - anon_sym_COLON_COLON, - STATE(1620), 2, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4850), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, + ACTIONS(4852), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4360), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -147200,13 +175531,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(1451), 23, + ACTIONS(4358), 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, @@ -147225,39 +175553,60 @@ 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, - [36100] = 5, + [52804] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1621), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3680), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4570), 1, + anon_sym_EQ, + ACTIONS(4854), 1, anon_sym_CARET, + ACTIONS(4856), 1, anon_sym_AMP, + ACTIONS(4858), 1, anon_sym_PIPE, + ACTIONS(4860), 1, + anon_sym_AMP_AMP, + ACTIONS(4862), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4874), 1, + anon_sym_DOT_DOT, + ACTIONS(4850), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4872), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3678), 25, + ACTIONS(4876), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2031), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4852), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4870), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4564), 12, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147268,74 +175617,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_COLON_COLON, - anon_sym_as, - [36155] = 25, + [52889] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4594), 1, + anon_sym_EQ, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4856), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4858), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4860), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4862), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4874), 1, anon_sym_DOT_DOT, - STATE(1470), 1, - sym_block, - STATE(3677), 1, - sym_label, - ACTIONS(4196), 2, + ACTIONS(4850), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4872), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4876), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1622), 2, + STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4852), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4870), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4592), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147346,39 +175681,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36250] = 7, + [52974] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3740), 1, - anon_sym_BANG, - ACTIONS(3742), 1, - anon_sym_COLON_COLON, - STATE(1623), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3414), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4854), 1, anon_sym_CARET, + ACTIONS(4856), 1, anon_sym_AMP, + ACTIONS(4858), 1, anon_sym_PIPE, + ACTIONS(4850), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(2033), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4852), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4360), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(4358), 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, @@ -147397,67 +175739,56 @@ 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, - [36309] = 25, + [53047] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4856), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4858), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4860), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4862), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4578), 2, anon_sym_EQ, - ACTIONS(4220), 1, anon_sym_DOT_DOT, - STATE(1479), 1, - sym_block, - STATE(3677), 1, - sym_label, - ACTIONS(4196), 2, + ACTIONS(4850), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4872), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1624), 2, + STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4852), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4870), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4576), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147468,66 +175799,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36404] = 25, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53128] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(744), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(2035), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4374), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4236), 1, - anon_sym_SEMI, - ACTIONS(4238), 1, - anon_sym_COMMA, - STATE(3117), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1625), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4372), 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, @@ -147538,66 +175842,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36499] = 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, + anon_sym_as, + [53181] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - STATE(483), 1, - sym_block, - STATE(3740), 1, - sym_label, - ACTIONS(4196), 2, + ACTIONS(4886), 1, + anon_sym_SEMI, + ACTIONS(4888), 1, + anon_sym_else, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1626), 2, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147608,66 +175915,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36594] = 25, + [53270] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + STATE(2037), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4450), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(482), 1, - sym_block, - STATE(3740), 1, - sym_label, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4448), 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(1627), 2, + anon_sym_as, + [53323] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4454), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4452), 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(4212), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53376] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2039), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4474), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4472), 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, @@ -147678,66 +176052,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36689] = 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, + anon_sym_as, + [53429] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(4790), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4792), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4794), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + STATE(2040), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4260), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(1813), 1, - sym_block, - STATE(3741), 1, - sym_label, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + anon_sym_DOT_DOT, + ACTIONS(4258), 21, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1628), 2, + anon_sym_as, + [53488] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4480), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 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(4478), 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, @@ -147748,66 +176151,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36784] = 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, + anon_sym_as, + [53541] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4856), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4858), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4860), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4862), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4868), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4874), 1, anon_sym_DOT_DOT, - STATE(1818), 1, - sym_block, - STATE(3741), 1, - sym_label, - ACTIONS(4196), 2, + ACTIONS(4490), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4850), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4872), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4876), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1629), 2, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4852), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4870), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4866), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147818,17 +176223,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36879] = 6, + [53628] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4054), 1, - anon_sym_COLON_COLON, - STATE(1630), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(4446), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147844,10 +176247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 24, + ACTIONS(4444), 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, @@ -147867,19 +176270,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, - [36936] = 6, + [53681] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4240), 1, - anon_sym_COLON_COLON, - STATE(1631), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4484), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147895,10 +176295,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 24, + ACTIONS(4482), 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, @@ -147918,24 +176318,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_SQUOTE, anon_sym_as, - [36993] = 5, + [53734] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1632), 2, + STATE(2045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 16, + ACTIONS(3979), 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, @@ -147945,7 +176343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3489), 24, + ACTIONS(3977), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147968,20 +176366,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, - [37048] = 6, + [53787] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1633), 2, + STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(4218), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147997,7 +176391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 23, + ACTIONS(4216), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148021,89 +176415,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37105] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4242), 1, - sym_identifier, - ACTIONS(4244), 1, - anon_sym_fn, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(2843), 1, - sym_scoped_type_identifier, - STATE(3513), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(3776), 1, - sym_function_modifiers, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1634), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 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, - [37194] = 5, + [53840] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1635), 2, + STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, + ACTIONS(4246), 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, @@ -148113,7 +176439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3508), 24, + ACTIONS(4244), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148136,20 +176462,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, - [37249] = 6, + [53893] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1636), 2, + STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(4274), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148165,7 +176487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 23, + ACTIONS(4272), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148189,66 +176511,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37306] = 25, + [53946] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4856), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4858), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4860), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4862), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4868), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4890), 1, + anon_sym_LBRACE, + ACTIONS(4892), 1, anon_sym_DOT_DOT, - ACTIONS(4246), 1, - anon_sym_SEMI, - ACTIONS(4248), 1, - anon_sym_COMMA, - STATE(2986), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + STATE(402), 1, + sym_match_block, + ACTIONS(4850), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4872), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4894), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1637), 2, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4852), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4870), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4866), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148259,133 +176577,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37401] = 22, - ACTIONS(29), 1, + [54035] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2050), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4324), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4322), 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, + [54088] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2051), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4366), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4364), 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, + [54141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4250), 1, - sym_identifier, - ACTIONS(4252), 1, - anon_sym_fn, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(2725), 1, - sym_scoped_type_identifier, - STATE(3513), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3613), 1, - sym_function_modifiers, - STATE(3738), 1, - sym_generic_type_with_turbofish, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1638), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 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, - [37490] = 25, + ACTIONS(4370), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4368), 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, + [54194] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(901), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, + ACTIONS(289), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4254), 1, + ACTIONS(4802), 1, anon_sym_SEMI, - ACTIONS(4256), 1, - anon_sym_COMMA, - STATE(3154), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1639), 2, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148396,17 +176787,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37585] = 6, + [54283] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_COLON_COLON, - STATE(1640), 2, + STATE(2054), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4500), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4498), 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, + [54336] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2055), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4390), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4388), 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, + [54389] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4394), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148422,7 +176907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(4392), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148446,15 +176931,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37641] = 5, + [54442] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1641), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3708), 15, + ACTIONS(4422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148470,7 +176955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3706), 24, + ACTIONS(4420), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148493,17 +176978,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, - [37695] = 5, + [54495] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1642), 2, + STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3588), 15, + ACTIONS(4430), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148519,7 +177003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3586), 24, + ACTIONS(4428), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148542,17 +177026,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, - [37749] = 5, + [54548] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1643), 2, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, + ACTIONS(4406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148568,7 +177051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3616), 24, + ACTIONS(4404), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148591,17 +177074,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, - [37803] = 5, + [54601] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1644), 2, + STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3684), 15, + ACTIONS(4410), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148617,7 +177099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3682), 24, + ACTIONS(4408), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148640,21 +177122,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, - [37857] = 7, + [54654] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4260), 1, - anon_sym_LPAREN, - STATE(1833), 1, - sym_arguments, - STATE(1645), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, + ACTIONS(4418), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148670,7 +177147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 22, + ACTIONS(4416), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -148693,15 +177171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37915] = 5, + [54707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1646), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, + ACTIONS(4488), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148717,7 +177195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3628), 24, + ACTIONS(4486), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148740,58 +177218,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, - [37969] = 19, + [54760] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + STATE(2063), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1585), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(403), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1647), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(401), 15, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1587), 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, @@ -148802,128 +177260,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_SQUOTE, - [38051] = 21, + anon_sym_as, + [54813] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4218), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4264), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1648), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(1451), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(341), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [38137] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4200), 1, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1649), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 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, @@ -148934,61 +177308,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_SQUOTE, - [38223] = 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, + [54866] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_EQ, - ACTIONS(4200), 1, + STATE(2065), 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, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1650), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4157), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1467), 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, @@ -148999,16 +177356,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_SQUOTE, - [38309] = 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, + [54919] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1651), 2, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 15, + ACTIONS(1485), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149024,7 +177387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3714), 24, + ACTIONS(1483), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149047,17 +177410,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, - [38363] = 5, + [54972] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1652), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3584), 15, + ACTIONS(1497), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149073,7 +177435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3582), 24, + ACTIONS(1495), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149096,19 +177458,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, - [38417] = 6, + [55025] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3742), 1, - anon_sym_COLON_COLON, - STATE(1653), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(1505), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149124,7 +177483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(1503), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149148,64 +177507,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38473] = 24, + [55078] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4266), 1, - anon_sym_RPAREN, - ACTIONS(4268), 1, - anon_sym_COMMA, - STATE(2888), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1654), 2, + ACTIONS(4896), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149216,169 +177572,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38565] = 24, + [55165] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(999), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 1, - anon_sym_COMMA, - STATE(2896), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1655), 2, + ACTIONS(4898), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 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, - [38657] = 18, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4276), 1, - anon_sym_RBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_COMMA, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3023), 1, - sym__use_clause, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1656), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 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, - [38737] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - STATE(1657), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3520), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3518), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149389,71 +177637,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [38793] = 24, + [55252] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 1, + ACTIONS(4436), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2929), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1658), 2, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149464,15 +177702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38885] = 5, + [55339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1659), 2, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3634), 15, + ACTIONS(1461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149488,7 +177726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3632), 24, + ACTIONS(1459), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149511,19 +177749,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, - [38939] = 6, + [55392] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - anon_sym_COLON_COLON, - STATE(1660), 2, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, + ACTIONS(4234), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149539,7 +177774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 23, + ACTIONS(4232), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149563,15 +177798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38995] = 5, + [55445] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1661), 2, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3698), 15, + ACTIONS(1489), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149587,7 +177822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3696), 24, + ACTIONS(1487), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149610,19 +177845,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_DASH_GT, anon_sym_as, - [39049] = 6, + [55498] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4296), 1, - anon_sym_DASH_GT, - STATE(1662), 2, + ACTIONS(4602), 1, + anon_sym_EQ, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4792), 1, + anon_sym_QMARK, + ACTIONS(4794), 1, + anon_sym_DOT, + ACTIONS(4824), 1, + anon_sym_CARET, + ACTIONS(4826), 1, + anon_sym_AMP, + ACTIONS(4828), 1, + anon_sym_PIPE, + ACTIONS(4830), 1, + anon_sym_AMP_AMP, + ACTIONS(4832), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4842), 1, + anon_sym_DOT_DOT, + ACTIONS(4820), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4834), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4838), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4844), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2075), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4822), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4836), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4600), 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, + [55583] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3638), 15, + ACTIONS(1509), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149638,7 +177934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3636), 23, + ACTIONS(1507), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149662,45 +177958,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39105] = 14, + [55636] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1663), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(1441), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 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(3920), 21, + ACTIONS(1439), 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, @@ -149719,129 +178005,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, - [39177] = 24, + anon_sym_as, + [55689] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4298), 1, + ACTIONS(4486), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2979), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1664), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [39269] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4169), 1, - anon_sym_EQ, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1665), 2, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4167), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149852,18 +178071,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, - [39355] = 6, + [55776] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - anon_sym_COLON_COLON, - STATE(1666), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 15, + ACTIONS(1529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149879,7 +178095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3522), 23, + ACTIONS(1527), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149903,52 +178119,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39411] = 17, + [55829] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4790), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4792), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4794), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4840), 1, anon_sym_as, - ACTIONS(4200), 1, + STATE(2080), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4822), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4360), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(3922), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1667), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3920), 17, + anon_sym_DOT_DOT, + ACTIONS(4358), 20, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149961,46 +178166,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_SQUOTE, - [39489] = 12, + [55892] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4790), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4792), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4794), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4826), 1, + anon_sym_AMP, + ACTIONS(4840), 1, anon_sym_as, - ACTIONS(4196), 2, + ACTIONS(4820), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4834), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1668), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4822), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 7, + ACTIONS(4360), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 21, + ACTIONS(4358), 20, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150019,38 +178228,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, - [39557] = 6, + [55961] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - anon_sym_COLON_COLON, - STATE(1669), 2, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4792), 1, + anon_sym_QMARK, + ACTIONS(4794), 1, + anon_sym_DOT, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4820), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4834), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, - anon_sym_PLUS, + ACTIONS(4822), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4360), 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(3532), 23, + ACTIONS(4358), 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, @@ -150069,43 +178283,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [39613] = 11, + [56028] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4790), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4792), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4794), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4824), 1, + anon_sym_CARET, + ACTIONS(4826), 1, + anon_sym_AMP, + ACTIONS(4840), 1, anon_sym_as, - ACTIONS(4196), 2, + ACTIONS(4820), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1670), 2, + ACTIONS(4834), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4822), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 9, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(4360), 5, 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(3920), 21, + ACTIONS(4358), 20, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150124,38 +178340,52 @@ 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, - [39679] = 6, + [56099] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4300), 1, - anon_sym_DASH_GT, - STATE(1671), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3644), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4792), 1, + anon_sym_QMARK, + ACTIONS(4794), 1, + anon_sym_DOT, + ACTIONS(4824), 1, anon_sym_CARET, + ACTIONS(4826), 1, anon_sym_AMP, + ACTIONS(4828), 1, anon_sym_PIPE, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4360), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4820), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4834), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4838), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3642), 23, + STATE(2084), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4822), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4836), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4358), 16, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150168,69 +178398,57 @@ 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, - [39735] = 22, + [56176] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4790), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4792), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4794), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4824), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4826), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4828), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4830), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4360), 2, anon_sym_EQ, - ACTIONS(4262), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4820), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4834), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4838), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1672), 2, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3958), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4198), 3, + ACTIONS(4822), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4836), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4358), 15, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150241,22 +178459,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39823] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [56255] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4302), 1, - anon_sym_DASH_GT, - STATE(1673), 2, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4792), 1, + anon_sym_QMARK, + ACTIONS(4794), 1, + anon_sym_DOT, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4820), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(3650), 15, - anon_sym_PLUS, + ACTIONS(4822), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4360), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150265,13 +178493,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(3648), 23, + ACTIONS(4358), 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, @@ -150290,65 +178515,60 @@ 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, - [39879] = 24, + [56320] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, + ACTIONS(4570), 1, + anon_sym_EQ, + ACTIONS(4790), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4792), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4794), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4824), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4826), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4828), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4830), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4832), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4842), 1, anon_sym_DOT_DOT, - ACTIONS(4304), 1, - anon_sym_COMMA, - STATE(3039), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4820), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4834), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4838), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4844), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1674), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4822), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4836), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4564), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150359,62 +178579,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39971] = 22, + [56405] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4594), 1, + anon_sym_EQ, + ACTIONS(4790), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4792), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4794), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4824), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4826), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4828), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4830), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4832), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4842), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4820), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4834), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4838), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4844), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1675), 2, + STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(4022), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4198), 3, + ACTIONS(4822), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4836), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4592), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150425,37 +178643,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40059] = 6, + [56490] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4306), 1, - anon_sym_COLON_COLON, - STATE(1676), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3520), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4792), 1, + anon_sym_QMARK, + ACTIONS(4794), 1, + anon_sym_DOT, + ACTIONS(4824), 1, anon_sym_CARET, + ACTIONS(4826), 1, anon_sym_AMP, + ACTIONS(4828), 1, anon_sym_PIPE, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4820), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4834), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(2089), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4822), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4360), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 23, + ACTIONS(4358), 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, @@ -150474,63 +178701,56 @@ 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, - [40115] = 22, + [56563] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4790), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4792), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4794), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4824), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4826), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4828), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4830), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4832), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4578), 2, anon_sym_EQ, - ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4820), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4834), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4838), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1677), 2, + STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4822), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4308), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4102), 4, + ACTIONS(4836), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4576), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150541,62 +178761,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40203] = 22, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [56644] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(2091), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4458), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1678), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4310), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4456), 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, @@ -150607,17 +178804,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40291] = 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, + [56697] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - anon_sym_COLON_COLON, - STATE(1679), 2, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(1477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150633,7 +178835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 23, + ACTIONS(1475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150657,60 +178859,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40347] = 21, + [56750] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4112), 1, - anon_sym_EQ, - ACTIONS(4200), 1, + STATE(2093), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1473), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1680), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4108), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1471), 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, @@ -150721,65 +178900,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_SQUOTE, - [40433] = 24, + anon_sym_EQ_EQ, + 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, + [56803] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4312), 1, + ACTIONS(4490), 2, anon_sym_RPAREN, - ACTIONS(4314), 1, anon_sym_COMMA, - STATE(2975), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1681), 2, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150790,29 +178972,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40525] = 10, + [56890] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - STATE(1682), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4466), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150821,10 +178994,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(3920), 21, + ACTIONS(4464), 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, @@ -150843,16 +179019,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, - [40589] = 5, + anon_sym_as, + [56943] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1683), 2, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(4200), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150868,7 +179044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1427), 24, + ACTIONS(4198), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150892,61 +179068,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [40643] = 21, + [56996] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4136), 1, - anon_sym_EQ, - ACTIONS(4200), 1, + STATE(2097), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1513), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1511), 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(1684), 2, + anon_sym_as, + [57049] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(1517), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4134), 13, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1515), 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, @@ -150957,16 +179157,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_SQUOTE, - [40729] = 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, + [57102] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1685), 2, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 15, + ACTIONS(1521), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150982,7 +179188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1435), 24, + ACTIONS(1519), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151006,16 +179212,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [40783] = 5, + [57155] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1686), 2, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(1433), 15, + ACTIONS(1525), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151031,7 +179236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 24, + ACTIONS(1523), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151055,47 +179260,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [40837] = 15, + [57208] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1687), 2, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(1539), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 21, + ACTIONS(1537), 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, @@ -151114,63 +179307,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_SQUOTE, - [40911] = 22, + anon_sym_as, + [57261] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + STATE(2102), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1447), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4262), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1688), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3878), 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1445), 23, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 10, + 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, @@ -151181,17 +179349,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40999] = 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, + [57314] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, - anon_sym_COLON_COLON, - STATE(1689), 2, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(961), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151207,7 +179380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(963), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151231,15 +179404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41055] = 5, + [57367] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1690), 2, + STATE(2104), 2, sym_line_comment, sym_block_comment, - ACTIONS(1421), 15, + ACTIONS(979), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151255,7 +179428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1419), 24, + ACTIONS(981), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151279,16 +179452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [41109] = 5, + [57420] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1691), 2, + STATE(2105), 2, sym_line_comment, sym_block_comment, - ACTIONS(1425), 15, + ACTIONS(1465), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151304,7 +179476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1423), 24, + ACTIONS(1463), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151328,16 +179500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [41163] = 5, + [57473] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1692), 2, + STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(3485), 17, + ACTIONS(987), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151348,14 +179519,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(3483), 22, + ACTIONS(989), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151370,54 +179539,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_as, - anon_sym_LT2, - [41217] = 13, + [57526] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4790), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4792), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4794), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4202), 1, + ACTIONS(4824), 1, + anon_sym_CARET, + ACTIONS(4826), 1, anon_sym_AMP, - ACTIONS(4196), 2, + ACTIONS(4828), 1, + anon_sym_PIPE, + ACTIONS(4830), 1, + anon_sym_AMP_AMP, + ACTIONS(4832), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4842), 1, + anon_sym_DOT_DOT, + ACTIONS(4902), 1, + anon_sym_EQ, + ACTIONS(4436), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4820), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4834), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1693), 2, + ACTIONS(4838), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4844), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4822), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4836), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4900), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151428,22 +179613,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, - [41287] = 5, + [57613] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1694), 2, + STATE(2108), 2, sym_line_comment, sym_block_comment, - ACTIONS(3658), 15, + ACTIONS(991), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151459,7 +179637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3656), 24, + ACTIONS(993), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151482,19 +179660,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, - [41341] = 6, + [57666] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4318), 1, - anon_sym_DASH_GT, - STATE(1695), 2, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(3688), 15, + ACTIONS(1501), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151510,7 +179685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3686), 23, + ACTIONS(1499), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151534,39 +179709,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41397] = 6, + [57719] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4320), 1, - anon_sym_DASH_GT, - STATE(1696), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3662), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4792), 1, + anon_sym_QMARK, + ACTIONS(4794), 1, + anon_sym_DOT, + ACTIONS(4824), 1, anon_sym_CARET, + ACTIONS(4826), 1, anon_sym_AMP, + ACTIONS(4828), 1, anon_sym_PIPE, + ACTIONS(4830), 1, + anon_sym_AMP_AMP, + ACTIONS(4832), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4842), 1, + anon_sym_DOT_DOT, + ACTIONS(4902), 1, + anon_sym_EQ, + ACTIONS(4486), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4820), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4834), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4838), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3660), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4844), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2110), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4822), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4836), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4900), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151577,24 +179774,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, - [41453] = 6, + [57806] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4322), 1, - anon_sym_DASH_GT, - STATE(1697), 2, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(3668), 15, + ACTIONS(901), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151610,7 +179798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3666), 23, + ACTIONS(903), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151634,17 +179822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41509] = 6, + [57859] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4324), 1, - anon_sym_DASH_GT, - STATE(1698), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(3674), 15, + ACTIONS(1535), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151660,7 +179846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3672), 23, + ACTIONS(1533), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151684,56 +179870,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41565] = 19, + [57912] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4790), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4792), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4794), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4824), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4826), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4828), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4830), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4832), 1, anon_sym_PIPE_PIPE, - ACTIONS(4165), 2, - anon_sym_EQ, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4842), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4902), 1, + anon_sym_EQ, + ACTIONS(4490), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4820), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4834), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4838), 2, anon_sym_GT, anon_sym_LT, - STATE(1699), 2, + ACTIONS(4844), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4822), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4836), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4163), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4900), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151744,57 +179935,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [41647] = 18, + [57999] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + STATE(2114), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4470), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1700), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3920), 16, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4468), 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, @@ -151806,65 +179976,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_SQUOTE, - [41727] = 23, + anon_sym_as, + [58052] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(2115), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1037), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4326), 1, - anon_sym_RPAREN, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1701), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1039), 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, @@ -151875,15 +180024,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41816] = 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, + [58105] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1702), 2, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(3840), 15, + ACTIONS(1041), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151899,7 +180055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3838), 23, + ACTIONS(1043), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151923,37 +180079,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41869] = 5, + [58158] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1703), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3734), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4904), 1, + anon_sym_SEMI, + ACTIONS(4906), 1, + anon_sym_else, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3730), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2117), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151964,22 +180145,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, - [41922] = 5, + [58247] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1704), 2, + STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(4242), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151995,7 +180169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 23, + ACTIONS(4240), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152019,61 +180193,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41975] = 22, + [58300] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(125), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4330), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1705), 2, + STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152084,15 +180259,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42062] = 5, + [58389] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1706), 2, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4792), 1, + anon_sym_QMARK, + ACTIONS(4794), 1, + anon_sym_DOT, + ACTIONS(4840), 1, + anon_sym_as, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(3884), 15, + ACTIONS(4360), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152106,13 +180289,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(3882), 23, + ACTIONS(4358), 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, @@ -152131,62 +180311,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, - [42115] = 22, + [58450] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4208), 1, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4334), 1, - anon_sym_AMP_AMP, - ACTIONS(4196), 2, + ACTIONS(4908), 1, + anon_sym_RPAREN, + ACTIONS(4910), 1, + anon_sym_COMMA, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4332), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1707), 2, + STATE(2121), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152197,61 +180377,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42202] = 22, + [58539] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4668), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4670), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4672), 1, anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4676), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4682), 1, anon_sym_EQ, - ACTIONS(4360), 1, + ACTIONS(4688), 1, anon_sym_DOT_DOT, - ACTIONS(4022), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4336), 2, + ACTIONS(4664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4678), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4686), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4690), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1708), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4666), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4912), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4684), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4680), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152262,85 +180441,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42289] = 5, + [58624] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1709), 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, + ACTIONS(293), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3906), 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(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42342] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1710), 2, + STATE(2123), 2, sym_line_comment, sym_block_comment, - ACTIONS(4038), 15, - anon_sym_PLUS, + ACTIONS(4550), 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(4036), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152351,22 +180507,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, - [42395] = 5, + [58713] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1711), 2, + STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(1461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152382,7 +180531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(1459), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152406,37 +180555,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42448] = 5, + [58766] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1712), 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, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4854), 1, anon_sym_CARET, + ACTIONS(4856), 1, anon_sym_AMP, + ACTIONS(4858), 1, anon_sym_PIPE, + ACTIONS(4860), 1, + anon_sym_AMP_AMP, + ACTIONS(4862), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4868), 1, + anon_sym_EQ, + ACTIONS(4892), 1, + anon_sym_DOT_DOT, + ACTIONS(4914), 1, + anon_sym_LBRACE, + STATE(1721), 1, + sym_match_block, + ACTIONS(4850), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4872), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3902), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4894), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2125), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4852), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4870), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4866), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152447,22 +180621,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, - [42501] = 5, + [58855] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1713), 2, + STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(3888), 15, + ACTIONS(4070), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152478,7 +180645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3886), 23, + ACTIONS(4066), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152502,37 +180669,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42554] = 5, + [58908] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1714), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3892), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(295), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3890), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2127), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152543,44 +180735,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, - [42607] = 5, + [58997] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1715), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3372), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1173), 1, + anon_sym_RPAREN, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4788), 1, + anon_sym_COMMA, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3374), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2128), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152591,22 +180801,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, - [42660] = 5, + [59086] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1716), 2, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4304), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152622,7 +180825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(4302), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152646,37 +180849,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42713] = 5, + [59139] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1717), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3524), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1093), 1, + anon_sym_RPAREN, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4788), 1, + anon_sym_COMMA, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3522), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2130), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152687,22 +180915,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, - [42766] = 5, + [59228] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1718), 2, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(3752), 15, + ACTIONS(4250), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152718,7 +180939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3750), 23, + ACTIONS(4248), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152742,40 +180963,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42819] = 8, + [59281] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - STATE(1719), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3792), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4916), 1, + anon_sym_SEMI, + ACTIONS(4918), 1, + anon_sym_else, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3788), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2132), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152786,44 +181029,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, - [42878] = 5, + [59370] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1720), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3534), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(297), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3532), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2133), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152834,44 +181095,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, - [42931] = 5, + [59459] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1721), 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, + ACTIONS(1175), 1, + anon_sym_RPAREN, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4788), 1, + anon_sym_COMMA, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3912), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2134), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152882,28 +181161,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, - [42984] = 8, + [59548] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - STATE(1722), 2, + STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(3836), 14, + ACTIONS(1461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152917,10 +181183,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(3834), 21, + 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, @@ -152940,60 +181209,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43043] = 21, + [59601] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4169), 1, - anon_sym_EQ, - ACTIONS(4340), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4920), 1, + anon_sym_SEMI, + ACTIONS(4922), 1, + anon_sym_else, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1723), 2, + STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4167), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153004,61 +181275,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43128] = 22, + [59690] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4360), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(3878), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4336), 2, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4924), 1, + anon_sym_RBRACE, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1724), 2, + STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153069,42 +181341,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43215] = 9, + [59779] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - STATE(1725), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3922), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4788), 1, + anon_sym_COMMA, + ACTIONS(4926), 1, + anon_sym_RPAREN, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2138), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153115,67 +181407,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, - [43276] = 22, + [59868] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4928), 1, + anon_sym_SEMI, + ACTIONS(4930), 1, + anon_sym_else, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4372), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1726), 2, + STATE(2139), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153186,29 +181473,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43363] = 10, + [59957] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - STATE(1727), 2, + STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4402), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153217,10 +181495,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(3920), 20, + ACTIONS(4400), 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, @@ -153239,101 +181520,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43426] = 13, + anon_sym_as, + [60010] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4342), 1, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4336), 2, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4932), 1, + anon_sym_SEMI, + ACTIONS(4934), 1, + anon_sym_else, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1728), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4338), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3922), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43495] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1729), 2, + STATE(2141), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153344,53 +181587,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, - [43562] = 14, + [60099] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4336), 2, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1730), 2, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4936), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2142), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153401,60 +181652,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, - [43633] = 17, + [60186] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(3922), 2, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, anon_sym_EQ, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4938), 1, + anon_sym_SEMI, + ACTIONS(4940), 1, + anon_sym_else, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - STATE(1731), 2, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2143), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153465,57 +181718,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, - [43710] = 18, + [60275] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 2, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, anon_sym_EQ, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4942), 1, + anon_sym_SEMI, + ACTIONS(4944), 1, + anon_sym_else, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - STATE(1732), 2, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153526,32 +181784,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [43789] = 11, + [60364] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1733), 2, + STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4278), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153560,10 +181806,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(3920), 20, + ACTIONS(4276), 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, @@ -153582,60 +181831,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43854] = 21, + anon_sym_as, + [60417] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4112), 1, - anon_sym_EQ, - ACTIONS(4340), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1734), 2, + ACTIONS(4946), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2146), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4108), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153646,60 +181897,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43939] = 21, + [60504] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(301), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4136), 1, - anon_sym_EQ, - ACTIONS(4340), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1735), 2, + STATE(2147), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4134), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153710,48 +181963,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44024] = 15, + [60593] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4856), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4858), 1, anon_sym_PIPE, - ACTIONS(4336), 2, + ACTIONS(4860), 1, + anon_sym_AMP_AMP, + ACTIONS(4862), 1, + anon_sym_PIPE_PIPE, + ACTIONS(377), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4850), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1736), 2, + ACTIONS(4872), 2, + anon_sym_GT, + anon_sym_LT, + STATE(2148), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4852), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(4870), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(375), 14, 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, @@ -153762,60 +182023,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, - [44097] = 19, + [60674] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4856), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4858), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4860), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4862), 1, anon_sym_PIPE_PIPE, - ACTIONS(4165), 2, - anon_sym_EQ, + ACTIONS(4874), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4850), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4872), 2, anon_sym_GT, anon_sym_LT, - STATE(1737), 2, + ACTIONS(4876), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4852), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4870), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4163), 14, + ACTIONS(341), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153828,64 +182089,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, - [44178] = 23, + [60759] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4856), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4858), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4860), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4862), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4868), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4892), 1, anon_sym_DOT_DOT, - ACTIONS(4374), 1, - anon_sym_SEMI, - ACTIONS(4376), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(485), 1, + sym_match_block, + ACTIONS(4850), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4872), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4894), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1738), 2, + STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4852), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4870), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4866), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153896,62 +182155,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44267] = 23, + [60848] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4620), 1, + anon_sym_EQ, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4856), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4858), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4860), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4862), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4874), 1, anon_sym_DOT_DOT, - ACTIONS(4378), 1, - anon_sym_RBRACE, - ACTIONS(4380), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4850), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4872), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4876), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1739), 2, + STATE(2151), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4852), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4870), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4618), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153962,85 +182219,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44356] = 5, + [60933] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1740), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3972), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4598), 1, + anon_sym_EQ, + ACTIONS(4854), 1, anon_sym_CARET, + ACTIONS(4856), 1, anon_sym_AMP, + ACTIONS(4858), 1, anon_sym_PIPE, + ACTIONS(4860), 1, + anon_sym_AMP_AMP, + ACTIONS(4862), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4874), 1, + anon_sym_DOT_DOT, + ACTIONS(4850), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4872), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3970), 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(4876), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44409] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1741), 2, + STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(3988), 15, - anon_sym_PLUS, + ACTIONS(4852), 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(3986), 23, + ACTIONS(4870), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4596), 12, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154051,63 +182283,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, - [44462] = 19, + [61018] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(337), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(403), 2, + ACTIONS(4614), 1, anon_sym_EQ, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - STATE(1742), 2, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2153), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(401), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154118,17 +182349,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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [44543] = 5, + [61107] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1743), 2, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4792), 1, + anon_sym_QMARK, + ACTIONS(4794), 1, + anon_sym_DOT, + STATE(2154), 2, sym_line_comment, sym_block_comment, - ACTIONS(3756), 15, + ACTIONS(4348), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154142,13 +182377,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(3754), 23, + ACTIONS(4346), 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, @@ -154168,62 +182400,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44596] = 23, + [61166] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(305), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4402), 1, - anon_sym_LBRACE, - ACTIONS(4404), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - STATE(420), 1, - sym_match_block, - ACTIONS(4336), 2, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4406), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1744), 2, + STATE(2155), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154234,37 +182466,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44685] = 5, + [61255] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1745), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3764), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4950), 1, + anon_sym_RBRACE, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3762), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2156), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154275,44 +182532,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, - [44738] = 5, + [61344] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1746), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3964), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4952), 1, + anon_sym_SEMI, + ACTIONS(4954), 1, + anon_sym_else, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3962), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2157), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154323,22 +182598,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, - [44791] = 5, + [61433] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1747), 2, + STATE(2158), 2, sym_line_comment, sym_block_comment, - ACTIONS(3786), 15, + ACTIONS(4284), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154354,7 +182622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3784), 23, + ACTIONS(4280), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154378,61 +182646,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44844] = 22, + [61486] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(309), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4360), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(3958), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4336), 2, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1748), 2, + STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154443,37 +182712,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44931] = 5, + [61575] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1749), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3848), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4854), 1, anon_sym_CARET, + ACTIONS(4856), 1, anon_sym_AMP, + ACTIONS(4858), 1, anon_sym_PIPE, + ACTIONS(4860), 1, + anon_sym_AMP_AMP, + ACTIONS(4862), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4868), 1, + anon_sym_EQ, + ACTIONS(4892), 1, + anon_sym_DOT_DOT, + ACTIONS(4956), 1, + anon_sym_LBRACE, + STATE(2077), 1, + sym_match_block, + ACTIONS(4850), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4872), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3846), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4894), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2160), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4852), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4870), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4866), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154484,67 +182778,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, - [44984] = 21, + [61664] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(311), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1750), 2, + STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4560), 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(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154555,85 +182844,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45069] = 5, + [61753] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1751), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3856), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4958), 1, + anon_sym_RBRACE, + ACTIONS(4960), 1, + anon_sym_COMMA, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3854), 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(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45122] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1752), 2, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(3768), 15, - anon_sym_PLUS, + ACTIONS(4550), 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(3766), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154644,22 +182910,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, - [45175] = 5, + [61842] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1753), 2, + STATE(2163), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, + ACTIONS(4328), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154675,7 +182934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 23, + ACTIONS(4326), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154699,85 +182958,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45228] = 5, + [61895] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1754), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3778), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(313), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3774), 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(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45281] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1755), 2, + STATE(2164), 2, sym_line_comment, sym_block_comment, - ACTIONS(3860), 15, - anon_sym_PLUS, + ACTIONS(4550), 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(3858), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154788,92 +183024,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, - [45334] = 5, + [61984] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1756), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3864), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4962), 1, + anon_sym_RBRACE, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3862), 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(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45387] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1757), 2, + STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(3772), 15, - anon_sym_PLUS, + ACTIONS(4550), 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(3770), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154884,22 +183090,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, - [45440] = 5, + [62073] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1758), 2, + STATE(2166), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(4336), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154915,7 +183114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3866), 23, + ACTIONS(4334), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154939,61 +183138,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45493] = 22, + [62126] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(317), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4412), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1759), 2, + STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155004,85 +183204,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45580] = 5, + [62215] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1760), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3782), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(319), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3780), 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(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45633] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1761), 2, + STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 15, - anon_sym_PLUS, + ACTIONS(4550), 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(3870), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155093,44 +183270,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, - [45686] = 5, + [62304] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1762), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3800), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(321), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3798), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2169), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155141,67 +183336,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, - [45739] = 21, + [62393] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4208), 1, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4964), 1, + anon_sym_RBRACE, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1763), 2, + STATE(2170), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4414), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4216), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155212,88 +183402,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45824] = 8, + [62482] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(325), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - STATE(1764), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3808), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3806), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45883] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1765), 2, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(3928), 15, - anon_sym_PLUS, + ACTIONS(4550), 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(3926), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155304,92 +183468,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, - [45936] = 5, + [62571] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1766), 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, + ACTIONS(327), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3930), 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(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45989] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1767), 2, + STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(3936), 15, - anon_sym_PLUS, + ACTIONS(4550), 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(3934), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155400,92 +183534,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, - [46042] = 5, + [62660] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1768), 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, + ACTIONS(329), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3938), 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(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46095] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1769), 2, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(3944), 15, - anon_sym_PLUS, + ACTIONS(4550), 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(3942), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155496,44 +183600,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, - [46148] = 5, + [62749] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3948), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4966), 1, + anon_sym_RBRACE, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3946), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2174), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155544,44 +183666,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, - [46201] = 5, + [62838] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1771), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3952), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(333), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3950), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2175), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155592,69 +183732,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, - [46254] = 23, + [62927] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(127), 1, + ACTIONS(335), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4802), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1772), 2, + STATE(2176), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155665,37 +183798,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46343] = 5, + [63016] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1773), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3820), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(303), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3818), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2177), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155706,44 +183864,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, - [46396] = 5, + [63105] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1774), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3824), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4968), 1, + anon_sym_RBRACE, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3822), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2178), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155754,22 +183930,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_as, - [46449] = 5, + [63194] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1775), 2, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4792), 1, + anon_sym_QMARK, + ACTIONS(4794), 1, + anon_sym_DOT, + STATE(2179), 2, sym_line_comment, sym_block_comment, - ACTIONS(3828), 15, + ACTIONS(4426), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155783,13 +183958,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(3826), 23, + ACTIONS(4424), 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, @@ -155809,60 +183981,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46502] = 21, + [63253] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1776), 2, + ACTIONS(4970), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2180), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155873,37 +184046,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46587] = 5, + [63340] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1777), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1585), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4972), 1, + anon_sym_RPAREN, + ACTIONS(4974), 1, + anon_sym_COMMA, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1587), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2181), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155914,22 +184112,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, - [46640] = 5, + [63429] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1778), 2, + STATE(2182), 2, sym_line_comment, sym_block_comment, - ACTIONS(1497), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155945,7 +184136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1495), 23, + ACTIONS(1479), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155969,37 +184160,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46693] = 5, + [63482] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1779), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1505), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4976), 1, + anon_sym_RBRACK, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1503), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2183), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156010,44 +184224,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, - [46746] = 5, + [63568] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1780), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1493), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4978), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1491), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2184), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156058,44 +184288,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, - [46799] = 5, + [63654] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1781), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1455), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4980), 1, + anon_sym_RBRACK, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1453), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2185), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156106,44 +184352,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, - [46852] = 5, + [63740] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1782), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1459), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4982), 1, + anon_sym_COMMA, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1457), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2186), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156154,67 +184416,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, - [46905] = 21, + [63826] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4159), 1, - anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4984), 1, + anon_sym_RBRACK, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1783), 2, + STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4157), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156225,61 +184480,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46990] = 22, + [63912] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4022), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4986), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1784), 2, + STATE(2188), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156290,62 +184544,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47077] = 23, + [63998] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4418), 1, + ACTIONS(4988), 1, anon_sym_SEMI, - ACTIONS(4420), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1785), 2, + STATE(2189), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156356,37 +184608,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47166] = 5, + [64084] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1786), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3896), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4990), 1, + anon_sym_RBRACK, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3894), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2190), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156397,44 +184672,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, - [47219] = 5, + [64170] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1787), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1463), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4792), 1, + anon_sym_QMARK, + ACTIONS(4794), 1, + anon_sym_DOT, + ACTIONS(4812), 1, + anon_sym_EQ_GT, + ACTIONS(4824), 1, anon_sym_CARET, + ACTIONS(4826), 1, anon_sym_AMP, + ACTIONS(4828), 1, anon_sym_PIPE, + ACTIONS(4832), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4902), 1, + anon_sym_EQ, + ACTIONS(4992), 1, + anon_sym_AMP_AMP, + ACTIONS(4994), 1, + anon_sym_DOT_DOT, + ACTIONS(4820), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4834), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4838), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1461), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4996), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2191), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4822), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4836), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4900), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156445,67 +184736,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, - [47272] = 21, + [64256] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4169), 1, - anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4998), 1, + anon_sym_RBRACK, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1788), 2, + STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4167), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156516,85 +184800,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47357] = 5, + [64342] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1789), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1483), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5000), 1, + anon_sym_RBRACK, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1481), 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(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47410] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1790), 2, + STATE(2193), 2, sym_line_comment, sym_block_comment, - ACTIONS(3760), 15, - anon_sym_PLUS, + ACTIONS(4550), 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(3758), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156605,44 +184864,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, - [47463] = 5, + [64428] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1791), 2, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_LBRACE, + ACTIONS(4748), 1, + anon_sym_STAR, + ACTIONS(4754), 1, + anon_sym_COLON_COLON, + ACTIONS(4758), 1, + sym_metavariable, + STATE(2826), 1, + sym_scoped_identifier, + STATE(3607), 1, + sym__use_clause, + STATE(4017), 1, + sym_bracketed_type, + STATE(4282), 1, + sym_generic_type_with_turbofish, + STATE(2194), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4756), 3, + sym_self, + sym_super, + sym_crate, + STATE(3435), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4750), 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, + [64502] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(4788), 1, + anon_sym_COMMA, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1531), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2195), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156653,68 +184986,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, - [47516] = 22, + [64588] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(3878), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(5002), 1, + anon_sym_RBRACK, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1792), 2, + STATE(2196), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156725,37 +185050,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47603] = 5, + [64674] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1793), 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, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5004), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1465), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2197), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156766,50 +185114,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, - [47656] = 10, + [64760] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - STATE(1794), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3922), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5006), 1, + anon_sym_RBRACK, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2198), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156820,52 +185178,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, - [47719] = 13, + [64846] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4388), 1, + ACTIONS(4552), 1, + anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4382), 2, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5008), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1795), 2, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2199), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156876,51 +185242,59 @@ 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, - [47788] = 12, + [64932] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4790), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4792), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4794), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4824), 1, + anon_sym_CARET, + ACTIONS(4826), 1, + anon_sym_AMP, + ACTIONS(4828), 1, + anon_sym_PIPE, + ACTIONS(4832), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4840), 1, anon_sym_as, - ACTIONS(4382), 2, + ACTIONS(4902), 1, + anon_sym_EQ, + ACTIONS(4994), 1, + anon_sym_DOT_DOT, + ACTIONS(4820), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4834), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1796), 2, + ACTIONS(4838), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4912), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4996), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2200), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4822), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4836), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4900), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156931,53 +185305,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, - [47855] = 14, + [65016] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4382), 2, + ACTIONS(4556), 1, + anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5010), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1797), 2, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2201), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156988,60 +185369,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, - [47926] = 17, + [65102] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(3922), 2, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, anon_sym_EQ, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(5012), 1, + anon_sym_COMMA, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - STATE(1798), 2, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2202), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 16, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157052,57 +185433,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, - [48003] = 18, + [65188] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 2, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, anon_sym_EQ, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(5014), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - STATE(1799), 2, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2203), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 15, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157113,46 +185497,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, - [48082] = 11, + [65274] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4382), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1800), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3922), 9, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5016), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2204), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4550), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157163,66 +185561,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, - [48147] = 21, + [65360] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4112), 1, - anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(5018), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1801), 2, + STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4108), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157233,60 +185625,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48232] = 21, + [65446] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4136), 1, - anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(4790), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4792), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4794), 1, anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4824), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4826), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4828), 1, anon_sym_PIPE, - ACTIONS(4392), 1, - anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4832), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4902), 1, + anon_sym_EQ, + ACTIONS(4994), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4796), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4820), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4834), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4838), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4996), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1802), 2, + STATE(2206), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4822), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4836), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4134), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4900), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157297,48 +185688,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48317] = 15, + [65530] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4382), 2, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5020), 1, + anon_sym_RBRACK, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1803), 2, + ACTIONS(4562), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2207), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157349,62 +185752,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, - [48390] = 19, + [65616] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4165), 2, + ACTIONS(4614), 1, anon_sym_EQ, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4802), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - STATE(1804), 2, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2208), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4163), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157415,183 +185816,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, - [48471] = 5, + [65702] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1805), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4008), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 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(4006), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4566), 1, anon_sym_AMP_AMP, + ACTIONS(4568), 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, - anon_sym_as, - [48524] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1806), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3748), 15, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5022), 1, + anon_sym_RBRACK, + ACTIONS(4548), 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(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3746), 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(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48577] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1807), 2, + STATE(2209), 2, sym_line_comment, sym_block_comment, - ACTIONS(1513), 15, - anon_sym_PLUS, + ACTIONS(4550), 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(1511), 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(4560), 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, - [48630] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1808), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1517), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1515), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157602,68 +185880,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, - [48683] = 22, + [65788] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(3958), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(5024), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1809), 2, + STATE(2210), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157674,133 +185944,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48770] = 5, + [65874] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1810), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1537), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 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(1535), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4566), 1, anon_sym_AMP_AMP, + ACTIONS(4568), 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, - anon_sym_as, - [48823] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1811), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5026), 1, + anon_sym_SEMI, + ACTIONS(4548), 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(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3850), 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(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48876] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1812), 2, + STATE(2211), 2, sym_line_comment, sym_block_comment, - ACTIONS(3956), 15, - anon_sym_PLUS, + ACTIONS(4550), 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(3954), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157811,92 +186008,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, - [48929] = 5, + [65960] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1813), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1527), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5028), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1525), 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(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48982] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1814), 2, + STATE(2212), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, - anon_sym_PLUS, + ACTIONS(4550), 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(1485), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157907,140 +186072,176 @@ 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, - [49035] = 5, + [66046] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1815), 2, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_LBRACE, + ACTIONS(4748), 1, + anon_sym_STAR, + ACTIONS(4754), 1, + anon_sym_COLON_COLON, + ACTIONS(4758), 1, + sym_metavariable, + STATE(2826), 1, + sym_scoped_identifier, + STATE(3994), 1, + sym__use_clause, + STATE(4017), 1, + sym_bracketed_type, + STATE(4282), 1, + sym_generic_type_with_turbofish, + STATE(2213), 2, sym_line_comment, sym_block_comment, - 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, + ACTIONS(4756), 3, + sym_self, + sym_super, + sym_crate, + STATE(3435), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4750), 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, + [66120] = 16, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1441), 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, - [49088] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1816), 2, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_LBRACE, + ACTIONS(4748), 1, + anon_sym_STAR, + ACTIONS(4754), 1, + anon_sym_COLON_COLON, + ACTIONS(4758), 1, + sym_metavariable, + STATE(2826), 1, + sym_scoped_identifier, + STATE(4017), 1, + sym_bracketed_type, + STATE(4200), 1, + sym__use_clause, + STATE(4282), 1, + sym_generic_type_with_turbofish, + STATE(2214), 2, sym_line_comment, sym_block_comment, - ACTIONS(1475), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4756), 3, + sym_self, + sym_super, + sym_crate, + STATE(3435), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4750), 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, + [66194] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5030), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1473), 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(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49141] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1817), 2, + STATE(2215), 2, sym_line_comment, sym_block_comment, - ACTIONS(1541), 15, - anon_sym_PLUS, + ACTIONS(4550), 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(1539), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158051,92 +186252,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, - [49194] = 5, + [66280] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1818), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1509), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5032), 1, + anon_sym_COMMA, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1507), 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(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49247] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1819), 2, + STATE(2216), 2, sym_line_comment, sym_block_comment, - ACTIONS(975), 15, - anon_sym_PLUS, + ACTIONS(4550), 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(977), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158147,188 +186316,234 @@ 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, - [49300] = 5, + [66366] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1820), 2, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_LBRACE, + ACTIONS(4748), 1, + anon_sym_STAR, + ACTIONS(4754), 1, + anon_sym_COLON_COLON, + ACTIONS(4758), 1, + sym_metavariable, + STATE(2826), 1, + sym_scoped_identifier, + STATE(3930), 1, + sym__use_clause, + STATE(4017), 1, + sym_bracketed_type, + STATE(4282), 1, + sym_generic_type_with_turbofish, + STATE(2217), 2, sym_line_comment, sym_block_comment, - ACTIONS(907), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_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(4756), 3, + sym_self, + sym_super, + sym_crate, + STATE(3435), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4750), 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, + [66440] = 16, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(909), 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, - [49353] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1821), 2, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_LBRACE, + ACTIONS(4748), 1, + anon_sym_STAR, + ACTIONS(4754), 1, + anon_sym_COLON_COLON, + ACTIONS(4758), 1, + sym_metavariable, + STATE(2826), 1, + sym_scoped_identifier, + STATE(4017), 1, + sym_bracketed_type, + STATE(4180), 1, + sym__use_clause, + STATE(4282), 1, + sym_generic_type_with_turbofish, + STATE(2218), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_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(4756), 3, + sym_self, + sym_super, + sym_crate, + STATE(3435), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4750), 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, + [66514] = 16, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1499), 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, - [49406] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1822), 2, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_LBRACE, + ACTIONS(4748), 1, + anon_sym_STAR, + ACTIONS(4754), 1, + anon_sym_COLON_COLON, + ACTIONS(4758), 1, + sym_metavariable, + STATE(2826), 1, + sym_scoped_identifier, + STATE(4017), 1, + sym_bracketed_type, + STATE(4238), 1, + sym__use_clause, + STATE(4282), 1, + sym_generic_type_with_turbofish, + STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(911), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4756), 3, + sym_self, + sym_super, + sym_crate, + STATE(3435), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4750), 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, + [66588] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(913), 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(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49459] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1823), 2, + STATE(2220), 2, sym_line_comment, sym_block_comment, - ACTIONS(3968), 15, - anon_sym_PLUS, + ACTIONS(4550), 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(3966), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158339,68 +186554,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, - [49512] = 22, + [66674] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, - anon_sym_DOT_DOT, - ACTIONS(4424), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4022), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4382), 2, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5036), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1824), 2, + STATE(2221), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4422), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158411,85 +186618,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49599] = 5, + [66760] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1825), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(915), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4208), 1, + anon_sym_QMARK, + ACTIONS(4210), 1, + anon_sym_DOT, + ACTIONS(4362), 1, + anon_sym_as, + ACTIONS(4552), 1, anon_sym_CARET, + ACTIONS(4554), 1, anon_sym_AMP, + ACTIONS(4556), 1, anon_sym_PIPE, + ACTIONS(4566), 1, + anon_sym_AMP_AMP, + ACTIONS(4568), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5038), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(917), 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(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49652] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1826), 2, + STATE(2222), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, - anon_sym_PLUS, + ACTIONS(4550), 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(1477), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4560), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158500,69 +186682,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, - [49705] = 23, + [66846] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4742), 1, + sym_identifier, + ACTIONS(4744), 1, + anon_sym_LBRACE, + ACTIONS(4748), 1, + anon_sym_STAR, + ACTIONS(4754), 1, + anon_sym_COLON_COLON, + ACTIONS(4758), 1, + sym_metavariable, + STATE(2826), 1, + sym_scoped_identifier, + STATE(4017), 1, + sym_bracketed_type, + STATE(4059), 1, + sym__use_clause, + STATE(4282), 1, + sym_generic_type_with_turbofish, + STATE(2223), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4756), 3, + sym_self, + sym_super, + sym_crate, + STATE(3435), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4750), 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, + [66920] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4646), 1, anon_sym_DOT_DOT, - ACTIONS(4426), 1, - anon_sym_RPAREN, - ACTIONS(4428), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(5040), 1, + anon_sym_SEMI, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1827), 2, + STATE(2224), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158573,61 +186804,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49794] = 22, + [67006] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4208), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4210), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4362), 1, anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4552), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4554), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4556), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4566), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4568), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, - anon_sym_DOT_DOT, - ACTIONS(4424), 1, + ACTIONS(4614), 1, anon_sym_EQ, - ACTIONS(3878), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4382), 2, + ACTIONS(4646), 1, + anon_sym_DOT_DOT, + ACTIONS(5042), 1, + anon_sym_RBRACK, + ACTIONS(4548), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4562), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4648), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1828), 2, + STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4550), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4560), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4422), 10, + ACTIONS(4612), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158638,40205 +186868,37143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49881] = 5, + [67092] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4434), 1, + anon_sym_where, + ACTIONS(5044), 1, + sym_identifier, + ACTIONS(5048), 1, + anon_sym_COLON_COLON, + ACTIONS(5054), 1, + sym_metavariable, + STATE(3568), 1, + sym_scoped_type_identifier, + STATE(3895), 1, + sym_generic_type, + STATE(3933), 1, + sym_scoped_identifier, + STATE(4097), 1, + sym_generic_type_with_turbofish, + STATE(4124), 1, + sym_bracketed_type, + STATE(2226), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4432), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(5050), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(5052), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5046), 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, + [67167] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4434), 1, + anon_sym_where, + ACTIONS(5048), 1, + anon_sym_COLON_COLON, + ACTIONS(5054), 1, + sym_metavariable, + ACTIONS(5056), 1, + sym_identifier, + STATE(3445), 1, + sym_scoped_type_identifier, + STATE(3672), 1, + sym_generic_type, + STATE(3933), 1, + sym_scoped_identifier, + STATE(4097), 1, + sym_generic_type_with_turbofish, + STATE(4124), 1, + sym_bracketed_type, + STATE(2227), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4432), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(5050), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(5052), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5046), 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, + [67242] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4434), 1, + anon_sym_where, + ACTIONS(5048), 1, + anon_sym_COLON_COLON, + ACTIONS(5054), 1, + sym_metavariable, + ACTIONS(5058), 1, + sym_identifier, + STATE(3374), 1, + sym_scoped_type_identifier, + STATE(3858), 1, + sym_generic_type, + STATE(3933), 1, + sym_scoped_identifier, + STATE(4097), 1, + sym_generic_type_with_turbofish, + STATE(4124), 1, + sym_bracketed_type, + STATE(2228), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4432), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(5050), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(5052), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5046), 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, + [67317] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4434), 1, + anon_sym_where, + ACTIONS(5048), 1, + anon_sym_COLON_COLON, + ACTIONS(5054), 1, + sym_metavariable, + ACTIONS(5060), 1, + sym_identifier, + STATE(3383), 1, + sym_scoped_type_identifier, + STATE(3897), 1, + sym_generic_type, + STATE(3933), 1, + sym_scoped_identifier, + STATE(4097), 1, + sym_generic_type_with_turbofish, + STATE(4124), 1, + sym_bracketed_type, + STATE(2229), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4432), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(5050), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(5052), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5046), 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, + [67392] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4434), 1, + anon_sym_where, + ACTIONS(5048), 1, + anon_sym_COLON_COLON, + ACTIONS(5054), 1, + sym_metavariable, + ACTIONS(5062), 1, + sym_identifier, + STATE(3483), 1, + sym_scoped_type_identifier, + STATE(3738), 1, + sym_generic_type, + STATE(3933), 1, + sym_scoped_identifier, + STATE(4097), 1, + sym_generic_type_with_turbofish, + STATE(4124), 1, + sym_bracketed_type, + STATE(2230), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4432), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(5050), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(5052), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5046), 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, + [67467] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4434), 1, + anon_sym_where, + ACTIONS(5048), 1, + anon_sym_COLON_COLON, + ACTIONS(5054), 1, + sym_metavariable, + ACTIONS(5064), 1, + sym_identifier, + STATE(3559), 1, + sym_scoped_type_identifier, + STATE(3874), 1, + sym_generic_type, + STATE(3933), 1, + sym_scoped_identifier, + STATE(4097), 1, + sym_generic_type_with_turbofish, + STATE(4124), 1, + sym_bracketed_type, + STATE(2231), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4432), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(5050), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(5052), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5046), 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, + [67542] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4434), 1, + anon_sym_where, + ACTIONS(5048), 1, + anon_sym_COLON_COLON, + ACTIONS(5054), 1, + sym_metavariable, + ACTIONS(5066), 1, + sym_identifier, + STATE(3264), 1, + sym_scoped_type_identifier, + STATE(3809), 1, + sym_generic_type, + STATE(3933), 1, + sym_scoped_identifier, + STATE(4097), 1, + sym_generic_type_with_turbofish, + STATE(4124), 1, + sym_bracketed_type, + STATE(2232), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4432), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(5050), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(5052), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5046), 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, + [67617] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4434), 1, + anon_sym_where, + ACTIONS(5048), 1, + anon_sym_COLON_COLON, + ACTIONS(5054), 1, + sym_metavariable, + ACTIONS(5068), 1, + sym_identifier, + STATE(3571), 1, + sym_scoped_type_identifier, + STATE(3900), 1, + sym_generic_type, + STATE(3933), 1, + sym_scoped_identifier, + STATE(4097), 1, + sym_generic_type_with_turbofish, + STATE(4124), 1, + sym_bracketed_type, + STATE(2233), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4432), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(5050), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(5052), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5046), 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, + [67692] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4434), 1, + anon_sym_where, + ACTIONS(5048), 1, + anon_sym_COLON_COLON, + ACTIONS(5054), 1, + sym_metavariable, + ACTIONS(5070), 1, + sym_identifier, + STATE(3556), 1, + sym_scoped_type_identifier, + STATE(3878), 1, + sym_generic_type, + STATE(3933), 1, + sym_scoped_identifier, + STATE(4097), 1, + sym_generic_type_with_turbofish, + STATE(4124), 1, + sym_bracketed_type, + STATE(2234), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4432), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(5050), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(5052), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5046), 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, + [67767] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4434), 1, + anon_sym_where, + ACTIONS(5048), 1, + anon_sym_COLON_COLON, + ACTIONS(5054), 1, + sym_metavariable, + ACTIONS(5072), 1, + sym_identifier, + STATE(3561), 1, + sym_scoped_type_identifier, + STATE(3884), 1, + sym_generic_type, + STATE(3933), 1, + sym_scoped_identifier, + STATE(4097), 1, + sym_generic_type_with_turbofish, + STATE(4124), 1, + sym_bracketed_type, + STATE(2235), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4432), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(5050), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(5052), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5046), 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, + [67842] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4434), 1, + anon_sym_where, + ACTIONS(5048), 1, + anon_sym_COLON_COLON, + ACTIONS(5054), 1, + sym_metavariable, + ACTIONS(5074), 1, + sym_identifier, + STATE(3563), 1, + sym_scoped_type_identifier, + STATE(3886), 1, + sym_generic_type, + STATE(3933), 1, + sym_scoped_identifier, + STATE(4097), 1, + sym_generic_type_with_turbofish, + STATE(4124), 1, + sym_bracketed_type, + STATE(2236), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4432), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(5050), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(5052), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5046), 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, + [67917] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4434), 1, + anon_sym_where, + ACTIONS(5048), 1, + anon_sym_COLON_COLON, + ACTIONS(5054), 1, + sym_metavariable, + ACTIONS(5076), 1, + sym_identifier, + STATE(3567), 1, + sym_scoped_type_identifier, + STATE(3894), 1, + sym_generic_type, + STATE(3933), 1, + sym_scoped_identifier, + STATE(4097), 1, + sym_generic_type_with_turbofish, + STATE(4124), 1, + sym_bracketed_type, + STATE(2237), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4432), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(5050), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(5052), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5046), 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, + [67992] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2238), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5080), 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(5078), 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, + [68039] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2239), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5084), 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(5082), 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, + [68086] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2240), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5088), 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(5086), 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, + [68133] = 13, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1884), 1, + anon_sym_COLON_COLON, + ACTIONS(5090), 1, + sym_identifier, + ACTIONS(5096), 1, + sym_metavariable, + STATE(2660), 1, + sym_scoped_identifier, + STATE(4091), 1, + sym_attribute, + STATE(4179), 1, + sym_bracketed_type, + STATE(4258), 1, + sym_generic_type_with_turbofish, + STATE(2241), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5094), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5092), 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, + [68195] = 13, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1884), 1, + anon_sym_COLON_COLON, + ACTIONS(5090), 1, + sym_identifier, + ACTIONS(5096), 1, + sym_metavariable, + STATE(2660), 1, + sym_scoped_identifier, + STATE(4070), 1, + sym_attribute, + STATE(4179), 1, + sym_bracketed_type, + STATE(4258), 1, + sym_generic_type_with_turbofish, + STATE(2242), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5094), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5092), 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, + [68257] = 13, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1884), 1, + anon_sym_COLON_COLON, + ACTIONS(5090), 1, + sym_identifier, + ACTIONS(5096), 1, + sym_metavariable, + STATE(2660), 1, + sym_scoped_identifier, + STATE(3980), 1, + sym_attribute, + STATE(4179), 1, + sym_bracketed_type, + STATE(4258), 1, + sym_generic_type_with_turbofish, + STATE(2243), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5094), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5092), 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, + [68319] = 13, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1829), 2, + ACTIONS(1884), 1, + anon_sym_COLON_COLON, + ACTIONS(5090), 1, + sym_identifier, + ACTIONS(5096), 1, + sym_metavariable, + STATE(2660), 1, + sym_scoped_identifier, + STATE(4089), 1, + sym_attribute, + STATE(4179), 1, + sym_bracketed_type, + STATE(4258), 1, + sym_generic_type_with_turbofish, + STATE(2244), 2, sym_line_comment, sym_block_comment, - ACTIONS(919), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_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(5094), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5092), 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, + [68381] = 13, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(921), 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, - [49934] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1830), 2, + ACTIONS(1884), 1, + anon_sym_COLON_COLON, + ACTIONS(5090), 1, + sym_identifier, + ACTIONS(5096), 1, + sym_metavariable, + STATE(2660), 1, + sym_scoped_identifier, + STATE(4003), 1, + sym_attribute, + STATE(4179), 1, + sym_bracketed_type, + STATE(4258), 1, + sym_generic_type_with_turbofish, + STATE(2245), 2, sym_line_comment, sym_block_comment, - 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, + ACTIONS(5094), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5092), 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, + [68443] = 13, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1469), 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, - [49987] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, - anon_sym_CARET, - ACTIONS(4388), 1, - anon_sym_AMP, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(4392), 1, - anon_sym_AMP_AMP, - ACTIONS(4394), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, - anon_sym_DOT_DOT, - ACTIONS(4424), 1, - anon_sym_EQ, - ACTIONS(3958), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4382), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4396), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4400), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4410), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1831), 2, + ACTIONS(1884), 1, + anon_sym_COLON_COLON, + ACTIONS(5090), 1, + sym_identifier, + ACTIONS(5096), 1, + sym_metavariable, + STATE(2660), 1, + sym_scoped_identifier, + STATE(4179), 1, + sym_bracketed_type, + STATE(4232), 1, + sym_attribute, + STATE(4258), 1, + sym_generic_type_with_turbofish, + STATE(2246), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4398), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4422), 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, - [50074] = 5, + ACTIONS(5094), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5092), 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, + [68505] = 13, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1832), 2, + ACTIONS(1884), 1, + anon_sym_COLON_COLON, + ACTIONS(5090), 1, + sym_identifier, + ACTIONS(5096), 1, + sym_metavariable, + STATE(2660), 1, + sym_scoped_identifier, + STATE(3943), 1, + sym_attribute, + STATE(4179), 1, + sym_bracketed_type, + STATE(4258), 1, + sym_generic_type_with_turbofish, + STATE(2247), 2, sym_line_comment, sym_block_comment, - ACTIONS(3980), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_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(5094), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5092), 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, + [68567] = 13, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3978), 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, - [50127] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1833), 2, + ACTIONS(1884), 1, + anon_sym_COLON_COLON, + ACTIONS(5090), 1, + sym_identifier, + ACTIONS(5096), 1, + sym_metavariable, + STATE(2660), 1, + sym_scoped_identifier, + STATE(4112), 1, + sym_attribute, + STATE(4179), 1, + sym_bracketed_type, + STATE(4258), 1, + sym_generic_type_with_turbofish, + STATE(2248), 2, sym_line_comment, sym_block_comment, - ACTIONS(4000), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_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(5094), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5092), 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, + [68629] = 12, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3998), 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, - [50180] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1834), 2, + ACTIONS(5098), 1, + sym_identifier, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(5106), 1, + sym_metavariable, + STATE(3699), 1, + sym_scoped_identifier, + STATE(4017), 1, + sym_bracketed_type, + STATE(4282), 1, + sym_generic_type_with_turbofish, + STATE(2249), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_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(5104), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5100), 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, + [68688] = 12, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4002), 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, - [50233] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1835), 2, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(5108), 1, + sym_identifier, + ACTIONS(5114), 1, + sym_metavariable, + STATE(3852), 1, + sym_scoped_identifier, + STATE(4017), 1, + sym_bracketed_type, + STATE(4282), 1, + sym_generic_type_with_turbofish, + STATE(2250), 2, sym_line_comment, sym_block_comment, - ACTIONS(1037), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1039), 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, - [50286] = 5, + ACTIONS(5112), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(5110), 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, + [68747] = 27, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1836), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5118), 1, + anon_sym_const, + ACTIONS(5120), 1, + anon_sym_enum, + ACTIONS(5122), 1, + anon_sym_fn, + ACTIONS(5124), 1, + anon_sym_impl, + ACTIONS(5126), 1, + anon_sym_let, + ACTIONS(5128), 1, + anon_sym_mod, + ACTIONS(5130), 1, + anon_sym_pub, + ACTIONS(5132), 1, + anon_sym_static, + ACTIONS(5134), 1, + anon_sym_struct, + ACTIONS(5136), 1, + anon_sym_trait, + ACTIONS(5138), 1, + anon_sym_type, + ACTIONS(5140), 1, + anon_sym_union, + ACTIONS(5142), 1, + anon_sym_unsafe, + ACTIONS(5144), 1, + anon_sym_use, + ACTIONS(5146), 1, + anon_sym_extern, + ACTIONS(5148), 1, + sym_crate, + STATE(2253), 1, + aux_sym_mod_item_repeat1, + STATE(2254), 1, + sym_attribute_item, + STATE(2287), 1, + sym_visibility_modifier, + STATE(2540), 1, + sym_extern_modifier, + STATE(2605), 1, + aux_sym_function_modifiers_repeat1, + STATE(4025), 1, + sym_function_modifiers, + ACTIONS(5116), 2, + anon_sym_async, + anon_sym_default, + STATE(2251), 2, sym_line_comment, sym_block_comment, - ACTIONS(1041), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1043), 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, - [50339] = 5, + [68831] = 27, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1837), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5130), 1, + anon_sym_pub, + ACTIONS(5148), 1, + sym_crate, + ACTIONS(5150), 1, + anon_sym_const, + ACTIONS(5152), 1, + anon_sym_enum, + ACTIONS(5154), 1, + anon_sym_fn, + ACTIONS(5156), 1, + anon_sym_impl, + ACTIONS(5158), 1, + anon_sym_let, + ACTIONS(5160), 1, + anon_sym_mod, + ACTIONS(5162), 1, + anon_sym_static, + ACTIONS(5164), 1, + anon_sym_struct, + ACTIONS(5166), 1, + anon_sym_trait, + ACTIONS(5168), 1, + anon_sym_type, + ACTIONS(5170), 1, + anon_sym_union, + ACTIONS(5172), 1, + anon_sym_unsafe, + ACTIONS(5174), 1, + anon_sym_use, + ACTIONS(5176), 1, + anon_sym_extern, + STATE(2253), 1, + aux_sym_mod_item_repeat1, + STATE(2254), 1, + sym_attribute_item, + STATE(2286), 1, + sym_visibility_modifier, + STATE(2515), 1, + sym_extern_modifier, + STATE(2605), 1, + aux_sym_function_modifiers_repeat1, + STATE(4268), 1, + sym_function_modifiers, + ACTIONS(5116), 2, + anon_sym_async, + anon_sym_default, + STATE(2252), 2, sym_line_comment, sym_block_comment, - ACTIONS(4024), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4022), 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, - [50392] = 5, + [68915] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1838), 2, + ACTIONS(5178), 1, + anon_sym_POUND, + STATE(2254), 1, + sym_attribute_item, + ACTIONS(759), 3, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + STATE(2253), 3, sym_line_comment, sym_block_comment, - ACTIONS(3804), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3802), 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, - [50445] = 5, + aux_sym_mod_item_repeat1, + ACTIONS(3814), 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, + [68959] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1839), 2, + STATE(2254), 2, sym_line_comment, sym_block_comment, - ACTIONS(3918), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3916), 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, - [50498] = 5, + ACTIONS(3818), 4, + anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + ACTIONS(3816), 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, + [68997] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1840), 2, + STATE(2255), 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, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - 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, - [50551] = 5, + ACTIONS(3822), 4, + anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + ACTIONS(3820), 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, + [69035] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1841), 2, + ACTIONS(901), 1, + anon_sym_DOT_DOT, + STATE(2256), 2, sym_line_comment, sym_block_comment, - ACTIONS(4030), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(903), 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(4028), 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, - [50604] = 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, + [69071] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1842), 2, + ACTIONS(987), 1, + anon_sym_DOT_DOT, + STATE(2257), 2, sym_line_comment, sym_block_comment, - ACTIONS(4034), 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(4032), 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, - [50657] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4430), 1, - anon_sym_RPAREN, - ACTIONS(4432), 1, anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1843), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [50746] = 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_else, + anon_sym_in, + [69107] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1844), 2, + ACTIONS(3965), 1, + anon_sym_COLON, + ACTIONS(3969), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + STATE(2258), 2, sym_line_comment, sym_block_comment, - ACTIONS(3812), 15, + ACTIONS(3963), 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(3810), 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, - [50799] = 23, + anon_sym_for, + anon_sym_where, + anon_sym_else, + anon_sym_LT2, + [69144] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(297), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_LBRACE, + ACTIONS(5187), 1, + anon_sym_COLON, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5191), 1, + anon_sym_AT, + ACTIONS(5193), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(5197), 1, + anon_sym_COLON_COLON, + ACTIONS(5199), 1, + anon_sym_LT2, + STATE(2282), 1, + sym_type_arguments, + ACTIONS(5195), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1845), 2, + STATE(2259), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [50888] = 5, + ACTIONS(5181), 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, + [69197] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1846), 2, + ACTIONS(3927), 1, + anon_sym_COLON, + ACTIONS(3931), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + STATE(2260), 2, sym_line_comment, sym_block_comment, - ACTIONS(3816), 15, + ACTIONS(3925), 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(3814), 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, - [50941] = 5, + anon_sym_for, + anon_sym_where, + anon_sym_else, + anon_sym_LT2, + [69234] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1847), 2, + ACTIONS(3935), 1, + anon_sym_COLON, + ACTIONS(3939), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + STATE(2261), 2, sym_line_comment, sym_block_comment, - ACTIONS(3832), 15, + ACTIONS(3933), 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(3830), 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, - [50994] = 22, + anon_sym_for, + anon_sym_where, + anon_sym_else, + anon_sym_LT2, + [69271] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(3919), 1, + anon_sym_COLON, + ACTIONS(3923), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + STATE(2262), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3917), 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, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4434), 2, - anon_sym_RBRACE, anon_sym_COMMA, - STATE(1848), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [51081] = 23, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + anon_sym_LT2, + [69308] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4340), 1, - anon_sym_CARET, - ACTIONS(4342), 1, - anon_sym_AMP, - ACTIONS(4344), 1, - anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, - anon_sym_EQ, - ACTIONS(4404), 1, - anon_sym_DOT_DOT, - ACTIONS(4436), 1, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, + anon_sym_COLON_COLON, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + STATE(2263), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3894), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, - STATE(1493), 1, - sym_match_block, - ACTIONS(4336), 2, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4358), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4406), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1849), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4338), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4352), 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, - [51170] = 8, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [69352] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - STATE(1850), 2, + ACTIONS(4032), 1, + anon_sym_COLON, + STATE(2264), 2, sym_line_comment, sym_block_comment, - ACTIONS(4042), 14, + ACTIONS(4030), 18, + 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_DOT, - ACTIONS(4040), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [51229] = 22, + anon_sym_for, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [69386] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(3967), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2265), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3963), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3969), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4438), 2, - anon_sym_RBRACE, anon_sym_COMMA, - STATE(1851), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [51316] = 23, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [69422] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(337), 1, + ACTIONS(4170), 1, + anon_sym_COLON, + STATE(2266), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4168), 18, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1852), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [51405] = 23, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [69456] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1291), 1, + ACTIONS(4050), 1, + anon_sym_COLON, + STATE(2267), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4048), 18, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1853), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [51494] = 17, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [69490] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - ACTIONS(4440), 1, - anon_sym_RBRACE, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3365), 1, - sym__use_clause, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1854), 2, + ACTIONS(3921), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2268), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 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, - [51571] = 22, + ACTIONS(3917), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3923), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + 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, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [69526] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(3929), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2269), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3925), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3931), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4442), 2, - anon_sym_RBRACE, anon_sym_COMMA, - STATE(1855), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [51658] = 5, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [69562] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1856), 2, + ACTIONS(4084), 1, + anon_sym_COLON, + STATE(2270), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 15, + ACTIONS(4082), 18, + 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(3958), 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, - [51711] = 23, + anon_sym_for, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [69596] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(3937), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4444), 1, + STATE(2271), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3933), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3939), 14, anon_sym_SEMI, - ACTIONS(4446), 1, - anon_sym_else, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_LPAREN, + 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(1857), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [69632] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, + anon_sym_COLON_COLON, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + STATE(2272), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [51800] = 5, + ACTIONS(3870), 13, + 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_where, + anon_sym_else, + [69676] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1858), 2, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, + anon_sym_COLON_COLON, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + STATE(2273), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3900), 13, + 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_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [69720] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3929), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + STATE(2274), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3931), 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, - [51853] = 23, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [69753] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(299), 1, + STATE(2275), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3933), 18, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + anon_sym_LT2, + [69784] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3937), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + STATE(2276), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3939), 16, anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + 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, - STATE(1859), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [69817] = 14, + ACTIONS(37), 1, + anon_sym_SQUOTE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1111), 1, + anon_sym_DASH, + ACTIONS(1161), 1, + aux_sym_string_literal_token1, + ACTIONS(1171), 1, + sym__raw_string_literal_start, + ACTIONS(1603), 1, + anon_sym_LBRACE, + ACTIONS(5205), 1, + sym_identifier, + STATE(4244), 1, + sym_label, + ACTIONS(1163), 2, + anon_sym_true, + anon_sym_false, + STATE(2277), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [51942] = 23, + ACTIONS(1629), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(3348), 3, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + STATE(3819), 3, + sym_block, + sym__literal, + sym_negative_literal, + [69868] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1053), 1, + ACTIONS(3967), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2278), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3969), 16, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1860), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [52031] = 23, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [69901] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3921), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2279), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3923), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4448), 1, - anon_sym_SEMI, - ACTIONS(4450), 1, - anon_sym_else, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1861), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [52120] = 23, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [69934] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_COLON_COLON, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + STATE(2280), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3911), 13, anon_sym_SEMI, - ACTIONS(4452), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4090), 2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1862), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [52209] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [69975] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4454), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2292), 1, + sym_type_arguments, + STATE(2365), 1, + sym_parameters, + STATE(2281), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3987), 13, anon_sym_SEMI, - ACTIONS(4456), 1, - anon_sym_else, - ACTIONS(4090), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1863), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [52298] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [70013] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4138), 1, + anon_sym_COLON, + STATE(2282), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4136), 16, anon_sym_SEMI, - ACTIONS(4458), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4090), 2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1864), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [70045] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5150), 1, + anon_sym_const, + ACTIONS(5152), 1, + anon_sym_enum, + ACTIONS(5154), 1, + anon_sym_fn, + ACTIONS(5160), 1, + anon_sym_mod, + ACTIONS(5162), 1, + anon_sym_static, + ACTIONS(5164), 1, + anon_sym_struct, + ACTIONS(5166), 1, + anon_sym_trait, + ACTIONS(5170), 1, + anon_sym_union, + ACTIONS(5174), 1, + anon_sym_use, + ACTIONS(5176), 1, + anon_sym_extern, + ACTIONS(5209), 1, + anon_sym_type, + ACTIONS(5211), 1, + anon_sym_unsafe, + STATE(2515), 1, + sym_extern_modifier, + STATE(2605), 1, + aux_sym_function_modifiers_repeat1, + STATE(4268), 1, + sym_function_modifiers, + ACTIONS(5116), 2, + anon_sym_async, + anon_sym_default, + STATE(2283), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [52387] = 23, + [70105] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5215), 1, + anon_sym_COLON, + ACTIONS(5217), 1, + anon_sym_BANG, + ACTIONS(5219), 1, anon_sym_DOT_DOT, - ACTIONS(4460), 1, - anon_sym_SEMI, - ACTIONS(4462), 1, - anon_sym_else, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(5223), 1, + anon_sym_COLON_COLON, + STATE(2285), 1, + sym_type_arguments, + ACTIONS(5221), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, + STATE(2284), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [52476] = 23, + ACTIONS(5213), 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, + [70149] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(303), 1, + ACTIONS(4126), 1, + anon_sym_COLON, + STATE(2285), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4124), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1866), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [70181] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5225), 1, + anon_sym_const, + ACTIONS(5227), 1, + anon_sym_enum, + ACTIONS(5229), 1, + anon_sym_fn, + ACTIONS(5231), 1, + anon_sym_mod, + ACTIONS(5233), 1, + anon_sym_static, + ACTIONS(5235), 1, + anon_sym_struct, + ACTIONS(5237), 1, + anon_sym_trait, + ACTIONS(5239), 1, + anon_sym_type, + ACTIONS(5241), 1, + anon_sym_union, + ACTIONS(5243), 1, + anon_sym_unsafe, + ACTIONS(5245), 1, + anon_sym_use, + ACTIONS(5247), 1, + anon_sym_extern, + STATE(2526), 1, + sym_extern_modifier, + STATE(2605), 1, + aux_sym_function_modifiers_repeat1, + STATE(4284), 1, + sym_function_modifiers, + ACTIONS(5116), 2, + anon_sym_async, + anon_sym_default, + STATE(2286), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [52565] = 23, + [70241] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1061), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + ACTIONS(5249), 1, + anon_sym_const, + ACTIONS(5251), 1, + anon_sym_enum, + ACTIONS(5253), 1, + anon_sym_fn, + ACTIONS(5255), 1, + anon_sym_mod, + ACTIONS(5257), 1, + anon_sym_static, + ACTIONS(5259), 1, + anon_sym_struct, + ACTIONS(5261), 1, + anon_sym_trait, + ACTIONS(5263), 1, + anon_sym_type, + ACTIONS(5265), 1, + anon_sym_union, + ACTIONS(5267), 1, + anon_sym_unsafe, + ACTIONS(5269), 1, + anon_sym_use, + ACTIONS(5271), 1, + anon_sym_extern, + STATE(2507), 1, + sym_extern_modifier, + STATE(2605), 1, + aux_sym_function_modifiers_repeat1, + STATE(4229), 1, + sym_function_modifiers, + ACTIONS(5116), 2, + anon_sym_async, + anon_sym_default, + STATE(2287), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [52654] = 19, + [70301] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4340), 1, - anon_sym_CARET, - ACTIONS(4342), 1, - anon_sym_AMP, - ACTIONS(4344), 1, - anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(403), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4358), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1868), 2, + ACTIONS(5118), 1, + anon_sym_const, + ACTIONS(5120), 1, + anon_sym_enum, + ACTIONS(5122), 1, + anon_sym_fn, + ACTIONS(5128), 1, + anon_sym_mod, + ACTIONS(5132), 1, + anon_sym_static, + ACTIONS(5134), 1, + anon_sym_struct, + ACTIONS(5136), 1, + anon_sym_trait, + ACTIONS(5140), 1, + anon_sym_union, + ACTIONS(5144), 1, + anon_sym_use, + ACTIONS(5146), 1, + anon_sym_extern, + ACTIONS(5273), 1, + anon_sym_type, + ACTIONS(5275), 1, + anon_sym_unsafe, + STATE(2540), 1, + sym_extern_modifier, + STATE(2605), 1, + aux_sym_function_modifiers_repeat1, + STATE(4025), 1, + sym_function_modifiers, + ACTIONS(5116), 2, + anon_sym_async, + anon_sym_default, + STATE(2288), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(401), 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, - [52735] = 21, + [70361] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4340), 1, - anon_sym_CARET, - ACTIONS(4342), 1, - anon_sym_AMP, - ACTIONS(4344), 1, - anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, - anon_sym_DOT_DOT, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4358), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4362), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2292), 1, + sym_type_arguments, + STATE(2365), 1, + sym_parameters, + STATE(2289), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(341), 12, - anon_sym_LPAREN, + ACTIONS(3977), 13, + 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, - [52820] = 23, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [70399] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4340), 1, - anon_sym_CARET, - ACTIONS(4342), 1, - anon_sym_AMP, - ACTIONS(4344), 1, - anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, - anon_sym_EQ, - ACTIONS(4404), 1, - anon_sym_DOT_DOT, - ACTIONS(4464), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2292), 1, + sym_type_arguments, + STATE(2365), 1, + sym_parameters, + STATE(2290), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, - STATE(477), 1, - sym_match_block, - ACTIONS(4336), 2, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4358), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4406), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1870), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4338), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4352), 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, - [52909] = 21, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [70437] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4340), 1, - anon_sym_CARET, - ACTIONS(4342), 1, - anon_sym_AMP, - ACTIONS(4344), 1, - anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, - anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2292), 1, + sym_type_arguments, + STATE(2365), 1, + sym_parameters, + STATE(2291), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3981), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4358), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4362), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1871), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [70475] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4142), 1, + anon_sym_COLON, + STATE(2292), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 12, - anon_sym_LPAREN, + ACTIONS(4140), 16, + 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, - [52994] = 21, + 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, + [70507] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4159), 1, - anon_sym_EQ, - ACTIONS(4340), 1, - anon_sym_CARET, - ACTIONS(4342), 1, - anon_sym_AMP, - ACTIONS(4344), 1, - anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5215), 1, + anon_sym_COLON, + ACTIONS(5217), 1, + anon_sym_BANG, + ACTIONS(5219), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4358), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(5277), 1, + anon_sym_COLON_COLON, + STATE(2285), 1, + sym_type_arguments, + ACTIONS(5221), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1872), 2, + STATE(2293), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4157), 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, - [53079] = 23, + ACTIONS(5213), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70553] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(305), 1, + STATE(2294), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4086), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1873), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [53168] = 23, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70582] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(291), 1, + STATE(2295), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4052), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1874), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [53257] = 23, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70611] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + STATE(2296), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1499), 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(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4328), 1, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(4466), 1, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [70640] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2297), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1533), 16, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(4090), 2, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1875), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [53346] = 17, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [70669] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, + ACTIONS(3975), 1, + anon_sym_COLON, + ACTIONS(5279), 1, anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - ACTIONS(4468), 1, + STATE(2298), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3365), 1, - sym__use_clause, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1876), 2, + 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, + [70702] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2299), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 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, - [53423] = 23, + ACTIONS(4176), 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, + [70731] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(307), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(5181), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(5185), 1, + anon_sym_LBRACE, + ACTIONS(5187), 1, + anon_sym_COLON, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5191), 1, + anon_sym_AT, + ACTIONS(5193), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5281), 1, + anon_sym_LPAREN, + ACTIONS(5283), 1, + anon_sym_COLON_COLON, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + ACTIONS(5195), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1877), 2, + STATE(2300), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [53512] = 23, + ACTIONS(3894), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [70784] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(5285), 1, + anon_sym_LPAREN, + STATE(2301), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4622), 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, + [70815] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2302), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4034), 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(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70844] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2303), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4172), 16, anon_sym_SEMI, - ACTIONS(4470), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4090), 2, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70873] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5187), 1, + anon_sym_COLON, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5193), 1, + anon_sym_DOT_DOT, + ACTIONS(5287), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1878), 2, + STATE(2304), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [53601] = 23, + ACTIONS(5181), 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, + [70914] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(311), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(5185), 1, + anon_sym_LBRACE, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5191), 1, + anon_sym_AT, + ACTIONS(5193), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(5291), 1, + anon_sym_RBRACK, + ACTIONS(5294), 1, + anon_sym_COLON_COLON, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + ACTIONS(3894), 2, anon_sym_SEMI, - ACTIONS(4090), 2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(5181), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(5195), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1879), 2, + STATE(2305), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [53690] = 23, + [70967] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4340), 1, - anon_sym_CARET, - ACTIONS(4342), 1, - anon_sym_AMP, - ACTIONS(4344), 1, - anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, - anon_sym_EQ, - ACTIONS(4404), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5217), 1, + anon_sym_BANG, + ACTIONS(5219), 1, anon_sym_DOT_DOT, - ACTIONS(4472), 1, - anon_sym_LBRACE, - STATE(1791), 1, - sym_match_block, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4358), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4406), 2, + ACTIONS(5296), 1, + anon_sym_COLON_COLON, + STATE(2285), 1, + sym_type_arguments, + ACTIONS(5221), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1880), 2, + STATE(2306), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4352), 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, - [53779] = 23, + ACTIONS(5213), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71010] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + STATE(2307), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1043), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [71039] = 17, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3894), 1, + anon_sym_PLUS, + ACTIONS(5181), 1, + anon_sym_PIPE, + ACTIONS(5185), 1, + anon_sym_LBRACE, + ACTIONS(5187), 1, + anon_sym_COLON, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5191), 1, + anon_sym_AT, + ACTIONS(5193), 1, + anon_sym_DOT_DOT, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5298), 1, + anon_sym_LPAREN, + ACTIONS(5300), 1, + anon_sym_COLON_COLON, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + ACTIONS(5195), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1881), 2, + ACTIONS(5291), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2308), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [53868] = 5, + [71094] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1882), 2, + ACTIONS(3975), 1, + anon_sym_COLON, + ACTIONS(5302), 1, + anon_sym_COLON_COLON, + STATE(2309), 2, sym_line_comment, sym_block_comment, - ACTIONS(3976), 15, + ACTIONS(3973), 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(3974), 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, - [53921] = 23, + anon_sym_where, + anon_sym_else, + [71127] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + STATE(2310), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1039), 16, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4328), 1, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(4090), 2, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [71156] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3979), 1, + anon_sym_COLON, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + STATE(2311), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3977), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1883), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71189] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3983), 1, + anon_sym_COLON, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + STATE(2312), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [54010] = 23, + ACTIONS(3981), 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, + [71222] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(315), 1, + ACTIONS(3989), 1, + anon_sym_COLON, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + STATE(2313), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3987), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71255] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3975), 1, + anon_sym_COLON, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + STATE(2314), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 14, anon_sym_SEMI, - ACTIONS(4090), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1884), 2, + 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, + STATE(2315), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [54099] = 23, + ACTIONS(4228), 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, + [71316] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + STATE(2316), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4392), 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(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, + anon_sym_GT, + 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(2317), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4420), 15, anon_sym_SEMI, - ACTIONS(4474), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4090), 2, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1885), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71372] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2318), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [54188] = 5, + ACTIONS(4608), 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, + [71400] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1886), 2, + STATE(2319), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(4428), 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(3842), 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, - [54241] = 23, + anon_sym_where, + anon_sym_else, + [71428] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(319), 1, + STATE(2320), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4322), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1887), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71456] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5306), 1, + anon_sym_COLON_COLON, + STATE(2321), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [54330] = 23, + ACTIONS(4627), 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, + [71486] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(321), 1, + STATE(2322), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4482), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1888), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71514] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2323), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [54419] = 23, + ACTIONS(4588), 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, + [71542] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + STATE(2324), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3977), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1889), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [54508] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71570] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + STATE(2325), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4224), 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(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71598] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2326), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4448), 15, anon_sym_SEMI, - ACTIONS(4476), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4090), 2, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1890), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71626] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2327), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [54597] = 23, + ACTIONS(4452), 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, + [71654] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + STATE(2328), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4456), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1891), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [54686] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71682] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(329), 1, + STATE(2329), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4460), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1892), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [54775] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71710] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(331), 1, + STATE(2330), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3981), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1893), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [54864] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71738] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, + STATE(2331), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4404), 15, anon_sym_SEMI, - ACTIONS(4478), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4090), 2, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1894), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [54953] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71766] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(335), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5213), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(5215), 1, + anon_sym_COLON, + ACTIONS(5217), 1, + anon_sym_BANG, + ACTIONS(5219), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(5308), 1, + anon_sym_COLON_COLON, + STATE(2285), 1, + sym_type_arguments, + ACTIONS(5221), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1895), 2, + STATE(2332), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [55042] = 23, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71810] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(123), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1896), 2, + STATE(2333), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [55131] = 23, + ACTIONS(4604), 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, + [71838] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(125), 1, + STATE(2334), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4472), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1897), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71866] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2335), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [55220] = 23, + ACTIONS(4622), 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, + [71894] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, + STATE(2336), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4478), 15, anon_sym_SEMI, - ACTIONS(4480), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4090), 2, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1898), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [55309] = 22, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71922] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + STATE(2337), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4464), 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(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4482), 2, - anon_sym_RBRACE, anon_sym_COMMA, - STATE(1899), 2, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71950] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4528), 1, + anon_sym_COLON_COLON, + STATE(2338), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [55396] = 22, + ACTIONS(4627), 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, + [71980] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + STATE(2339), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4244), 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(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4484), 2, - anon_sym_RBRACE, anon_sym_COMMA, - STATE(1900), 2, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [72008] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2340), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [55483] = 22, + ACTIONS(3987), 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, + [72036] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + STATE(2341), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4408), 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(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4486), 2, - anon_sym_RBRACE, anon_sym_COMMA, - STATE(1901), 2, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [72064] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2342), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [55570] = 5, + ACTIONS(4444), 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, + [72092] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1902), 2, + STATE(2343), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 15, + ACTIONS(4416), 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(3982), 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, - [55623] = 5, + anon_sym_where, + anon_sym_else, + [72120] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1903), 2, + STATE(2344), 2, sym_line_comment, sym_block_comment, - ACTIONS(3992), 15, + ACTIONS(4364), 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(3990), 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, - [55676] = 5, + anon_sym_where, + anon_sym_else, + [72148] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1904), 2, + STATE(2345), 2, sym_line_comment, sym_block_comment, - ACTIONS(3996), 15, + ACTIONS(4368), 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(3994), 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, - [55729] = 5, + anon_sym_where, + anon_sym_else, + [72176] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1905), 2, + STATE(2346), 2, sym_line_comment, sym_block_comment, - ACTIONS(3876), 15, + ACTIONS(4198), 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(3874), 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, - [55782] = 5, + anon_sym_where, + anon_sym_else, + [72204] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1906), 2, + STATE(2347), 2, sym_line_comment, sym_block_comment, - ACTIONS(4012), 15, + ACTIONS(4272), 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(4010), 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, - [55835] = 21, + anon_sym_where, + anon_sym_else, + [72232] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, + STATE(2348), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4432), 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(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4218), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1907), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [72260] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2349), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4488), 3, + ACTIONS(3973), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_AMP_AMP, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_SQUOTE, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 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, - [55920] = 5, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [72288] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1908), 2, + STATE(2350), 2, sym_line_comment, sym_block_comment, - ACTIONS(4016), 15, + ACTIONS(4498), 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(4014), 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, - [55973] = 5, + anon_sym_where, + anon_sym_else, + [72316] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1909), 2, + STATE(2351), 2, sym_line_comment, sym_block_comment, - ACTIONS(4020), 15, + ACTIONS(4388), 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(4018), 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, - [56026] = 23, + anon_sym_where, + anon_sym_else, + [72344] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(289), 1, + STATE(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4232), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1910), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [56115] = 5, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [72372] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1911), 2, + STATE(2353), 2, sym_line_comment, sym_block_comment, - ACTIONS(3880), 15, + ACTIONS(4216), 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(3878), 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, - [56168] = 23, + anon_sym_where, + anon_sym_else, + [72400] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4490), 1, + ACTIONS(5310), 1, + anon_sym_DASH_GT, + STATE(2354), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4180), 13, anon_sym_SEMI, - ACTIONS(4492), 1, - anon_sym_else, - ACTIONS(4090), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1912), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [56257] = 5, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [72429] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1913), 2, + ACTIONS(5312), 1, + anon_sym_DASH_GT, + STATE(2355), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4186), 13, + 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(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, - [56310] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [72458] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4494), 1, + ACTIONS(5314), 1, + anon_sym_DASH_GT, + STATE(2356), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4192), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4496), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [72487] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5215), 1, + anon_sym_COLON, + ACTIONS(5219), 1, + anon_sym_DOT_DOT, + ACTIONS(5223), 1, + anon_sym_COLON_COLON, + ACTIONS(5221), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1914), 2, + STATE(2357), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [56399] = 23, + ACTIONS(5213), 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, + [72522] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4498), 1, - anon_sym_SEMI, - ACTIONS(4500), 1, - anon_sym_else, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1915), 2, + ACTIONS(5318), 1, + anon_sym_pat, + STATE(176), 1, + sym_fragment_specifier, + STATE(2358), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [56488] = 5, + ACTIONS(5316), 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, + [72553] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1916), 2, + ACTIONS(5320), 1, + anon_sym_DASH_GT, + STATE(2359), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(4072), 13, + 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_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [72582] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(991), 1, anon_sym_DOT_DOT, - ACTIONS(3898), 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(2360), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(993), 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_as, - [56541] = 22, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [72611] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(979), 1, anon_sym_DOT_DOT, - ACTIONS(4502), 1, + STATE(2361), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(981), 13, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1917), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [56627] = 22, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [72640] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(5324), 1, anon_sym_DOT_DOT, - ACTIONS(4504), 1, + STATE(2362), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5322), 13, anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1918), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [56713] = 16, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [72669] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(3760), 1, - sym__use_clause, - STATE(1919), 2, + ACTIONS(5326), 1, + anon_sym_DASH_GT, + STATE(2363), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 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, - [56787] = 22, + ACTIONS(4144), 13, + 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_where, + anon_sym_else, + [72698] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4506), 1, + ACTIONS(5328), 1, + anon_sym_DASH_GT, + STATE(2364), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4150), 13, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(4090), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1920), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [56873] = 22, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [72727] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4508), 1, + ACTIONS(5330), 1, + anon_sym_DASH_GT, + STATE(2365), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4156), 13, anon_sym_SEMI, - ACTIONS(4090), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1921), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [56959] = 22, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [72756] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(3967), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4510), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + STATE(2366), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3963), 3, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_LT2, + ACTIONS(5332), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3969), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1922), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [57045] = 21, + anon_sym_COLON_COLON, + [72788] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, - anon_sym_CARET, - ACTIONS(4388), 1, - anon_sym_AMP, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(4394), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4424), 1, - anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(3967), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(5332), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2367), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3963), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4396), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4400), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4414), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4514), 2, + anon_sym_LT2, + ACTIONS(3969), 6, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1923), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4398), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4422), 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, - [57129] = 22, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [72820] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(3937), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4516), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + STATE(2368), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3933), 3, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_LT2, + ACTIONS(5335), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3939), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1924), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [57215] = 22, + anon_sym_COLON_COLON, + [72852] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(3921), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4518), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + STATE(2369), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3917), 3, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_LT2, + ACTIONS(5338), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3923), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1925), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [57301] = 22, + anon_sym_COLON_COLON, + [72884] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(3929), 1, anon_sym_DOT_DOT, - ACTIONS(4520), 1, + ACTIONS(5341), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2370), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3925), 4, anon_sym_SEMI, - ACTIONS(4090), 2, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_LT2, + ACTIONS(3931), 6, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1926), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [57387] = 22, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [72916] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, - anon_sym_CARET, - ACTIONS(4388), 1, - anon_sym_AMP, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(4394), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4424), 1, - anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(5341), 1, + anon_sym_LPAREN, + ACTIONS(3929), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4522), 1, - anon_sym_AMP_AMP, - ACTIONS(4382), 2, + STATE(2371), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3925), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4396), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4400), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4514), 2, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3931), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1927), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4398), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4422), 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, - [57473] = 22, + anon_sym_COLON_COLON, + [72948] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(3937), 1, anon_sym_DOT_DOT, - ACTIONS(4524), 1, + ACTIONS(5335), 2, + anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(4090), 2, + STATE(2372), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3933), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_LT2, + ACTIONS(3939), 6, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1928), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [57559] = 22, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [72980] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(3967), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + STATE(2373), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3963), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3969), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1929), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [57645] = 16, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_COLON_COLON, + [73012] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3461), 1, - sym_bracketed_type, - STATE(3482), 1, - sym__use_clause, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1930), 2, + ACTIONS(3921), 1, + anon_sym_DOT_DOT, + ACTIONS(5338), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2374), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 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, - [57719] = 22, + ACTIONS(3917), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3923), 6, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [73044] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(5335), 1, + anon_sym_LPAREN, + ACTIONS(3937), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4526), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + STATE(2375), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3933), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3939), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1931), 2, + anon_sym_COLON_COLON, + [73076] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5338), 1, + anon_sym_LPAREN, + ACTIONS(3921), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2376), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [57805] = 22, + ACTIONS(3917), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3923), 5, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [73108] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(5346), 1, anon_sym_DOT_DOT, - ACTIONS(4528), 1, + STATE(2377), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5344), 12, anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + 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, - STATE(1932), 2, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [73136] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3929), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2378), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [57891] = 22, + ACTIONS(3925), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(5341), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3931), 5, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [73168] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, + anon_sym_COLON_COLON, + ACTIONS(5348), 1, + anon_sym_COLON, + ACTIONS(5350), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4530), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + STATE(2282), 1, + sym_type_arguments, + STATE(2701), 1, + sym_parameters, + STATE(3477), 1, + sym_trait_bounds, + ACTIONS(3894), 2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_as, + ACTIONS(5352), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1933), 2, + anon_sym_COMMA, + STATE(2379), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [57977] = 21, + [73214] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, - anon_sym_CARET, - ACTIONS(4388), 1, - anon_sym_AMP, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(4394), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4424), 1, - anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5354), 1, + anon_sym_LPAREN, + ACTIONS(5356), 1, + anon_sym_LBRACE, + ACTIONS(5358), 1, + anon_sym_BANG, + ACTIONS(5360), 1, + anon_sym_AT, + ACTIONS(5362), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4396), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4400), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4488), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4514), 2, + ACTIONS(5366), 1, + anon_sym_COLON_COLON, + STATE(2282), 1, + sym_type_arguments, + ACTIONS(5364), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1934), 2, + STATE(2380), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4398), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4422), 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, - [58061] = 22, + ACTIONS(5181), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [73258] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(5193), 1, anon_sym_DOT_DOT, - ACTIONS(4532), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(5195), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1935), 2, + STATE(2381), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [58147] = 16, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(5181), 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, + [73288] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(3486), 1, + anon_sym_SQUOTE, + ACTIONS(5368), 1, sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, + ACTIONS(5370), 1, + anon_sym_GT, + ACTIONS(5372), 1, + anon_sym_const, + ACTIONS(5374), 1, sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3461), 1, - sym_bracketed_type, - STATE(3584), 1, - sym__use_clause, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1936), 2, + STATE(2254), 1, + sym_attribute_item, + STATE(2435), 1, + aux_sym_mod_item_repeat1, + STATE(3228), 1, + sym_lifetime, + STATE(2382), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 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, - [58221] = 22, + STATE(3697), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [73331] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(5378), 1, + anon_sym_COLON, + ACTIONS(4282), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2383), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5376), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4534), 1, anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_else, + anon_sym_in, + [73360] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(3486), 1, + anon_sym_SQUOTE, + ACTIONS(5368), 1, + sym_identifier, + ACTIONS(5372), 1, + anon_sym_const, + ACTIONS(5374), 1, + sym_metavariable, + ACTIONS(5380), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1937), 2, + STATE(2254), 1, + sym_attribute_item, + STATE(2435), 1, + aux_sym_mod_item_repeat1, + STATE(3228), 1, + sym_lifetime, + STATE(2384), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [58307] = 22, + STATE(3697), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [73403] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4536), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(3486), 1, + anon_sym_SQUOTE, + ACTIONS(5368), 1, + sym_identifier, + ACTIONS(5372), 1, + anon_sym_const, + ACTIONS(5374), 1, + sym_metavariable, + ACTIONS(5382), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1938), 2, + STATE(2254), 1, + sym_attribute_item, + STATE(2435), 1, + aux_sym_mod_item_repeat1, + STATE(3228), 1, + sym_lifetime, + STATE(2385), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [58393] = 22, + STATE(3697), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [73446] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4538), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(3486), 1, + anon_sym_SQUOTE, + ACTIONS(5368), 1, + sym_identifier, + ACTIONS(5372), 1, + anon_sym_const, + ACTIONS(5374), 1, + sym_metavariable, + ACTIONS(5384), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1939), 2, + STATE(2254), 1, + sym_attribute_item, + STATE(2435), 1, + aux_sym_mod_item_repeat1, + STATE(3228), 1, + sym_lifetime, + STATE(2386), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [58479] = 22, + STATE(3697), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [73489] = 10, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4540), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5124), 1, + anon_sym_impl, + ACTIONS(5136), 1, + anon_sym_trait, + STATE(417), 1, + sym_block, + STATE(3965), 1, + sym_label, + STATE(2387), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73526] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(3486), 1, + anon_sym_SQUOTE, + ACTIONS(5368), 1, + sym_identifier, + ACTIONS(5372), 1, + anon_sym_const, + ACTIONS(5374), 1, + sym_metavariable, + ACTIONS(5386), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1940), 2, + STATE(2254), 1, + sym_attribute_item, + STATE(2435), 1, + aux_sym_mod_item_repeat1, + STATE(3228), 1, + sym_lifetime, + STATE(2388), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [58565] = 22, + STATE(3697), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [73569] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4542), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(3486), 1, + anon_sym_SQUOTE, + ACTIONS(5368), 1, + sym_identifier, + ACTIONS(5372), 1, + anon_sym_const, + ACTIONS(5374), 1, + sym_metavariable, + ACTIONS(5388), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1941), 2, + STATE(2254), 1, + sym_attribute_item, + STATE(2435), 1, + aux_sym_mod_item_repeat1, + STATE(3228), 1, + sym_lifetime, + STATE(2389), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [58651] = 22, + STATE(3697), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [73612] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(5378), 1, + anon_sym_COLON, + ACTIONS(4476), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2390), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5376), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4544), 1, anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1942), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [58737] = 22, + anon_sym_else, + anon_sym_in, + [73641] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(5306), 1, + anon_sym_COLON_COLON, + ACTIONS(5392), 1, + anon_sym_COLON, + STATE(2391), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5390), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4546), 1, anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1943), 2, + anon_sym_else, + anon_sym_in, + [73669] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(3486), 1, + anon_sym_SQUOTE, + ACTIONS(5368), 1, + sym_identifier, + ACTIONS(5372), 1, + anon_sym_const, + ACTIONS(5394), 1, + sym_metavariable, + STATE(2253), 1, + aux_sym_mod_item_repeat1, + STATE(2254), 1, + sym_attribute_item, + STATE(3228), 1, + sym_lifetime, + STATE(2392), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [58823] = 22, + STATE(3251), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [73709] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(1161), 1, + aux_sym_string_literal_token1, + ACTIONS(5398), 1, + sym_crate, + STATE(2566), 1, + sym_string_literal, + STATE(2393), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 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, + [73739] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(3486), 1, + anon_sym_SQUOTE, + ACTIONS(5368), 1, + sym_identifier, + ACTIONS(5372), 1, + anon_sym_const, + ACTIONS(5400), 1, + sym_metavariable, + STATE(2254), 1, + sym_attribute_item, + STATE(2411), 1, + aux_sym_mod_item_repeat1, + STATE(2935), 1, + sym_lifetime, + STATE(2394), 2, + sym_line_comment, + sym_block_comment, + STATE(3379), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [73779] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3896), 1, + anon_sym_COLON, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, + anon_sym_COLON_COLON, + STATE(2282), 1, + sym_type_arguments, + STATE(2701), 1, + sym_parameters, + STATE(2395), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3894), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + [73817] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3896), 1, + anon_sym_COLON, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, + anon_sym_COLON_COLON, + ACTIONS(5402), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4548), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + STATE(2701), 1, + sym_parameters, + STATE(2759), 1, + sym_type_arguments, + STATE(2396), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3894), 3, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1944), 2, + anon_sym_COMMA, + [73857] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5404), 1, + sym_identifier, + ACTIONS(5406), 1, + anon_sym_RBRACE, + ACTIONS(5408), 1, + anon_sym_DOT_DOT, + ACTIONS(5410), 1, + anon_sym_COMMA, + ACTIONS(5412), 1, + sym_integer_literal, + STATE(2254), 1, + sym_attribute_item, + STATE(2872), 1, + aux_sym_mod_item_repeat1, + STATE(2397), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [58909] = 22, + STATE(3557), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [73897] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + STATE(2398), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1435), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1945), 2, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [73921] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3902), 1, + anon_sym_COLON, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, + anon_sym_COLON_COLON, + STATE(2282), 1, + sym_type_arguments, + STATE(2701), 1, + sym_parameters, + STATE(2399), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [58995] = 22, + ACTIONS(3900), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [73959] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + STATE(2400), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1419), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4550), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1946), 2, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [73983] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(3486), 1, + anon_sym_SQUOTE, + ACTIONS(5368), 1, + sym_identifier, + ACTIONS(5372), 1, + anon_sym_const, + ACTIONS(5374), 1, + sym_metavariable, + STATE(2254), 1, + sym_attribute_item, + STATE(2435), 1, + aux_sym_mod_item_repeat1, + STATE(3228), 1, + sym_lifetime, + STATE(2401), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [59081] = 22, + STATE(3697), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [74023] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5215), 1, + anon_sym_COLON, + ACTIONS(5217), 1, + anon_sym_BANG, + ACTIONS(5219), 1, anon_sym_DOT_DOT, - ACTIONS(4552), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(5277), 1, + anon_sym_COLON_COLON, + STATE(2285), 1, + sym_type_arguments, + ACTIONS(5221), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1947), 2, + STATE(2402), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [59167] = 22, + ACTIONS(5213), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [74061] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(5416), 1, + anon_sym_COLON, + ACTIONS(5418), 1, + anon_sym_COLON_COLON, + STATE(2403), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5414), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4554), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1948), 2, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [74089] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5306), 1, + anon_sym_COLON_COLON, + ACTIONS(5422), 1, + anon_sym_COLON, + STATE(2404), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [59253] = 16, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(5420), 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, + [74117] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, + ACTIONS(3874), 1, + anon_sym_COLON, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3365), 1, - sym__use_clause, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1949), 2, + STATE(2282), 1, + sym_type_arguments, + STATE(2701), 1, + sym_parameters, + STATE(2405), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 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, - [59327] = 22, + ACTIONS(3870), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [74155] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(5422), 1, + anon_sym_COLON, + ACTIONS(5424), 1, + anon_sym_COLON_COLON, + STATE(2406), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5420), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4556), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1950), 2, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [74183] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5426), 1, + anon_sym_move, + STATE(405), 1, + sym_block, + STATE(3965), 1, + sym_label, + STATE(2407), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [59413] = 22, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74217] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4558), 1, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, + anon_sym_COLON_COLON, + ACTIONS(5428), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + STATE(2408), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3894), 4, anon_sym_SEMI, - ACTIONS(4090), 2, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1951), 2, + anon_sym_where, + [74255] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(3486), 1, + anon_sym_SQUOTE, + ACTIONS(5368), 1, + sym_identifier, + ACTIONS(5372), 1, + anon_sym_const, + ACTIONS(5400), 1, + sym_metavariable, + STATE(2254), 1, + sym_attribute_item, + STATE(2411), 1, + aux_sym_mod_item_repeat1, + STATE(3228), 1, + sym_lifetime, + STATE(2409), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [59499] = 22, + STATE(3379), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [74295] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5404), 1, + sym_identifier, + ACTIONS(5408), 1, anon_sym_DOT_DOT, - ACTIONS(4560), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1952), 2, + ACTIONS(5412), 1, + sym_integer_literal, + ACTIONS(5430), 1, + anon_sym_RBRACE, + ACTIONS(5432), 1, + anon_sym_COMMA, + STATE(2254), 1, + sym_attribute_item, + STATE(2872), 1, + aux_sym_mod_item_repeat1, + STATE(2410), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 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, - [59585] = 16, - ACTIONS(29), 1, - anon_sym_LT, + STATE(3564), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [74335] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(3486), 1, + anon_sym_SQUOTE, + ACTIONS(5368), 1, sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, + ACTIONS(5372), 1, + anon_sym_const, + ACTIONS(5434), 1, sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(3722), 1, - sym__use_clause, - STATE(1953), 2, + STATE(2253), 1, + aux_sym_mod_item_repeat1, + STATE(2254), 1, + sym_attribute_item, + STATE(3228), 1, + sym_lifetime, + STATE(2411), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 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, - [59659] = 17, - ACTIONS(29), 1, - anon_sym_LT, + STATE(3249), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [74375] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, - anon_sym_where, - ACTIONS(4562), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5436), 1, sym_identifier, - ACTIONS(4566), 1, - anon_sym_COLON_COLON, - ACTIONS(4572), 1, - sym_metavariable, - STATE(3144), 1, - sym_scoped_type_identifier, - STATE(3422), 1, - sym_generic_type, - STATE(3477), 1, - sym_scoped_identifier, - STATE(3604), 1, - sym_generic_type_with_turbofish, - STATE(3631), 1, - sym_bracketed_type, - STATE(1954), 2, + STATE(409), 1, + sym_block, + STATE(3965), 1, + sym_label, + STATE(2412), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(5438), 6, + anon_sym_async, + anon_sym_const, anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4570), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4564), 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, - [59734] = 17, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74409] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, - anon_sym_where, - ACTIONS(4566), 1, - anon_sym_COLON_COLON, - ACTIONS(4572), 1, - sym_metavariable, - ACTIONS(4574), 1, - sym_identifier, - STATE(3151), 1, - sym_scoped_type_identifier, - STATE(3438), 1, - sym_generic_type, - STATE(3477), 1, - sym_scoped_identifier, - STATE(3604), 1, - sym_generic_type_with_turbofish, - STATE(3631), 1, - sym_bracketed_type, - STATE(1955), 2, + STATE(2413), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(1423), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4568), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4570), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4564), 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, - [59809] = 17, - ACTIONS(29), 1, - anon_sym_LT, + 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, + [74433] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, - anon_sym_where, - ACTIONS(4566), 1, - anon_sym_COLON_COLON, - ACTIONS(4572), 1, - sym_metavariable, - ACTIONS(4576), 1, - sym_identifier, - STATE(3045), 1, - sym_scoped_type_identifier, - STATE(3264), 1, - sym_generic_type, - STATE(3477), 1, - sym_scoped_identifier, - STATE(3604), 1, - sym_generic_type_with_turbofish, - STATE(3631), 1, - sym_bracketed_type, - STATE(1956), 2, + ACTIONS(1161), 1, + aux_sym_string_literal_token1, + ACTIONS(5440), 1, + sym_crate, + STATE(2566), 1, + sym_string_literal, + STATE(2414), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(5396), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4568), 3, + anon_sym_async, + anon_sym_const, anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4570), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4564), 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, - [59884] = 17, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74463] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, - anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, - sym_metavariable, - ACTIONS(4578), 1, - sym_identifier, - STATE(3013), 1, - sym_scoped_type_identifier, - STATE(3172), 1, - sym_generic_type, - STATE(3477), 1, - sym_scoped_identifier, - STATE(3604), 1, - sym_generic_type_with_turbofish, - STATE(3631), 1, - sym_bracketed_type, - STATE(1957), 2, + ACTIONS(5442), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + STATE(2415), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3894), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4570), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4564), 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, - [59959] = 17, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_where, + [74501] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, - anon_sym_where, - ACTIONS(4566), 1, - anon_sym_COLON_COLON, - ACTIONS(4572), 1, - sym_metavariable, - ACTIONS(4580), 1, - sym_identifier, - STATE(3147), 1, - sym_scoped_type_identifier, - STATE(3430), 1, - sym_generic_type, - STATE(3477), 1, - sym_scoped_identifier, - STATE(3604), 1, - sym_generic_type_with_turbofish, - STATE(3631), 1, - sym_bracketed_type, - STATE(1958), 2, + ACTIONS(1161), 1, + aux_sym_string_literal_token1, + ACTIONS(5444), 1, + sym_crate, + STATE(2566), 1, + sym_string_literal, + STATE(2416), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(5396), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4568), 3, + anon_sym_async, + anon_sym_const, anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4570), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4564), 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, - [60034] = 17, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74531] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, - anon_sym_where, - ACTIONS(4566), 1, + STATE(2417), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1431), 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, + [74555] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5418), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, - sym_metavariable, - ACTIONS(4582), 1, - sym_identifier, - STATE(2947), 1, - sym_scoped_type_identifier, - STATE(3185), 1, - sym_generic_type, - STATE(3477), 1, - sym_scoped_identifier, - STATE(3604), 1, - sym_generic_type_with_turbofish, - STATE(3631), 1, - sym_bracketed_type, - STATE(1959), 2, + ACTIONS(5448), 1, + anon_sym_COLON, + STATE(2418), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(5446), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4568), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4570), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4564), 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, - [60109] = 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, + [74583] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, - anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(5452), 1, + anon_sym_COLON, + ACTIONS(5454), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, - sym_metavariable, - ACTIONS(4584), 1, - sym_identifier, - STATE(2867), 1, - sym_scoped_type_identifier, - STATE(3389), 1, - sym_generic_type, - STATE(3477), 1, - sym_scoped_identifier, - STATE(3604), 1, - sym_generic_type_with_turbofish, - STATE(3631), 1, - sym_bracketed_type, - STATE(1960), 2, + STATE(2419), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(5450), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4568), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4570), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4564), 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, - [60184] = 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, + [74611] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, - anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, - sym_metavariable, - ACTIONS(4586), 1, - sym_identifier, - STATE(3148), 1, - sym_scoped_type_identifier, - STATE(3432), 1, - sym_generic_type, - STATE(3477), 1, - sym_scoped_identifier, - STATE(3604), 1, - sym_generic_type_with_turbofish, - STATE(3631), 1, - sym_bracketed_type, - STATE(1961), 2, + ACTIONS(5456), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + STATE(2420), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3894), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74649] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + STATE(2421), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3894), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4570), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4564), 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, - [60259] = 5, + anon_sym_where, + [74687] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1962), 2, + ACTIONS(1161), 1, + aux_sym_string_literal_token1, + ACTIONS(5460), 1, + sym_crate, + STATE(2566), 1, + sym_string_literal, + STATE(2422), 2, sym_line_comment, sym_block_comment, - ACTIONS(4590), 3, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(4588), 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(5396), 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, - [60306] = 5, + [74717] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1963), 2, + ACTIONS(5422), 1, + anon_sym_COLON, + ACTIONS(5454), 1, + anon_sym_COLON_COLON, + STATE(2423), 2, sym_line_comment, sym_block_comment, - ACTIONS(4594), 3, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(4592), 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, - [60353] = 5, + ACTIONS(5420), 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, + [74745] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1964), 2, + ACTIONS(5306), 1, + anon_sym_COLON_COLON, + ACTIONS(5452), 1, + anon_sym_COLON, + STATE(2424), 2, sym_line_comment, sym_block_comment, - ACTIONS(4598), 3, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(4596), 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, - [60400] = 13, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(5450), 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, + [74773] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, - sym_identifier, - ACTIONS(4606), 1, - sym_metavariable, - STATE(2348), 1, - sym_scoped_identifier, - STATE(3554), 1, - sym_attribute, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - STATE(1965), 2, + ACTIONS(5462), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + STATE(2425), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4602), 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, - [60462] = 13, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(3894), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74811] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, - sym_identifier, - ACTIONS(4606), 1, - sym_metavariable, - STATE(2348), 1, - sym_scoped_identifier, - STATE(3560), 1, - sym_attribute, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - STATE(1966), 2, + ACTIONS(5464), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + STATE(2426), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4602), 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, - [60524] = 13, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(3894), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74849] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, - sym_identifier, - ACTIONS(4606), 1, - sym_metavariable, - STATE(2348), 1, - sym_scoped_identifier, - STATE(3695), 1, - sym_bracketed_type, - STATE(3709), 1, - sym_attribute, - STATE(3765), 1, - sym_generic_type_with_turbofish, - STATE(1967), 2, + ACTIONS(5466), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + STATE(2427), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4602), 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, - [60586] = 13, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(3894), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74887] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, - anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(3486), 1, + anon_sym_SQUOTE, + ACTIONS(5368), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(5372), 1, + anon_sym_const, + ACTIONS(5468), 1, sym_metavariable, - STATE(2348), 1, - sym_scoped_identifier, - STATE(3619), 1, - sym_attribute, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - STATE(1968), 2, + STATE(2254), 1, + sym_attribute_item, + STATE(2392), 1, + aux_sym_mod_item_repeat1, + STATE(3228), 1, + sym_lifetime, + STATE(2428), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4602), 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, - [60648] = 13, - ACTIONS(29), 1, - anon_sym_LT, + STATE(3543), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [74927] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(5424), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, - sym_identifier, - ACTIONS(4606), 1, - sym_metavariable, - STATE(2348), 1, - sym_scoped_identifier, - STATE(3468), 1, - sym_attribute, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - STATE(1969), 2, + ACTIONS(5452), 1, + anon_sym_COLON, + STATE(2429), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4602), 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, - [60710] = 13, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(5450), 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, + [74955] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, - sym_identifier, - ACTIONS(4606), 1, - sym_metavariable, - STATE(2348), 1, - sym_scoped_identifier, - STATE(3492), 1, - sym_attribute, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - STATE(1970), 2, + ACTIONS(5470), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + STATE(2430), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4602), 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, - [60772] = 13, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(3894), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74993] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, - sym_identifier, - ACTIONS(4606), 1, - sym_metavariable, - STATE(2348), 1, - sym_scoped_identifier, - STATE(3512), 1, - sym_attribute, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - STATE(1971), 2, + ACTIONS(5472), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + STATE(2431), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4602), 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, - [60834] = 13, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(3894), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75031] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3967), 1, + anon_sym_DOT_DOT, + ACTIONS(3963), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2432), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3969), 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, + [75059] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(5418), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, - sym_identifier, - ACTIONS(4606), 1, - sym_metavariable, - STATE(2348), 1, - sym_scoped_identifier, - STATE(3558), 1, - sym_attribute, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - STATE(1972), 2, + ACTIONS(5476), 1, + anon_sym_COLON, + STATE(2433), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4602), 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, - [60896] = 13, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(5474), 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, + [75087] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(3929), 1, + anon_sym_DOT_DOT, + ACTIONS(3925), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2434), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3931), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + anon_sym_if, + [75115] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(3486), 1, + anon_sym_SQUOTE, + ACTIONS(5368), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(5372), 1, + anon_sym_const, + ACTIONS(5478), 1, sym_metavariable, - STATE(2348), 1, - sym_scoped_identifier, - STATE(3647), 1, - sym_attribute, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - STATE(1973), 2, + STATE(2253), 1, + aux_sym_mod_item_repeat1, + STATE(2254), 1, + sym_attribute_item, + STATE(3228), 1, + sym_lifetime, + STATE(2435), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4602), 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, - [60958] = 12, - ACTIONS(29), 1, - anon_sym_LT, + STATE(3914), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [75155] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4608), 1, - sym_identifier, - ACTIONS(4612), 1, + ACTIONS(5392), 1, + anon_sym_COLON, + ACTIONS(5454), 1, anon_sym_COLON_COLON, - ACTIONS(4616), 1, - sym_metavariable, - STATE(3364), 1, - sym_scoped_identifier, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1974), 2, + STATE(2436), 2, sym_line_comment, sym_block_comment, - ACTIONS(4614), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4610), 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, - [61017] = 12, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(5390), 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, + [75183] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4612), 1, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, anon_sym_COLON_COLON, - ACTIONS(4618), 1, - sym_identifier, - ACTIONS(4624), 1, - sym_metavariable, - STATE(3189), 1, - sym_scoped_identifier, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1975), 2, + ACTIONS(5480), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + STATE(2437), 2, sym_line_comment, sym_block_comment, - ACTIONS(4622), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4620), 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, - [61076] = 5, + ACTIONS(3894), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75221] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, - anon_sym_DOT_DOT, - STATE(1976), 2, + STATE(2438), 2, sym_line_comment, sym_block_comment, - ACTIONS(913), 20, + ACTIONS(1427), 11, 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_COMMA, + anon_sym_else, + anon_sym_in, + [75245] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3937), 1, + anon_sym_DOT_DOT, + ACTIONS(3933), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2439), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3939), 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_COMMA, + anon_sym_COLON_COLON, + anon_sym_if, + [75273] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3921), 1, + anon_sym_DOT_DOT, + ACTIONS(3917), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2440), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3923), 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, + [75301] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1161), 1, + aux_sym_string_literal_token1, + ACTIONS(5482), 1, + sym_crate, + STATE(2566), 1, + sym_string_literal, + STATE(2441), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 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, - anon_sym_else, - anon_sym_in, - [61112] = 5, + [75331] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(919), 1, - anon_sym_DOT_DOT, - STATE(1977), 2, + ACTIONS(5392), 1, + anon_sym_COLON, + ACTIONS(5424), 1, + anon_sym_COLON_COLON, + STATE(2442), 2, sym_line_comment, sym_block_comment, - ACTIONS(921), 20, + ACTIONS(5390), 9, 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_else, + anon_sym_in, + [75359] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, + anon_sym_COLON_COLON, + ACTIONS(5484), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + STATE(2443), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3894), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75397] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1161), 1, + aux_sym_string_literal_token1, + ACTIONS(5486), 1, + sym_crate, + STATE(2566), 1, + sym_string_literal, + STATE(2444), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5396), 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, - anon_sym_else, - anon_sym_in, - [61148] = 6, + [75427] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3485), 1, - anon_sym_COLON, - ACTIONS(3489), 2, + ACTIONS(5189), 1, anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, anon_sym_COLON_COLON, - STATE(1978), 2, + ACTIONS(5488), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(2364), 1, + sym_parameters, + STATE(2445), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 17, + ACTIONS(3894), 4, 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_SQUOTE, - anon_sym_as, - anon_sym_for, anon_sym_where, - anon_sym_else, + [75465] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4586), 1, anon_sym_LT2, - [61185] = 6, + ACTIONS(4736), 1, + anon_sym_COLON_COLON, + ACTIONS(5217), 1, + anon_sym_BANG, + STATE(1951), 1, + sym_type_arguments, + STATE(2446), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [75496] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3504), 1, + ACTIONS(3913), 1, anon_sym_COLON, - ACTIONS(3508), 2, - anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, anon_sym_COLON_COLON, - STATE(1979), 2, + STATE(2282), 1, + sym_type_arguments, + STATE(2701), 1, + sym_parameters, + STATE(2447), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3911), 4, 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, - [61222] = 6, + [75531] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3512), 1, - anon_sym_COLON, - ACTIONS(3516), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5490), 1, anon_sym_BANG, + ACTIONS(5492), 1, + anon_sym_DOT_DOT, + ACTIONS(5496), 1, anon_sym_COLON_COLON, - STATE(1980), 2, + STATE(2285), 1, + sym_type_arguments, + ACTIONS(5494), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2448), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5213), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [75566] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5498), 1, + sym_identifier, + ACTIONS(5500), 1, + anon_sym_RBRACE, + ACTIONS(5502), 1, + anon_sym_COMMA, + ACTIONS(5504), 1, + sym_crate, + STATE(2254), 1, + sym_attribute_item, + STATE(2625), 1, + aux_sym_mod_item_repeat1, + STATE(3549), 1, + sym_enum_variant, + STATE(4166), 1, + sym_visibility_modifier, + STATE(2449), 2, + sym_line_comment, + sym_block_comment, + [75607] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 17, + ACTIONS(5506), 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, - [61259] = 6, + anon_sym_in, + [75630] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3496), 1, - anon_sym_COLON, - ACTIONS(3500), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - STATE(1981), 2, + STATE(2451), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 17, + ACTIONS(5508), 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, - [61296] = 14, + anon_sym_in, + [75653] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, - anon_sym_LPAREN, - ACTIONS(4630), 1, - anon_sym_LBRACE, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4636), 1, - anon_sym_AT, - ACTIONS(4638), 1, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5404), 1, + sym_identifier, + ACTIONS(5408), 1, anon_sym_DOT_DOT, - ACTIONS(4642), 1, - anon_sym_COLON_COLON, - ACTIONS(4644), 1, + ACTIONS(5412), 1, + sym_integer_literal, + ACTIONS(5510), 1, + anon_sym_RBRACE, + STATE(2254), 1, + sym_attribute_item, + STATE(2872), 1, + aux_sym_mod_item_repeat1, + STATE(2452), 2, + sym_line_comment, + sym_block_comment, + STATE(3618), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [75690] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3880), 1, anon_sym_LT2, - STATE(2006), 1, + ACTIONS(4104), 1, + anon_sym_COLON_COLON, + ACTIONS(5512), 1, + anon_sym_BANG, + STATE(1553), 1, sym_type_arguments, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1982), 2, + STATE(2453), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [75721] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5514), 1, + sym_identifier, + ACTIONS(5516), 1, + anon_sym_RBRACE, + ACTIONS(5518), 1, + anon_sym_COMMA, + STATE(2254), 1, + sym_attribute_item, + STATE(2603), 1, + aux_sym_mod_item_repeat1, + STATE(3294), 1, + sym_field_declaration, + STATE(3981), 1, + sym_visibility_modifier, + STATE(2454), 2, + sym_line_comment, + sym_block_comment, + [75762] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5498), 1, + sym_identifier, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5520), 1, + anon_sym_RBRACE, + ACTIONS(5522), 1, + anon_sym_COMMA, + STATE(2254), 1, + sym_attribute_item, + STATE(2618), 1, + aux_sym_mod_item_repeat1, + STATE(3248), 1, + sym_enum_variant, + STATE(4166), 1, + sym_visibility_modifier, + STATE(2455), 2, + sym_line_comment, + sym_block_comment, + [75803] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5514), 1, + sym_identifier, + ACTIONS(5524), 1, + anon_sym_RBRACE, + ACTIONS(5526), 1, + anon_sym_COMMA, + STATE(2254), 1, + sym_attribute_item, + STATE(2619), 1, + aux_sym_mod_item_repeat1, + STATE(3258), 1, + sym_field_declaration, + STATE(3981), 1, + sym_visibility_modifier, + STATE(2456), 2, + sym_line_comment, + sym_block_comment, + [75844] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5404), 1, + sym_identifier, + ACTIONS(5408), 1, + anon_sym_DOT_DOT, + ACTIONS(5412), 1, + sym_integer_literal, + ACTIONS(5528), 1, + anon_sym_RBRACE, + STATE(2254), 1, + sym_attribute_item, + STATE(2872), 1, + aux_sym_mod_item_repeat1, + STATE(2457), 2, + sym_line_comment, + sym_block_comment, + STATE(3618), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [75881] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2458), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 9, + ACTIONS(5530), 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, - [61349] = 10, + [75904] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(1983), 2, + STATE(2459), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 13, + ACTIONS(5532), 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_where, anon_sym_else, - [61393] = 5, + anon_sym_in, + [75927] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3680), 1, - anon_sym_COLON, - STATE(1984), 2, + STATE(2460), 2, sym_line_comment, sym_block_comment, - ACTIONS(3678), 18, + ACTIONS(5534), 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, anon_sym_in, - [61427] = 5, + [75950] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3712), 1, - anon_sym_COLON, - STATE(1985), 2, + STATE(2461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3710), 18, + ACTIONS(5536), 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, anon_sym_in, - [61461] = 5, + [75973] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3694), 1, - anon_sym_COLON, - STATE(1986), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5404), 1, + sym_identifier, + ACTIONS(5408), 1, + anon_sym_DOT_DOT, + ACTIONS(5412), 1, + sym_integer_literal, + ACTIONS(5538), 1, + anon_sym_RBRACE, + STATE(2254), 1, + sym_attribute_item, + STATE(2872), 1, + aux_sym_mod_item_repeat1, + STATE(2462), 2, + sym_line_comment, + sym_block_comment, + STATE(3618), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [76010] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3692), 18, + ACTIONS(5540), 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, anon_sym_in, - [61495] = 6, + [76033] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1987), 2, + STATE(2464), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3500), 14, + ACTIONS(5542), 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, - [61531] = 6, + [76056] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1988), 2, + STATE(2465), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3516), 14, + ACTIONS(5544), 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, - [61567] = 6, + [76079] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1989), 2, + STATE(2466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3508), 14, + ACTIONS(5546), 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, - [61603] = 6, + [76102] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1990), 2, + STATE(2467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3489), 14, + ACTIONS(5548), 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, - [61639] = 10, + [76125] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(1991), 2, + STATE(2468), 2, sym_line_comment, sym_block_comment, - ACTIONS(3424), 13, + ACTIONS(5550), 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_where, anon_sym_else, - [61683] = 5, + anon_sym_in, + [76148] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3704), 1, - anon_sym_COLON, - STATE(1992), 2, + STATE(2469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3702), 18, + ACTIONS(5552), 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, anon_sym_in, - [61717] = 10, + [76171] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(1993), 2, + STATE(2470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 13, + ACTIONS(5390), 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_where, anon_sym_else, - [61761] = 14, - ACTIONS(37), 1, - anon_sym_SQUOTE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(4650), 1, - sym_identifier, - STATE(3732), 1, - sym_label, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, - STATE(1994), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1629), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(2886), 3, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - STATE(3177), 3, - sym_block, - sym__literal, - sym_negative_literal, - [61812] = 5, + anon_sym_in, + [76194] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1995), 2, + STATE(2471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3489), 16, + ACTIONS(5554), 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, - [61845] = 5, + [76217] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1996), 2, + STATE(2472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3508), 16, + ACTIONS(5556), 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, - [61878] = 5, + [76240] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1997), 2, + STATE(2473), 2, sym_line_comment, sym_block_comment, - ACTIONS(3516), 16, + ACTIONS(5420), 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, - [61911] = 4, + [76263] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1998), 2, + STATE(2474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 18, + ACTIONS(5558), 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, - [61942] = 9, + anon_sym_in, + [76286] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(1999), 2, + STATE(2475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 13, + ACTIONS(5560), 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_where, anon_sym_else, - [61983] = 5, + anon_sym_in, + [76309] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 2, - anon_sym_COLON, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5404), 1, + sym_identifier, + ACTIONS(5408), 1, anon_sym_DOT_DOT, - STATE(2000), 2, + ACTIONS(5412), 1, + sym_integer_literal, + ACTIONS(5562), 1, + anon_sym_RBRACE, + STATE(2254), 1, + sym_attribute_item, + STATE(2872), 1, + aux_sym_mod_item_repeat1, + STATE(2476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3500), 16, + STATE(3618), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [76346] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2477), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5564), 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, - [62016] = 11, + [76369] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4664), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2001), 2, + STATE(2478), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 9, + ACTIONS(5566), 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, - [62060] = 19, + [76392] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4668), 1, - anon_sym_const, - ACTIONS(4670), 1, - anon_sym_enum, - ACTIONS(4672), 1, - anon_sym_fn, - ACTIONS(4674), 1, - anon_sym_mod, - ACTIONS(4676), 1, - anon_sym_static, - ACTIONS(4678), 1, - anon_sym_struct, - ACTIONS(4680), 1, - anon_sym_trait, - ACTIONS(4682), 1, - anon_sym_type, - ACTIONS(4684), 1, - anon_sym_union, - ACTIONS(4686), 1, - anon_sym_unsafe, - ACTIONS(4688), 1, - anon_sym_use, - ACTIONS(4690), 1, - anon_sym_extern, - STATE(2250), 1, - sym_extern_modifier, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(3485), 1, - sym_function_modifiers, - ACTIONS(4666), 2, - anon_sym_async, - anon_sym_default, - STATE(2002), 2, + STATE(2479), 2, sym_line_comment, sym_block_comment, - [62120] = 5, + ACTIONS(5181), 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, + [76415] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3618), 1, - anon_sym_COLON, - STATE(2003), 2, + STATE(2480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3616), 16, + ACTIONS(5450), 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, - [62152] = 12, + anon_sym_in, + [76438] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4692), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2004), 2, + STATE(2481), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(1463), 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, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [62198] = 19, + anon_sym_else, + anon_sym_in, + [76461] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4694), 1, - anon_sym_const, - ACTIONS(4696), 1, - anon_sym_enum, - ACTIONS(4698), 1, - anon_sym_fn, - ACTIONS(4700), 1, - anon_sym_mod, - ACTIONS(4702), 1, - anon_sym_static, - ACTIONS(4704), 1, - anon_sym_struct, - ACTIONS(4706), 1, - anon_sym_trait, - ACTIONS(4708), 1, - anon_sym_type, - ACTIONS(4710), 1, - anon_sym_union, - ACTIONS(4712), 1, - anon_sym_unsafe, - ACTIONS(4714), 1, - anon_sym_use, - ACTIONS(4716), 1, - anon_sym_extern, - STATE(2261), 1, - sym_extern_modifier, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(3754), 1, - sym_function_modifiers, - ACTIONS(4666), 2, - anon_sym_async, - anon_sym_default, - STATE(2005), 2, + STATE(2482), 2, sym_line_comment, sym_block_comment, - [62258] = 5, + ACTIONS(5568), 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, + [76484] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 1, - anon_sym_COLON, - STATE(2006), 2, + STATE(2483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3628), 16, + ACTIONS(5570), 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, - [62290] = 8, + anon_sym_in, + [76507] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2007), 2, + STATE(2484), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 13, + ACTIONS(5572), 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_where, anon_sym_else, - [62328] = 5, + anon_sym_in, + [76530] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, - anon_sym_COLON, - STATE(2008), 2, + STATE(2485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3632), 16, + ACTIONS(5574), 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, - [62360] = 8, + anon_sym_in, + [76553] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2009), 2, + STATE(2486), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 13, + ACTIONS(5576), 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_where, anon_sym_else, - [62398] = 8, + anon_sym_in, + [76576] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2010), 2, + STATE(2487), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 13, + ACTIONS(5578), 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_where, anon_sym_else, - [62436] = 8, + anon_sym_in, + [76599] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2011), 2, + STATE(2488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 13, + ACTIONS(5580), 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_where, anon_sym_else, - [62474] = 4, + anon_sym_in, + [76622] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2012), 2, + STATE(2489), 2, sym_line_comment, sym_block_comment, - ACTIONS(3696), 16, + ACTIONS(5582), 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, - [62503] = 5, + anon_sym_in, + [76645] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4718), 1, - anon_sym_LPAREN, - STATE(2013), 2, + ACTIONS(1603), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(2481), 1, + sym_block, + STATE(4244), 1, + sym_label, + STATE(2490), 2, sym_line_comment, sym_block_comment, - ACTIONS(4150), 15, + ACTIONS(4010), 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, - [62534] = 17, + [76676] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3436), 1, - anon_sym_PLUS, - ACTIONS(4626), 1, - anon_sym_PIPE, - ACTIONS(4630), 1, - anon_sym_LBRACE, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4636), 1, - anon_sym_AT, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(4644), 1, + ACTIONS(5199), 1, anon_sym_LT2, - ACTIONS(4720), 1, + ACTIONS(5201), 1, anon_sym_LPAREN, - ACTIONS(4725), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, + ACTIONS(5584), 1, + anon_sym_LBRACE, + STATE(2292), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2365), 1, sym_parameters, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4722), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2014), 2, - sym_line_comment, - sym_block_comment, - [62589] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3534), 1, - anon_sym_COLON, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - STATE(2015), 2, + STATE(2491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 14, + ACTIONS(3973), 5, 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, - [62622] = 4, + [76709] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2016), 2, + STATE(2492), 2, sym_line_comment, sym_block_comment, - ACTIONS(3706), 16, + ACTIONS(5586), 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, - [62651] = 16, + anon_sym_in, + [76732] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_PIPE, - ACTIONS(4630), 1, - anon_sym_LBRACE, - ACTIONS(4632), 1, + ACTIONS(3880), 1, + anon_sym_LT2, + ACTIONS(4104), 1, + anon_sym_COLON_COLON, + ACTIONS(5217), 1, + anon_sym_BANG, + STATE(1553), 1, + sym_type_arguments, + STATE(2493), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [76763] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5187), 1, anon_sym_COLON, - ACTIONS(4634), 1, + ACTIONS(5189), 1, anon_sym_BANG, - ACTIONS(4636), 1, - anon_sym_AT, - ACTIONS(4638), 1, + ACTIONS(5193), 1, anon_sym_DOT_DOT, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(5588), 1, anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - ACTIONS(4640), 2, + ACTIONS(5195), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2017), 2, + STATE(2494), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 3, + ACTIONS(5181), 3, anon_sym_RPAREN, - anon_sym_PLUS, + anon_sym_PIPE, anon_sym_COMMA, - [62704] = 4, + [76798] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2018), 2, + STATE(2495), 2, sym_line_comment, sym_block_comment, - ACTIONS(1043), 16, + ACTIONS(5590), 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, - [62733] = 6, + [76821] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3528), 1, - anon_sym_COLON, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - STATE(2019), 2, + STATE(2496), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 14, + ACTIONS(5592), 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, - [62766] = 4, + anon_sym_in, + [76844] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2020), 2, + STATE(2497), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 16, + ACTIONS(5594), 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, - [62795] = 6, + [76867] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3520), 1, - anon_sym_COLON, - ACTIONS(4733), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5217), 1, + anon_sym_BANG, + ACTIONS(5219), 1, + anon_sym_DOT_DOT, + ACTIONS(5296), 1, anon_sym_COLON_COLON, - STATE(2021), 2, + STATE(2285), 1, + sym_type_arguments, + ACTIONS(5221), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 14, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5213), 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, - [62828] = 4, + [76902] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2022), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5217), 1, + anon_sym_BANG, + ACTIONS(5279), 1, + anon_sym_COLON_COLON, + STATE(2285), 1, + sym_type_arguments, + STATE(2499), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [76933] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4586), 1, + anon_sym_LT2, + ACTIONS(4736), 1, + anon_sym_COLON_COLON, + ACTIONS(5596), 1, + anon_sym_BANG, + STATE(1951), 1, + sym_type_arguments, + STATE(2500), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [76964] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5598), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(2365), 1, + sym_parameters, + STATE(2501), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 16, + ACTIONS(3973), 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, - [62857] = 4, + [76996] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2023), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5600), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(2365), 1, + sym_parameters, + STATE(2502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3714), 16, + ACTIONS(3973), 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_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, - anon_sym_else, - [62886] = 6, + [77028] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3520), 1, - anon_sym_COLON, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - STATE(2024), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2292), 1, + sym_type_arguments, + STATE(2808), 1, + sym_parameters, + STATE(2503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3973), 5, + 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, + [77058] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2025), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5602), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(2365), 1, + sym_parameters, + STATE(2504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 16, + ACTIONS(3973), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [77090] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5498), 1, + sym_identifier, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5604), 1, anon_sym_RBRACE, + STATE(2254), 1, + sym_attribute_item, + STATE(2604), 1, + aux_sym_mod_item_repeat1, + STATE(3870), 1, + sym_enum_variant, + STATE(4166), 1, + sym_visibility_modifier, + STATE(2505), 2, + sym_line_comment, + sym_block_comment, + [77128] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2292), 1, + sym_type_arguments, + STATE(2808), 1, + sym_parameters, + STATE(2506), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3987), 5, 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, - [62948] = 6, + [77158] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3524), 1, - anon_sym_COLON, - ACTIONS(4727), 1, + ACTIONS(5606), 1, + anon_sym_SEMI, + ACTIONS(5608), 1, + anon_sym_LBRACE, + STATE(695), 1, + sym_declaration_list, + STATE(2507), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [77186] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4586), 1, + anon_sym_LT2, + ACTIONS(5610), 1, anon_sym_COLON_COLON, - STATE(2026), 2, + STATE(1951), 1, + sym_type_arguments, + STATE(2508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 14, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [77214] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5612), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(5614), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(1543), 1, + sym_declaration_list, + STATE(2509), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [77242] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3973), 1, anon_sym_PLUS, + ACTIONS(5213), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(5215), 1, + anon_sym_COLON, + ACTIONS(5219), 1, + anon_sym_DOT_DOT, + ACTIONS(5277), 1, + anon_sym_COLON_COLON, + ACTIONS(5221), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5616), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62981] = 4, + STATE(2510), 2, + sym_line_comment, + sym_block_comment, + [77276] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2027), 2, + ACTIONS(3967), 1, + anon_sym_DOT_DOT, + STATE(2511), 2, sym_line_comment, sym_block_comment, - ACTIONS(3656), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(3969), 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_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [63010] = 11, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [77300] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(5199), 1, anon_sym_LT2, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4735), 1, + ACTIONS(5619), 1, anon_sym_COLON_COLON, - STATE(2003), 1, + STATE(2285), 1, sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2028), 2, + STATE(2512), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(3562), 6, + ACTIONS(4010), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [63053] = 16, + [77328] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5498), 1, + sym_identifier, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5621), 1, + anon_sym_RBRACE, + STATE(2254), 1, + sym_attribute_item, + STATE(2604), 1, + aux_sym_mod_item_repeat1, + STATE(3870), 1, + sym_enum_variant, + STATE(4166), 1, + sym_visibility_modifier, + STATE(2513), 2, + sym_line_comment, + sym_block_comment, + [77366] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 1, + ACTIONS(5623), 1, + anon_sym_SEMI, + ACTIONS(5625), 1, + anon_sym_LPAREN, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4636), 1, - anon_sym_AT, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(4644), 1, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, + anon_sym_where, + STATE(1606), 1, + sym_field_declaration_list, + STATE(2663), 1, + sym_type_parameters, + STATE(3548), 1, + sym_ordered_field_declaration_list, + STATE(3866), 1, + sym_where_clause, + STATE(2514), 2, + sym_line_comment, + sym_block_comment, + [77404] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5633), 1, + anon_sym_SEMI, + STATE(1638), 1, + sym_declaration_list, + STATE(2515), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [77432] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3880), 1, anon_sym_LT2, - ACTIONS(4722), 1, - anon_sym_RBRACK, - ACTIONS(4737), 1, - anon_sym_LPAREN, - ACTIONS(4739), 1, + ACTIONS(5635), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(1553), 1, sym_type_arguments, - STATE(2079), 1, - sym_parameters, - ACTIONS(3436), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4626), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2029), 2, + STATE(2516), 2, sym_line_comment, sym_block_comment, - [63106] = 4, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [77460] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2030), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1039), 16, - anon_sym_SEMI, + ACTIONS(5637), 1, + anon_sym_LPAREN, + ACTIONS(5642), 1, + anon_sym_LBRACK, + ACTIONS(5645), 1, + anon_sym_LBRACE, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(4167), 1, + sym_macro_rule, + ACTIONS(5640), 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, - anon_sym_in, - [63135] = 6, + STATE(2517), 3, + sym_line_comment, + sym_block_comment, + aux_sym_macro_definition_repeat1, + [77492] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3520), 1, - anon_sym_COLON, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - STATE(2031), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5514), 1, + sym_identifier, + ACTIONS(5648), 1, + anon_sym_RBRACE, + STATE(2254), 1, + sym_attribute_item, + STATE(2626), 1, + aux_sym_mod_item_repeat1, + STATE(3715), 1, + sym_field_declaration, + STATE(3981), 1, + sym_visibility_modifier, + STATE(2518), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 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, - [63168] = 10, + [77530] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, + ACTIONS(5354), 1, anon_sym_LPAREN, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4634), 1, + ACTIONS(5358), 1, anon_sym_BANG, - ACTIONS(4638), 1, + ACTIONS(5362), 1, anon_sym_DOT_DOT, - ACTIONS(4743), 1, + ACTIONS(5650), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + ACTIONS(5364), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2032), 2, + STATE(2519), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(5181), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [63209] = 4, + anon_sym_if, + [77562] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2033), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3862), 15, + ACTIONS(5625), 1, + anon_sym_LPAREN, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5652), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(5654), 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, - [63237] = 4, + STATE(803), 1, + sym_field_declaration_list, + STATE(2646), 1, + sym_type_parameters, + STATE(3441), 1, + sym_ordered_field_declaration_list, + STATE(3669), 1, + sym_where_clause, + STATE(2520), 2, + sym_line_comment, + sym_block_comment, + [77600] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2034), 2, + ACTIONS(5658), 1, + anon_sym_PLUS, + STATE(2546), 1, + aux_sym_trait_bounds_repeat1, + STATE(2521), 2, sym_line_comment, sym_block_comment, - ACTIONS(3818), 15, + ACTIONS(5656), 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, - [63265] = 4, + [77626] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2035), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5660), 1, + anon_sym_SEMI, + STATE(752), 1, + sym_declaration_list, + STATE(2522), 2, sym_line_comment, sym_block_comment, - ACTIONS(3822), 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, - [63293] = 4, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [77654] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2036), 2, + ACTIONS(5662), 1, + anon_sym_PLUS, + STATE(2546), 1, + aux_sym_trait_bounds_repeat1, + STATE(2523), 2, sym_line_comment, sym_block_comment, - ACTIONS(3826), 15, + ACTIONS(5656), 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, - [63321] = 4, + [77680] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2037), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3926), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(5625), 1, + anon_sym_LPAREN, + ACTIONS(5627), 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(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, anon_sym_where, - anon_sym_else, - [63349] = 4, + ACTIONS(5664), 1, + anon_sym_SEMI, + STATE(1424), 1, + sym_field_declaration_list, + STATE(2632), 1, + sym_type_parameters, + STATE(3265), 1, + sym_ordered_field_declaration_list, + STATE(3834), 1, + sym_where_clause, + STATE(2524), 2, + sym_line_comment, + sym_block_comment, + [77718] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2038), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5666), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(2365), 1, + sym_parameters, + STATE(2525), 2, sym_line_comment, sym_block_comment, - ACTIONS(3930), 15, + ACTIONS(3973), 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, - [63377] = 4, + [77750] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2039), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5668), 1, + anon_sym_SEMI, + STATE(1430), 1, + sym_declaration_list, + STATE(2526), 2, sym_line_comment, sym_block_comment, - ACTIONS(4138), 15, + ACTIONS(4010), 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, - [63405] = 4, + [77778] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2040), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5213), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_COLON, + ACTIONS(5217), 1, + anon_sym_BANG, + ACTIONS(5219), 1, + anon_sym_DOT_DOT, + ACTIONS(5308), 1, + anon_sym_COLON_COLON, + STATE(2285), 1, + sym_type_arguments, + ACTIONS(5221), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2527), 2, sym_line_comment, sym_block_comment, - ACTIONS(4130), 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, - [63433] = 5, + [77814] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, - STATE(2041), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5670), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(2365), 1, + sym_parameters, + STATE(2528), 2, sym_line_comment, sym_block_comment, - ACTIONS(4155), 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, - [63463] = 4, + ACTIONS(3973), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [77846] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2042), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2292), 1, + sym_type_arguments, + STATE(2808), 1, + sym_parameters, + STATE(2529), 2, sym_line_comment, sym_block_comment, - ACTIONS(3970), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3981), 5, 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, - [63491] = 4, + [77876] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2043), 2, + ACTIONS(5625), 1, + anon_sym_LPAREN, + ACTIONS(5627), 1, + anon_sym_LBRACE, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5672), 1, + anon_sym_SEMI, + STATE(1516), 1, + sym_field_declaration_list, + STATE(2639), 1, + sym_type_parameters, + STATE(3326), 1, + sym_ordered_field_declaration_list, + STATE(3639), 1, + sym_where_clause, + STATE(2530), 2, sym_line_comment, sym_block_comment, - ACTIONS(4146), 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, - [63519] = 4, + [77914] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2044), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5404), 1, + sym_identifier, + ACTIONS(5408), 1, + anon_sym_DOT_DOT, + ACTIONS(5412), 1, + sym_integer_literal, + STATE(2254), 1, + sym_attribute_item, + STATE(2872), 1, + aux_sym_mod_item_repeat1, + STATE(2531), 2, sym_line_comment, sym_block_comment, - ACTIONS(3934), 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, - [63547] = 4, + STATE(3618), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [77948] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2045), 2, + ACTIONS(3929), 1, + anon_sym_DOT_DOT, + STATE(2532), 2, sym_line_comment, sym_block_comment, - ACTIONS(3938), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(3931), 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, - [63575] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [77972] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2046), 2, + ACTIONS(3937), 1, + anon_sym_DOT_DOT, + STATE(2533), 2, sym_line_comment, sym_block_comment, - ACTIONS(3942), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(3939), 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, - [63603] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [77996] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2047), 2, + ACTIONS(3921), 1, + anon_sym_DOT_DOT, + STATE(2534), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(3923), 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, - [63631] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [78020] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2048), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5498), 1, + sym_identifier, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5674), 1, + anon_sym_RBRACE, + STATE(2254), 1, + sym_attribute_item, + STATE(2604), 1, + aux_sym_mod_item_repeat1, + STATE(3870), 1, + sym_enum_variant, + STATE(4166), 1, + sym_visibility_modifier, + STATE(2535), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 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, - [63659] = 12, + [78058] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4654), 1, + ACTIONS(5213), 1, anon_sym_PIPE, - ACTIONS(4656), 1, + ACTIONS(5215), 1, anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, + ACTIONS(5219), 1, anon_sym_DOT_DOT, - ACTIONS(4747), 1, + ACTIONS(5308), 1, anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, + ACTIONS(5221), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2049), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [63703] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2050), 2, + STATE(2536), 2, sym_line_comment, sym_block_comment, - ACTIONS(3886), 15, - anon_sym_SEMI, + ACTIONS(3973), 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, - [63731] = 4, + [78090] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2051), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3754), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5514), 1, + sym_identifier, + ACTIONS(5676), 1, 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, - [63759] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2052), 2, + STATE(2254), 1, + sym_attribute_item, + STATE(2626), 1, + aux_sym_mod_item_repeat1, + STATE(3715), 1, + sym_field_declaration, + STATE(3981), 1, + sym_visibility_modifier, + STATE(2537), 2, sym_line_comment, sym_block_comment, - ACTIONS(3890), 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, - [63787] = 4, + [78128] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2053), 2, + ACTIONS(5625), 1, + anon_sym_LPAREN, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5654), 1, + anon_sym_LBRACE, + ACTIONS(5678), 1, + anon_sym_SEMI, + STATE(689), 1, + sym_field_declaration_list, + STATE(2680), 1, + sym_type_parameters, + STATE(3436), 1, + sym_ordered_field_declaration_list, + STATE(3659), 1, + sym_where_clause, + STATE(2538), 2, sym_line_comment, sym_block_comment, - ACTIONS(3894), 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, - [63815] = 4, + [78166] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2054), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5498), 1, + sym_identifier, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5680), 1, + anon_sym_RBRACE, + STATE(2254), 1, + sym_attribute_item, + STATE(2604), 1, + aux_sym_mod_item_repeat1, + STATE(3870), 1, + sym_enum_variant, + STATE(4166), 1, + sym_visibility_modifier, + STATE(2539), 2, sym_line_comment, sym_block_comment, - ACTIONS(3762), 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, - [63843] = 5, + [78204] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4056), 1, - anon_sym_COLON_COLON, - STATE(2055), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5682), 1, + anon_sym_SEMI, + STATE(864), 1, + sym_declaration_list, + STATE(2540), 2, sym_line_comment, sym_block_comment, - ACTIONS(4155), 14, + ACTIONS(4010), 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, - [63873] = 4, + [78232] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2056), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5684), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(2365), 1, + sym_parameters, + STATE(2541), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 15, + ACTIONS(3973), 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, - [63901] = 4, + [78264] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2057), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5498), 1, + sym_identifier, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5686), 1, + anon_sym_RBRACE, + STATE(2254), 1, + sym_attribute_item, + STATE(2604), 1, + aux_sym_mod_item_repeat1, + STATE(3870), 1, + sym_enum_variant, + STATE(4166), 1, + sym_visibility_modifier, + STATE(2542), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 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, - [63929] = 4, + [78302] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2058), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5514), 1, + sym_identifier, + ACTIONS(5688), 1, + anon_sym_RBRACE, + STATE(2254), 1, + sym_attribute_item, + STATE(2626), 1, + aux_sym_mod_item_repeat1, + STATE(3715), 1, + sym_field_declaration, + STATE(3981), 1, + sym_visibility_modifier, + STATE(2543), 2, sym_line_comment, sym_block_comment, - ACTIONS(4006), 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, - [63957] = 4, + [78340] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2059), 2, + ACTIONS(5692), 1, + anon_sym_PLUS, + STATE(2544), 3, sym_line_comment, sym_block_comment, - ACTIONS(3746), 15, + aux_sym_trait_bounds_repeat1, + ACTIONS(5690), 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, - [63985] = 4, + [78364] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2060), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5514), 1, + sym_identifier, + ACTIONS(5695), 1, + anon_sym_RBRACE, + STATE(2254), 1, + sym_attribute_item, + STATE(2626), 1, + aux_sym_mod_item_repeat1, + STATE(3715), 1, + sym_field_declaration, + STATE(3981), 1, + sym_visibility_modifier, + STATE(2545), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 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, - [64013] = 4, + [78402] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2061), 2, + ACTIONS(5658), 1, + anon_sym_PLUS, + STATE(2544), 1, + aux_sym_trait_bounds_repeat1, + STATE(2546), 2, sym_line_comment, sym_block_comment, - ACTIONS(3846), 15, + ACTIONS(5697), 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, - [64041] = 4, + [78428] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2062), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5498), 1, + sym_identifier, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5699), 1, + anon_sym_RBRACE, + STATE(2254), 1, + sym_attribute_item, + STATE(2604), 1, + aux_sym_mod_item_repeat1, + STATE(3870), 1, + sym_enum_variant, + STATE(4166), 1, + sym_visibility_modifier, + STATE(2547), 2, sym_line_comment, sym_block_comment, - ACTIONS(3850), 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, - [64069] = 4, + [78466] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2063), 2, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5193), 1, + anon_sym_DOT_DOT, + ACTIONS(5701), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2548), 2, sym_line_comment, sym_block_comment, - ACTIONS(3854), 15, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5181), 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, - [64097] = 4, + [78498] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2064), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5703), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(2365), 1, + sym_parameters, + STATE(2549), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 15, + ACTIONS(3973), 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, - [64125] = 4, + [78530] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2065), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5705), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(2365), 1, + sym_parameters, + STATE(2550), 2, sym_line_comment, sym_block_comment, - ACTIONS(3858), 15, + ACTIONS(3973), 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, - [64153] = 4, + [78562] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2066), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5514), 1, + sym_identifier, + ACTIONS(5707), 1, + anon_sym_RBRACE, + STATE(2254), 1, + sym_attribute_item, + STATE(2626), 1, + aux_sym_mod_item_repeat1, + STATE(3715), 1, + sym_field_declaration, + STATE(3981), 1, + sym_visibility_modifier, + STATE(2551), 2, sym_line_comment, sym_block_comment, - ACTIONS(3954), 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, - [64181] = 4, + [78600] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2067), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5709), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(2365), 1, + sym_parameters, + STATE(2552), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 15, + ACTIONS(3973), 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, - [64209] = 4, + [78632] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2068), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3870), 15, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5219), 1, + anon_sym_DOT_DOT, + ACTIONS(5296), 1, + anon_sym_COLON_COLON, + ACTIONS(5616), 1, anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(3973), 2, + anon_sym_SEMI, anon_sym_PLUS, + ACTIONS(5213), 2, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [64237] = 4, + ACTIONS(5221), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2553), 2, + sym_line_comment, + sym_block_comment, + [78664] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2069), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5711), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(2365), 1, + sym_parameters, + STATE(2554), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 15, + ACTIONS(3973), 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, - [64265] = 4, + [78696] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2070), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5713), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(2365), 1, + sym_parameters, + STATE(2555), 2, sym_line_comment, sym_block_comment, - ACTIONS(3950), 15, + ACTIONS(3973), 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, - [64293] = 5, + [78728] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4749), 1, - anon_sym_DASH_GT, - STATE(2071), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5715), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(2365), 1, + sym_parameters, + STATE(2556), 2, sym_line_comment, sym_block_comment, - ACTIONS(3648), 13, + ACTIONS(3973), 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_where, - anon_sym_else, - [64322] = 5, + [78760] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(907), 1, - anon_sym_DOT_DOT, - STATE(2072), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2292), 1, + sym_type_arguments, + STATE(2808), 1, + sym_parameters, + STATE(2557), 2, sym_line_comment, sym_block_comment, - ACTIONS(909), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3977), 5, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + anon_sym_PLUS, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64351] = 6, + anon_sym_as, + [78790] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4753), 1, - anon_sym_pat, - STATE(146), 1, - sym_fragment_specifier, - STATE(2073), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5514), 1, + sym_identifier, + ACTIONS(5717), 1, + anon_sym_RBRACE, + STATE(2254), 1, + sym_attribute_item, + STATE(2626), 1, + aux_sym_mod_item_repeat1, + STATE(3715), 1, + sym_field_declaration, + STATE(3981), 1, + sym_visibility_modifier, + STATE(2558), 2, sym_line_comment, sym_block_comment, - ACTIONS(4751), 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, - [64382] = 5, + [78828] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4757), 1, - anon_sym_DOT_DOT, - STATE(2074), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4755), 13, + ACTIONS(5625), 1, + anon_sym_LPAREN, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5654), 1, + anon_sym_LBRACE, + ACTIONS(5719), 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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64411] = 5, + STATE(814), 1, + sym_field_declaration_list, + STATE(2631), 1, + sym_type_parameters, + STATE(3454), 1, + sym_ordered_field_declaration_list, + STATE(3691), 1, + sym_where_clause, + STATE(2559), 2, + sym_line_comment, + sym_block_comment, + [78866] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(915), 1, - anon_sym_DOT_DOT, - STATE(2075), 2, + ACTIONS(5237), 1, + anon_sym_trait, + ACTIONS(5721), 1, + anon_sym_impl, + STATE(2560), 2, sym_line_comment, sym_block_comment, - ACTIONS(917), 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, - [64440] = 5, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [78891] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4759), 1, - anon_sym_DASH_GT, - STATE(2076), 2, + STATE(2561), 2, sym_line_comment, sym_block_comment, - ACTIONS(3672), 13, + ACTIONS(5690), 8, 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_where, - anon_sym_else, - [64469] = 5, + [78912] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4761), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5723), 1, + anon_sym_SEMI, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(5727), 1, anon_sym_DASH_GT, - STATE(2077), 2, + STATE(835), 1, + sym_block, + STATE(2890), 1, + sym_where_clause, + STATE(4249), 1, + sym_label, + STATE(2562), 2, sym_line_comment, sym_block_comment, - ACTIONS(3660), 13, - 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_where, - anon_sym_else, - [64498] = 8, + [78947] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5729), 1, + anon_sym_SEMI, + ACTIONS(5731), 1, anon_sym_COLON, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4664), 1, - anon_sym_COLON_COLON, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2078), 2, + ACTIONS(5733), 1, + anon_sym_EQ, + ACTIONS(5735), 1, + anon_sym_LT, + STATE(2819), 1, + sym_type_parameters, + STATE(3510), 1, + sym_trait_bounds, + STATE(3788), 1, + sym_where_clause, + STATE(2563), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 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, - [64533] = 5, + [78982] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4763), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(5737), 1, + anon_sym_SEMI, + ACTIONS(5739), 1, anon_sym_DASH_GT, - STATE(2079), 2, + STATE(880), 1, + sym_block, + STATE(2828), 1, + sym_where_clause, + STATE(4249), 1, + sym_label, + STATE(2564), 2, sym_line_comment, sym_block_comment, - ACTIONS(3642), 13, - 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_where, - anon_sym_else, - [64562] = 5, + [79017] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4765), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_SEMI, + ACTIONS(5743), 1, anon_sym_DASH_GT, - STATE(2080), 2, + STATE(692), 1, + sym_block, + STATE(2870), 1, + sym_where_clause, + STATE(4249), 1, + sym_label, + STATE(2565), 2, sym_line_comment, sym_block_comment, - ACTIONS(3636), 13, - 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_where, - anon_sym_else, - [64591] = 5, + [79052] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4767), 1, - anon_sym_DASH_GT, - STATE(2081), 2, + STATE(2566), 2, sym_line_comment, sym_block_comment, - ACTIONS(3666), 13, + ACTIONS(5745), 8, 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_where, - anon_sym_else, - [64620] = 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [79073] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, - anon_sym_DASH_GT, - STATE(2082), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3686), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3594), 1, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3890), 1, anon_sym_SQUOTE, + ACTIONS(5631), 1, anon_sym_where, - anon_sym_else, - [64649] = 7, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(5747), 1, + anon_sym_SEMI, + STATE(841), 1, + sym_block, + STATE(2871), 1, + sym_where_clause, + STATE(4249), 1, + sym_label, + STATE(2567), 2, + sym_line_comment, + sym_block_comment, + [79108] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2083), 2, + ACTIONS(5735), 1, + anon_sym_LT, + STATE(1607), 1, + sym_declaration_list, + STATE(2747), 1, + sym_type_parameters, + STATE(3212), 1, + sym_trait_bounds, + STATE(3869), 1, + sym_where_clause, + STATE(2568), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4771), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3500), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [64681] = 14, + [79143] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4774), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, anon_sym_COLON, - ACTIONS(4776), 1, + ACTIONS(5735), 1, + anon_sym_LT, + ACTIONS(5749), 1, + anon_sym_SEMI, + ACTIONS(5751), 1, anon_sym_EQ, - STATE(2006), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(3099), 1, + STATE(2749), 1, + sym_type_parameters, + STATE(3552), 1, sym_trait_bounds, - ACTIONS(3436), 2, - anon_sym_PLUS, - anon_sym_as, - ACTIONS(4778), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2084), 2, + STATE(3872), 1, + sym_where_clause, + STATE(2569), 2, sym_line_comment, sym_block_comment, - [64727] = 7, + [79178] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4780), 1, - anon_sym_LPAREN, - ACTIONS(3506), 2, - anon_sym_COLON, + ACTIONS(5753), 1, + sym_identifier, + ACTIONS(5755), 1, + anon_sym_RBRACE, + ACTIONS(5757), 1, anon_sym_DOT_DOT, - STATE(2085), 2, + ACTIONS(5759), 1, + anon_sym_COMMA, + ACTIONS(5761), 1, + anon_sym_ref, + ACTIONS(5763), 1, + sym_mutable_specifier, + STATE(2570), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3508), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [64759] = 7, + STATE(3583), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [79211] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 2, - anon_sym_COLON, + ACTIONS(5753), 1, + sym_identifier, + ACTIONS(5757), 1, anon_sym_DOT_DOT, - STATE(2086), 2, + ACTIONS(5761), 1, + anon_sym_ref, + ACTIONS(5763), 1, + sym_mutable_specifier, + ACTIONS(5765), 1, + anon_sym_RBRACE, + ACTIONS(5767), 1, + anon_sym_COMMA, + STATE(2571), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4783), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3489), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [64791] = 6, + STATE(3550), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [79244] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2087), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5769), 1, + anon_sym_SEMI, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(5773), 1, + anon_sym_DASH_GT, + STATE(1675), 1, + sym_block, + STATE(2858), 1, + sym_where_clause, + STATE(4252), 1, + sym_label, + STATE(2572), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 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, - [64821] = 7, + [79279] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2088), 2, + ACTIONS(5735), 1, + anon_sym_LT, + STATE(1413), 1, + sym_declaration_list, + STATE(2754), 1, + sym_type_parameters, + STATE(2977), 1, + sym_trait_bounds, + STATE(3791), 1, + sym_where_clause, + STATE(2573), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4786), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3516), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [64853] = 7, + [79314] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2089), 2, + ACTIONS(5735), 1, + anon_sym_LT, + ACTIONS(5775), 1, + anon_sym_SEMI, + ACTIONS(5777), 1, + anon_sym_EQ, + STATE(2694), 1, + sym_type_parameters, + STATE(3269), 1, + sym_trait_bounds, + STATE(3606), 1, + sym_where_clause, + STATE(2574), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4780), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3508), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [64885] = 7, + [79349] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_DOT_DOT, - ACTIONS(4786), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2090), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(5779), 1, + anon_sym_SEMI, + ACTIONS(5781), 1, + anon_sym_DASH_GT, + STATE(519), 1, + sym_block, + STATE(2898), 1, + sym_where_clause, + STATE(4249), 1, + sym_label, + STATE(2575), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3516), 6, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [64917] = 7, + [79384] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_DOT_DOT, - ACTIONS(4771), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2091), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(5783), 1, + anon_sym_SEMI, + ACTIONS(5785), 1, + anon_sym_DASH_GT, + STATE(1455), 1, + sym_block, + STATE(2892), 1, + sym_where_clause, + STATE(4252), 1, + sym_label, + STATE(2576), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3500), 6, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [64949] = 7, + [79419] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, - anon_sym_DOT_DOT, - ACTIONS(4780), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2092), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(5787), 1, + anon_sym_SEMI, + ACTIONS(5789), 1, + anon_sym_DASH_GT, + STATE(1491), 1, + sym_block, + STATE(2899), 1, + sym_where_clause, + STATE(4252), 1, + sym_label, + STATE(2577), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3508), 6, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [64981] = 7, + [79454] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4771), 1, - anon_sym_LPAREN, - ACTIONS(3498), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2093), 2, + ACTIONS(5735), 1, + anon_sym_LT, + STATE(1500), 1, + sym_declaration_list, + STATE(2745), 1, + sym_type_parameters, + STATE(3126), 1, + sym_trait_bounds, + STATE(3627), 1, + sym_where_clause, + STATE(2578), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3500), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [65013] = 7, + [79489] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(3487), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2094), 2, + ACTIONS(5735), 1, + anon_sym_LT, + STATE(657), 1, + sym_declaration_list, + STATE(2758), 1, + sym_type_parameters, + STATE(3196), 1, + sym_trait_bounds, + STATE(3851), 1, + sym_where_clause, + STATE(2579), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3489), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [65045] = 7, + [79524] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(3514), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2095), 2, + STATE(2580), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 5, - anon_sym_RPAREN, + ACTIONS(5690), 8, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3516), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [65077] = 5, + anon_sym_SQUOTE, + anon_sym_where, + [79545] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_DOT_DOT, - STATE(2096), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(5791), 1, + anon_sym_SEMI, + STATE(1538), 1, + sym_block, + STATE(2926), 1, + sym_where_clause, + STATE(4252), 1, + sym_label, + STATE(2581), 2, sym_line_comment, sym_block_comment, - ACTIONS(4789), 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, - [65105] = 13, + [79580] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4795), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5771), 1, anon_sym_LBRACE, - ACTIONS(4797), 1, - anon_sym_BANG, - ACTIONS(4799), 1, - anon_sym_AT, - ACTIONS(4801), 1, - anon_sym_DOT_DOT, - ACTIONS(4805), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - ACTIONS(4803), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2097), 2, + ACTIONS(5793), 1, + anon_sym_SEMI, + ACTIONS(5795), 1, + anon_sym_DASH_GT, + STATE(1595), 1, + sym_block, + STATE(2885), 1, + sym_where_clause, + STATE(4252), 1, + sym_label, + STATE(2582), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [65149] = 7, + [79615] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, - anon_sym_DOT_DOT, - ACTIONS(4783), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2098), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(5797), 1, + anon_sym_SEMI, + ACTIONS(5799), 1, + anon_sym_DASH_GT, + STATE(1611), 1, + sym_block, + STATE(2823), 1, + sym_where_clause, + STATE(4252), 1, + sym_label, + STATE(2583), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3489), 6, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [65181] = 6, + [79650] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4809), 1, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, anon_sym_COLON, - ACTIONS(3910), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2099), 2, + ACTIONS(5735), 1, + anon_sym_LT, + STATE(1630), 1, + sym_declaration_list, + STATE(2803), 1, + sym_type_parameters, + STATE(3054), 1, + sym_trait_bounds, + STATE(3764), 1, + sym_where_clause, + STATE(2584), 2, + sym_line_comment, + sym_block_comment, + [79685] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2585), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 9, + ACTIONS(5690), 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, - [65210] = 13, + anon_sym_SQUOTE, + anon_sym_where, + [79706] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4813), 1, - anon_sym_GT, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4817), 1, - sym_metavariable, - STATE(1115), 1, - sym_attribute_item, - STATE(2138), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, - sym_lifetime, - STATE(2100), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, + anon_sym_COLON, + ACTIONS(5735), 1, + anon_sym_LT, + STATE(675), 1, + sym_declaration_list, + STATE(2792), 1, + sym_type_parameters, + STATE(3216), 1, + sym_trait_bounds, + STATE(3609), 1, + sym_where_clause, + STATE(2586), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65253] = 10, - ACTIONS(19), 1, - anon_sym_LBRACE, + [79741] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(4680), 1, - anon_sym_trait, - ACTIONS(4819), 1, - anon_sym_impl, - STATE(397), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(5801), 1, + anon_sym_SEMI, + STATE(1642), 1, sym_block, - STATE(3532), 1, + STATE(2827), 1, + sym_where_clause, + STATE(4252), 1, sym_label, - STATE(2101), 2, + STATE(2587), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65290] = 6, + [79776] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4809), 1, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, anon_sym_COLON, - ACTIONS(3776), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2102), 2, + ACTIONS(5735), 1, + anon_sym_LT, + STATE(820), 1, + sym_declaration_list, + STATE(2693), 1, + sym_type_parameters, + STATE(2952), 1, + sym_trait_bounds, + STATE(3679), 1, + sym_where_clause, + STATE(2588), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 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, - [65319] = 13, + [79811] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4817), 1, - sym_metavariable, - ACTIONS(4821), 1, - anon_sym_GT, - STATE(1115), 1, - sym_attribute_item, - STATE(2138), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, - sym_lifetime, - STATE(2103), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, + anon_sym_COLON, + ACTIONS(5735), 1, + anon_sym_LT, + ACTIONS(5803), 1, + anon_sym_SEMI, + ACTIONS(5805), 1, + anon_sym_EQ, + STATE(2711), 1, + sym_type_parameters, + STATE(3459), 1, + sym_trait_bounds, + STATE(3688), 1, + sym_where_clause, + STATE(2589), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65362] = 13, + [79846] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4817), 1, - sym_metavariable, - ACTIONS(4823), 1, - anon_sym_GT, - STATE(1115), 1, - sym_attribute_item, - STATE(2138), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, - sym_lifetime, - STATE(2104), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(5807), 1, + anon_sym_SEMI, + STATE(1260), 1, + sym_block, + STATE(2831), 1, + sym_where_clause, + STATE(4252), 1, + sym_label, + STATE(2590), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65405] = 13, + [79881] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4817), 1, - sym_metavariable, - ACTIONS(4825), 1, - anon_sym_GT, - STATE(1115), 1, - sym_attribute_item, - STATE(2138), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, - sym_lifetime, - STATE(2105), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_DASH_GT, + STATE(1270), 1, + sym_block, + STATE(2832), 1, + sym_where_clause, + STATE(4252), 1, + sym_label, + STATE(2591), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65448] = 13, + [79916] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4817), 1, - sym_metavariable, - ACTIONS(4827), 1, - anon_sym_GT, - STATE(1115), 1, - sym_attribute_item, - STATE(2138), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, - sym_lifetime, - STATE(2106), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(5813), 1, + anon_sym_SEMI, + ACTIONS(5815), 1, + anon_sym_DASH_GT, + STATE(1290), 1, + sym_block, + STATE(2836), 1, + sym_where_clause, + STATE(4252), 1, + sym_label, + STATE(2592), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65491] = 13, + [79951] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4817), 1, - sym_metavariable, - ACTIONS(4829), 1, - anon_sym_GT, - STATE(1115), 1, - sym_attribute_item, - STATE(2138), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, - sym_lifetime, - STATE(2107), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(5817), 1, + anon_sym_SEMI, + STATE(1320), 1, + sym_block, + STATE(2837), 1, + sym_where_clause, + STATE(4252), 1, + sym_label, + STATE(2593), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65534] = 6, + [79986] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, - ACTIONS(4833), 1, - anon_sym_COLON, - STATE(2108), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(5819), 1, + anon_sym_SEMI, + STATE(1332), 1, + sym_block, + STATE(2838), 1, + sym_where_clause, + STATE(4252), 1, + sym_label, + STATE(2594), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 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, - [65562] = 6, + [80021] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_COLON, - ACTIONS(4839), 1, - anon_sym_COLON_COLON, - STATE(2109), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(5821), 1, + anon_sym_SEMI, + ACTIONS(5823), 1, + anon_sym_DASH_GT, + STATE(1350), 1, + sym_block, + STATE(2839), 1, + sym_where_clause, + STATE(4252), 1, + sym_label, + STATE(2595), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 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, - [65590] = 4, + [80056] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2110), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(5825), 1, + anon_sym_SEMI, + STATE(592), 1, + sym_block, + STATE(2938), 1, + sym_where_clause, + STATE(4249), 1, + sym_label, + STATE(2596), 2, sym_line_comment, sym_block_comment, - ACTIONS(1431), 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, - [65614] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + [80091] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(4841), 1, - sym_identifier, - STATE(411), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(5827), 1, + anon_sym_SEMI, + STATE(1363), 1, sym_block, - STATE(3532), 1, + STATE(2841), 1, + sym_where_clause, + STATE(4252), 1, sym_label, - STATE(2111), 2, + STATE(2597), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65648] = 6, + [80126] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4847), 1, - anon_sym_COLON, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - STATE(2112), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(5829), 1, + anon_sym_SEMI, + STATE(1390), 1, + sym_block, + STATE(2843), 1, + sym_where_clause, + STATE(4252), 1, + sym_label, + STATE(2598), 2, sym_line_comment, sym_block_comment, - ACTIONS(4845), 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, - [65676] = 12, + [80161] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4851), 1, - sym_metavariable, - STATE(1115), 1, - sym_attribute_item, - STATE(2117), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2560), 1, - sym_lifetime, - STATE(2113), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(5831), 1, + anon_sym_SEMI, + STATE(1401), 1, + sym_block, + STATE(2845), 1, + sym_where_clause, + STATE(4252), 1, + sym_label, + STATE(2599), 2, sym_line_comment, sym_block_comment, - STATE(3034), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65716] = 12, + [80196] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3484), 1, anon_sym_POUND, - ACTIONS(4853), 1, + ACTIONS(5498), 1, sym_identifier, - ACTIONS(4855), 1, - anon_sym_RBRACE, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4859), 1, - anon_sym_COMMA, - ACTIONS(4861), 1, - sym_integer_literal, - STATE(1115), 1, + ACTIONS(5504), 1, + sym_crate, + STATE(2254), 1, sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2114), 2, + STATE(2604), 1, + aux_sym_mod_item_repeat1, + STATE(3870), 1, + sym_enum_variant, + STATE(4166), 1, + sym_visibility_modifier, + STATE(2600), 2, sym_line_comment, sym_block_comment, - STATE(3112), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [65756] = 11, + [80231] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(2115), 2, + ACTIONS(5261), 1, + anon_sym_trait, + ACTIONS(5833), 1, + anon_sym_impl, + STATE(2601), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [65794] = 6, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [80256] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4839), 1, - anon_sym_COLON_COLON, - ACTIONS(4865), 1, - anon_sym_COLON, - STATE(2116), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4863), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(5753), 1, + sym_identifier, + ACTIONS(5757), 1, + anon_sym_DOT_DOT, + ACTIONS(5761), 1, + anon_sym_ref, + ACTIONS(5763), 1, + sym_mutable_specifier, + ACTIONS(5835), 1, anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(5837), 1, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65822] = 12, + STATE(2602), 2, + sym_line_comment, + sym_block_comment, + STATE(3463), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [80289] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3484), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5514), 1, sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4867), 1, - sym_metavariable, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, + STATE(2253), 1, + aux_sym_mod_item_repeat1, + STATE(2254), 1, sym_attribute_item, - STATE(2816), 1, - sym_lifetime, - STATE(2117), 2, - sym_line_comment, - sym_block_comment, - STATE(3031), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65862] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4869), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2118), 2, + STATE(3357), 1, + sym_field_declaration, + STATE(3981), 1, + sym_visibility_modifier, + STATE(2603), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65900] = 12, + [80324] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4871), 1, - anon_sym_EQ, - STATE(2403), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(2119), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5498), 1, + sym_identifier, + ACTIONS(5504), 1, + sym_crate, + STATE(2253), 1, + aux_sym_mod_item_repeat1, + STATE(2254), 1, + sym_attribute_item, + STATE(3782), 1, + sym_enum_variant, + STATE(4166), 1, + sym_visibility_modifier, + STATE(2604), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 3, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [65940] = 11, + [80359] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4873), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2120), 2, + ACTIONS(5839), 1, + anon_sym_fn, + ACTIONS(5841), 1, + anon_sym_extern, + STATE(2617), 1, + aux_sym_function_modifiers_repeat1, + STATE(2804), 1, + sym_extern_modifier, + STATE(2605), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5116), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [80388] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3594), 1, anon_sym_PLUS, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, anon_sym_where, - [65978] = 12, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(5843), 1, + anon_sym_SEMI, + STATE(699), 1, + sym_block, + STATE(2851), 1, + sym_where_clause, + STATE(4249), 1, + sym_label, + STATE(2606), 2, + sym_line_comment, + sym_block_comment, + [80423] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3484), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5514), 1, sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4875), 1, - sym_metavariable, - STATE(1115), 1, + STATE(2254), 1, sym_attribute_item, - STATE(2122), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, - sym_lifetime, - STATE(2121), 2, + STATE(2626), 1, + aux_sym_mod_item_repeat1, + STATE(3715), 1, + sym_field_declaration, + STATE(3981), 1, + sym_visibility_modifier, + STATE(2607), 2, sym_line_comment, sym_block_comment, - STATE(3078), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66018] = 12, + [80458] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4877), 1, - sym_metavariable, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(2816), 1, - sym_lifetime, - STATE(2122), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(5845), 1, + anon_sym_SEMI, + STATE(620), 1, + sym_block, + STATE(2915), 1, + sym_where_clause, + STATE(4249), 1, + sym_label, + STATE(2608), 2, sym_line_comment, sym_block_comment, - STATE(2872), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66058] = 4, + [80493] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2123), 2, + ACTIONS(1161), 1, + aux_sym_string_literal_token1, + STATE(2566), 1, + sym_string_literal, + STATE(2609), 2, sym_line_comment, sym_block_comment, - ACTIONS(1427), 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, - [66082] = 6, + ACTIONS(5396), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [80518] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4833), 1, - anon_sym_COLON, - ACTIONS(4879), 1, + ACTIONS(5418), 1, anon_sym_COLON_COLON, - STATE(2124), 2, + ACTIONS(5490), 1, + anon_sym_BANG, + STATE(2610), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 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, - [66110] = 11, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [80543] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3428), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(2125), 2, + ACTIONS(5156), 1, + anon_sym_impl, + ACTIONS(5166), 1, + anon_sym_trait, + STATE(2611), 2, sym_line_comment, sym_block_comment, - ACTIONS(3424), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [66148] = 6, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [80568] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, + ACTIONS(5181), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, + anon_sym_LPAREN, + ACTIONS(5187), 1, anon_sym_COLON, - ACTIONS(4879), 1, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(5193), 1, + anon_sym_DOT_DOT, + ACTIONS(5847), 1, anon_sym_COLON_COLON, - STATE(2126), 2, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2612), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 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, - [66176] = 6, + [80601] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, - anon_sym_DOT_DOT, - ACTIONS(3483), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5725), 1, anon_sym_LBRACE, - anon_sym_LT2, - STATE(2127), 2, + ACTIONS(5849), 1, + anon_sym_SEMI, + STATE(547), 1, + sym_block, + STATE(2917), 1, + sym_where_clause, + STATE(4249), 1, + sym_label, + STATE(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(3489), 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, - [66204] = 11, + [80636] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4881), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2128), 2, + ACTIONS(5753), 1, + sym_identifier, + ACTIONS(5757), 1, + anon_sym_DOT_DOT, + ACTIONS(5761), 1, + anon_sym_ref, + ACTIONS(5763), 1, + sym_mutable_specifier, + ACTIONS(5851), 1, + anon_sym_RBRACE, + ACTIONS(5853), 1, + anon_sym_COMMA, + STATE(2614), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, + STATE(3498), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [80669] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5725), 1, anon_sym_LBRACE, + ACTIONS(5855), 1, + anon_sym_SEMI, + ACTIONS(5857), 1, + anon_sym_DASH_GT, + STATE(786), 1, + sym_block, + STATE(2874), 1, + sym_where_clause, + STATE(4249), 1, + sym_label, + STATE(2615), 2, + sym_line_comment, + sym_block_comment, + [80704] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3594), 1, anon_sym_PLUS, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, anon_sym_where, - [66242] = 12, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(5859), 1, + anon_sym_SEMI, + STATE(560), 1, + sym_block, + STATE(2920), 1, + sym_where_clause, + STATE(4249), 1, + sym_label, + STATE(2616), 2, + sym_line_comment, + sym_block_comment, + [80739] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4851), 1, - sym_metavariable, - STATE(1115), 1, - sym_attribute_item, - STATE(2117), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, - sym_lifetime, - STATE(2129), 2, + ACTIONS(5864), 1, + anon_sym_fn, + ACTIONS(5866), 1, + anon_sym_extern, + STATE(2804), 1, + sym_extern_modifier, + STATE(2617), 3, sym_line_comment, sym_block_comment, - STATE(3034), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66282] = 12, + aux_sym_function_modifiers_repeat1, + ACTIONS(5861), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [80766] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3484), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(5498), 1, sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4817), 1, - sym_metavariable, - STATE(1115), 1, + ACTIONS(5504), 1, + sym_crate, + STATE(2253), 1, + aux_sym_mod_item_repeat1, + STATE(2254), 1, sym_attribute_item, - STATE(2138), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, - sym_lifetime, - STATE(2130), 2, + STATE(3296), 1, + sym_enum_variant, + STATE(4166), 1, + sym_visibility_modifier, + STATE(2618), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66322] = 6, + [80801] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4885), 1, - anon_sym_COLON, - STATE(2131), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5514), 1, + sym_identifier, + STATE(2253), 1, + aux_sym_mod_item_repeat1, + STATE(2254), 1, + sym_attribute_item, + STATE(3313), 1, + sym_field_declaration, + STATE(3981), 1, + sym_visibility_modifier, + STATE(2619), 2, sym_line_comment, sym_block_comment, - ACTIONS(4883), 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, - [66350] = 6, + [80836] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, - anon_sym_DOT_DOT, - ACTIONS(3502), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5725), 1, anon_sym_LBRACE, - anon_sym_LT2, - STATE(2132), 2, + ACTIONS(5869), 1, + anon_sym_SEMI, + ACTIONS(5871), 1, + anon_sym_DASH_GT, + STATE(578), 1, + sym_block, + STATE(2882), 1, + sym_where_clause, + STATE(4249), 1, + sym_label, + STATE(2620), 2, sym_line_comment, sym_block_comment, - ACTIONS(3508), 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, - [66378] = 4, + [80871] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2133), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(5873), 1, + anon_sym_SEMI, + ACTIONS(5875), 1, + anon_sym_DASH_GT, + STATE(648), 1, + sym_block, + STATE(2937), 1, + sym_where_clause, + STATE(4249), 1, + sym_label, + STATE(2621), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 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, - [66402] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + [80906] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(4887), 1, - anon_sym_move, - STATE(410), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(5877), 1, + anon_sym_SEMI, + ACTIONS(5879), 1, + anon_sym_DASH_GT, + STATE(736), 1, sym_block, - STATE(3532), 1, + STATE(2835), 1, + sym_where_clause, + STATE(4249), 1, sym_label, - STATE(2134), 2, + STATE(2622), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66436] = 11, + [80941] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4692), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2135), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(5881), 1, + anon_sym_SEMI, + STATE(633), 1, + sym_block, + STATE(2824), 1, + sym_where_clause, + STATE(4249), 1, + sym_label, + STATE(2623), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [66474] = 6, + [80976] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4833), 1, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, anon_sym_COLON, - ACTIONS(4839), 1, - anon_sym_COLON_COLON, - STATE(2136), 2, + ACTIONS(5735), 1, + anon_sym_LT, + STATE(797), 1, + sym_declaration_list, + STATE(2738), 1, + sym_type_parameters, + STATE(3113), 1, + sym_trait_bounds, + STATE(3648), 1, + sym_where_clause, + STATE(2624), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 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, - [66502] = 6, + [81011] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_DOT_DOT, - ACTIONS(3510), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2137), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(5498), 1, + sym_identifier, + ACTIONS(5504), 1, + sym_crate, + STATE(2253), 1, + aux_sym_mod_item_repeat1, + STATE(2254), 1, + sym_attribute_item, + STATE(3247), 1, + sym_enum_variant, + STATE(4166), 1, + sym_visibility_modifier, + STATE(2625), 2, sym_line_comment, sym_block_comment, - ACTIONS(3516), 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, - [66530] = 12, + [81046] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3484), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(5504), 1, + sym_crate, + ACTIONS(5514), 1, sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4889), 1, - sym_metavariable, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, + STATE(2253), 1, + aux_sym_mod_item_repeat1, + STATE(2254), 1, sym_attribute_item, - STATE(2816), 1, - sym_lifetime, - STATE(2138), 2, + STATE(3696), 1, + sym_field_declaration, + STATE(3981), 1, + sym_visibility_modifier, + STATE(2626), 2, sym_line_comment, sym_block_comment, - STATE(3269), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66570] = 6, + [81081] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_COLON, - ACTIONS(4879), 1, - anon_sym_COLON_COLON, - STATE(2139), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(5883), 1, + anon_sym_SEMI, + STATE(818), 1, + sym_block, + STATE(2943), 1, + sym_where_clause, + STATE(4249), 1, + sym_label, + STATE(2627), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 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, - [66598] = 4, + [81116] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2140), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5887), 1, + anon_sym_RPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + STATE(2648), 1, + aux_sym_macro_definition_repeat1, + STATE(3799), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2628), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 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, - [66622] = 7, + [81148] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(4893), 1, - sym_crate, - STATE(2270), 1, - sym_string_literal, - STATE(2141), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5893), 1, + anon_sym_RBRACE, + STATE(2517), 1, + aux_sym_macro_definition_repeat1, + STATE(3773), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2629), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 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, - [66652] = 7, - ACTIONS(103), 1, + [81180] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(4895), 1, - sym_crate, - STATE(2270), 1, - sym_string_literal, - STATE(2142), 2, + ACTIONS(5895), 1, + aux_sym_line_comment_token1, + ACTIONS(5897), 1, + aux_sym_line_comment_token3, + ACTIONS(5899), 1, + anon_sym_BANG2, + ACTIONS(5901), 1, + anon_sym_SLASH2, + STATE(4088), 1, + sym__inner_line_doc_comment_marker, + STATE(4125), 1, + sym__line_doc_comment_marker, + STATE(4220), 1, + sym__outer_line_doc_comment_marker, + STATE(2630), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 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, - [66682] = 11, + [81212] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(5625), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4897), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2143), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5654), 1, + anon_sym_LBRACE, + ACTIONS(5903), 1, + anon_sym_SEMI, + STATE(649), 1, + sym_field_declaration_list, + STATE(3522), 1, + sym_ordered_field_declaration_list, + STATE(3825), 1, + sym_where_clause, + STATE(2631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66720] = 7, + [81244] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(4899), 1, - sym_crate, - STATE(2270), 1, - sym_string_literal, - STATE(2144), 2, + ACTIONS(5625), 1, + anon_sym_LPAREN, + ACTIONS(5627), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5905), 1, + anon_sym_SEMI, + STATE(1497), 1, + sym_field_declaration_list, + STATE(3319), 1, + sym_ordered_field_declaration_list, + STATE(3623), 1, + sym_where_clause, + STATE(2632), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 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, - [66750] = 6, + [81276] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, - ACTIONS(4865), 1, - anon_sym_COLON, - STATE(2145), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5907), 1, + anon_sym_RBRACE, + STATE(2659), 1, + aux_sym_macro_definition_repeat1, + STATE(3836), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2633), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 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, - [66778] = 6, + [81308] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_DOT_DOT, - ACTIONS(3494), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, anon_sym_LBRACE, - anon_sym_LT2, - STATE(2146), 2, + ACTIONS(5909), 1, + anon_sym_RPAREN, + STATE(2688), 1, + aux_sym_macro_definition_repeat1, + STATE(3887), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2634), 2, sym_line_comment, sym_block_comment, - ACTIONS(3500), 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, - [66806] = 7, + [81340] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(4901), 1, - sym_crate, - STATE(2270), 1, - sym_string_literal, - STATE(2147), 2, + ACTIONS(5911), 1, + anon_sym_trait, + STATE(2635), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4010), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66836] = 11, + [81362] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4903), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2148), 2, + ACTIONS(5753), 1, + sym_identifier, + ACTIONS(5757), 1, + anon_sym_DOT_DOT, + ACTIONS(5761), 1, + anon_sym_ref, + ACTIONS(5763), 1, + sym_mutable_specifier, + ACTIONS(5913), 1, + anon_sym_RBRACE, + STATE(2636), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66874] = 11, + STATE(3778), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [81392] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4905), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2149), 2, + ACTIONS(5753), 1, + sym_identifier, + ACTIONS(5757), 1, + anon_sym_DOT_DOT, + ACTIONS(5761), 1, + anon_sym_ref, + ACTIONS(5763), 1, + sym_mutable_specifier, + ACTIONS(5915), 1, + anon_sym_RBRACE, + STATE(2637), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66912] = 11, + STATE(3778), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [81422] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(5885), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4907), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2150), 2, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5909), 1, + anon_sym_RBRACK, + STATE(2656), 1, + aux_sym_macro_definition_repeat1, + STATE(3907), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2638), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, + [81454] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5625), 1, + anon_sym_LPAREN, + ACTIONS(5627), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(5631), 1, anon_sym_where, - [66950] = 6, + ACTIONS(5917), 1, + anon_sym_SEMI, + STATE(1627), 1, + sym_field_declaration_list, + STATE(3354), 1, + sym_ordered_field_declaration_list, + STATE(3756), 1, + sym_where_clause, + STATE(2639), 2, + sym_line_comment, + sym_block_comment, + [81486] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, - ACTIONS(4837), 1, - anon_sym_COLON, - STATE(2151), 2, + ACTIONS(5753), 1, + sym_identifier, + ACTIONS(5757), 1, + anon_sym_DOT_DOT, + ACTIONS(5761), 1, + anon_sym_ref, + ACTIONS(5763), 1, + sym_mutable_specifier, + ACTIONS(5919), 1, + anon_sym_RBRACE, + STATE(2640), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 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, - [66978] = 4, + STATE(3778), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [81516] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2152), 2, + ACTIONS(5753), 1, + sym_identifier, + ACTIONS(5757), 1, + anon_sym_DOT_DOT, + ACTIONS(5761), 1, + anon_sym_ref, + ACTIONS(5763), 1, + sym_mutable_specifier, + ACTIONS(5921), 1, + anon_sym_RBRACE, + STATE(2641), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 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, - [67002] = 11, + STATE(3778), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [81546] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(5885), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4909), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2153), 2, + ACTIONS(5887), 1, + anon_sym_RBRACK, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + STATE(2691), 1, + aux_sym_macro_definition_repeat1, + STATE(3810), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2642), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67040] = 11, + [81578] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3444), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4744), 1, + anon_sym_LBRACE, + ACTIONS(5199), 1, anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, + ACTIONS(5925), 1, + anon_sym_STAR, + STATE(3310), 1, + sym_use_list, + STATE(4049), 1, sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(2154), 2, + ACTIONS(5923), 2, + sym_identifier, + sym_super, + STATE(2643), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [67078] = 12, + [81608] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, + ACTIONS(5753), 1, sym_identifier, - ACTIONS(4857), 1, + ACTIONS(5757), 1, anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - ACTIONS(4911), 1, + ACTIONS(5761), 1, + anon_sym_ref, + ACTIONS(5763), 1, + sym_mutable_specifier, + ACTIONS(5927), 1, anon_sym_RBRACE, - ACTIONS(4913), 1, - anon_sym_COMMA, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2155), 2, + STATE(2644), 2, sym_line_comment, sym_block_comment, - STATE(3062), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67118] = 6, + STATE(3778), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [81638] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4917), 1, - anon_sym_COLON, - STATE(2156), 2, + ACTIONS(5929), 1, + sym_identifier, + STATE(2645), 2, sym_line_comment, sym_block_comment, - ACTIONS(4915), 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, - [67146] = 4, + ACTIONS(5438), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [81660] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2157), 2, + ACTIONS(5625), 1, + anon_sym_LPAREN, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5654), 1, + anon_sym_LBRACE, + ACTIONS(5931), 1, + anon_sym_SEMI, + STATE(664), 1, + sym_field_declaration_list, + STATE(3347), 1, + sym_ordered_field_declaration_list, + STATE(3767), 1, + sym_where_clause, + STATE(2646), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 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, - [67169] = 13, - ACTIONS(69), 1, - anon_sym_pub, + [81692] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, + ACTIONS(5753), 1, sym_identifier, - ACTIONS(4923), 1, + ACTIONS(5757), 1, + anon_sym_DOT_DOT, + ACTIONS(5761), 1, + anon_sym_ref, + ACTIONS(5763), 1, + sym_mutable_specifier, + ACTIONS(5933), 1, anon_sym_RBRACE, - ACTIONS(4925), 1, - anon_sym_COMMA, - ACTIONS(4927), 1, - sym_crate, - STATE(1115), 1, - sym_attribute_item, - STATE(2268), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2866), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2158), 2, + STATE(2647), 2, sym_line_comment, sym_block_comment, - [67210] = 4, + STATE(3778), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [81722] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2159), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5935), 1, + anon_sym_RPAREN, + STATE(2517), 1, + aux_sym_macro_definition_repeat1, + STATE(3859), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2648), 2, sym_line_comment, sym_block_comment, - ACTIONS(4929), 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, - [67233] = 13, - ACTIONS(69), 1, - anon_sym_pub, + [81754] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(4933), 1, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5937), 1, anon_sym_RBRACE, - ACTIONS(4935), 1, - anon_sym_COMMA, - STATE(1115), 1, - sym_attribute_item, - STATE(2273), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2878), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2160), 2, + STATE(2678), 1, + aux_sym_macro_definition_repeat1, + STATE(3893), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2649), 2, sym_line_comment, sym_block_comment, - [67274] = 4, + [81786] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2161), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4937), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5418), 1, + anon_sym_COLON_COLON, + ACTIONS(5939), 1, + anon_sym_LPAREN, + ACTIONS(5941), 1, + anon_sym_LBRACK, + ACTIONS(5943), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5945), 1, + anon_sym_LBRACE, + ACTIONS(5947), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67297] = 13, - ACTIONS(69), 1, - anon_sym_pub, + STATE(4080), 1, + sym_delim_token_tree, + STATE(2650), 2, + sym_line_comment, + sym_block_comment, + [81818] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4939), 1, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5949), 1, anon_sym_RBRACE, - ACTIONS(4941), 1, - anon_sym_COMMA, - STATE(1115), 1, - sym_attribute_item, - STATE(2311), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3105), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2162), 2, + STATE(2682), 1, + aux_sym_macro_definition_repeat1, + STATE(3896), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2651), 2, sym_line_comment, sym_block_comment, - [67338] = 4, + [81850] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2163), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5951), 1, + anon_sym_RBRACE, + STATE(2629), 1, + aux_sym_macro_definition_repeat1, + STATE(3628), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2652), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + [81882] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5454), 1, + anon_sym_COLON_COLON, + ACTIONS(5939), 1, + anon_sym_LPAREN, + ACTIONS(5941), 1, + anon_sym_LBRACK, + ACTIONS(5945), 1, + anon_sym_LBRACE, + ACTIONS(5953), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5955), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67361] = 11, + STATE(4084), 1, + sym_delim_token_tree, + STATE(2653), 2, + sym_line_comment, + sym_block_comment, + [81914] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, + ACTIONS(4744), 1, + anon_sym_LBRACE, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5925), 1, + anon_sym_STAR, + STATE(3310), 1, + sym_use_list, + STATE(4065), 1, + sym_type_arguments, + ACTIONS(5923), 2, sym_identifier, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - ACTIONS(4943), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2164), 2, + sym_super, + STATE(2654), 2, sym_line_comment, sym_block_comment, - STATE(3188), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67398] = 4, + [81944] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2165), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1499), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5306), 1, + anon_sym_COLON_COLON, + ACTIONS(5939), 1, + anon_sym_LPAREN, + ACTIONS(5941), 1, + anon_sym_LBRACK, + ACTIONS(5945), 1, + anon_sym_LBRACE, + ACTIONS(5953), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5955), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67421] = 11, + STATE(4084), 1, + sym_delim_token_tree, + STATE(2655), 2, + sym_line_comment, + sym_block_comment, + [81976] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, - sym_identifier, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - ACTIONS(4945), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2166), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5957), 1, + anon_sym_RBRACK, + STATE(2517), 1, + aux_sym_macro_definition_repeat1, + STATE(3920), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2656), 2, sym_line_comment, sym_block_comment, - STATE(3188), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67458] = 4, + [82008] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2167), 2, + ACTIONS(5492), 1, + anon_sym_DOT_DOT, + ACTIONS(5496), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2657), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(5213), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67481] = 11, + anon_sym_if, + [82034] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, + ACTIONS(5959), 1, sym_identifier, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - ACTIONS(4949), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2168), 2, + STATE(2658), 2, sym_line_comment, sym_block_comment, - STATE(3188), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67518] = 4, + ACTIONS(5438), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [82056] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2169), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5961), 1, + anon_sym_RBRACE, + STATE(2517), 1, + aux_sym_macro_definition_repeat1, + STATE(3885), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2659), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 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, - [67541] = 4, + [82088] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2170), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4626), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5424), 1, + anon_sym_COLON_COLON, + ACTIONS(5939), 1, + anon_sym_LPAREN, + ACTIONS(5941), 1, + anon_sym_LBRACK, + ACTIONS(5945), 1, + anon_sym_LBRACE, + ACTIONS(5953), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5955), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67564] = 4, + STATE(4084), 1, + sym_delim_token_tree, + STATE(2660), 2, + sym_line_comment, + sym_block_comment, + [82120] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2171), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4953), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5625), 1, + anon_sym_LPAREN, + ACTIONS(5627), 1, + anon_sym_LBRACE, + ACTIONS(5965), 1, anon_sym_EQ, + ACTIONS(5963), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67587] = 8, + STATE(2661), 2, + sym_line_comment, + sym_block_comment, + STATE(3555), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [82148] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - ACTIONS(4955), 1, - anon_sym_BANG, - STATE(1643), 1, - sym_type_arguments, - STATE(2172), 2, + ACTIONS(5967), 1, + sym_identifier, + STATE(2662), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(5438), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67618] = 4, + [82170] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2173), 2, + ACTIONS(5625), 1, + anon_sym_LPAREN, + ACTIONS(5627), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5969), 1, + anon_sym_SEMI, + STATE(1446), 1, + sym_field_declaration_list, + STATE(3259), 1, + sym_ordered_field_declaration_list, + STATE(3741), 1, + sym_where_clause, + STATE(2663), 2, sym_line_comment, sym_block_comment, - ACTIONS(4957), 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, - [67641] = 4, + [82202] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2174), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5971), 1, + anon_sym_RPAREN, + STATE(2668), 1, + aux_sym_macro_definition_repeat1, + STATE(3770), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2664), 2, sym_line_comment, sym_block_comment, - ACTIONS(4959), 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, - [67664] = 4, + [82234] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2175), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5971), 1, + anon_sym_RBRACK, + STATE(2669), 1, + aux_sym_macro_definition_repeat1, + STATE(3771), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2665), 2, sym_line_comment, sym_block_comment, - ACTIONS(4961), 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, - [67687] = 4, + [82266] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2176), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_RPAREN, + STATE(2670), 1, + aux_sym_macro_definition_repeat1, + STATE(3923), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2666), 2, sym_line_comment, sym_block_comment, - ACTIONS(4963), 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, - [67710] = 4, + [82298] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2177), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_RBRACK, + STATE(2671), 1, + aux_sym_macro_definition_repeat1, + STATE(3775), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2667), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 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, - [67733] = 4, + [82330] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2178), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5975), 1, + anon_sym_RPAREN, + STATE(2517), 1, + aux_sym_macro_definition_repeat1, + STATE(3793), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2668), 2, sym_line_comment, sym_block_comment, - ACTIONS(4965), 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, - [67756] = 4, + [82362] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2179), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5975), 1, + anon_sym_RBRACK, + STATE(2517), 1, + aux_sym_macro_definition_repeat1, + STATE(3794), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2669), 2, sym_line_comment, sym_block_comment, - ACTIONS(4967), 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, - [67779] = 4, + [82394] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2180), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_RPAREN, + STATE(2517), 1, + aux_sym_macro_definition_repeat1, + STATE(3795), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2670), 2, sym_line_comment, sym_block_comment, - ACTIONS(4969), 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, - [67802] = 4, + [82426] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2181), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5977), 1, + anon_sym_RBRACK, + STATE(2517), 1, + aux_sym_macro_definition_repeat1, + STATE(3796), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2671), 2, sym_line_comment, sym_block_comment, - ACTIONS(4971), 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, - [67825] = 4, + [82458] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2182), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4973), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(5193), 1, + anon_sym_DOT_DOT, + ACTIONS(5981), 1, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(5983), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5979), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67848] = 4, + STATE(2672), 2, + sym_line_comment, + sym_block_comment, + [82486] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2183), 2, + ACTIONS(5193), 1, + anon_sym_DOT_DOT, + ACTIONS(5983), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2673), 2, sym_line_comment, sym_block_comment, - ACTIONS(4975), 10, - anon_sym_SEMI, + ACTIONS(3973), 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, - [67871] = 4, + [82512] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2184), 2, + ACTIONS(5261), 1, + anon_sym_trait, + STATE(2674), 2, sym_line_comment, sym_block_comment, - ACTIONS(4977), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [82534] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5193), 1, + anon_sym_DOT_DOT, + ACTIONS(5981), 1, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(5985), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5979), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67894] = 9, + STATE(2675), 2, + sym_line_comment, + sym_block_comment, + [82562] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4979), 1, - anon_sym_LBRACE, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2185), 2, + ACTIONS(5193), 1, + anon_sym_DOT_DOT, + ACTIONS(5985), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2676), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 5, - anon_sym_SEMI, + ACTIONS(3973), 3, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - [67927] = 10, + [82588] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_COLON, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(2186), 2, + ACTIONS(5753), 1, + sym_identifier, + ACTIONS(5757), 1, + anon_sym_DOT_DOT, + ACTIONS(5761), 1, + anon_sym_ref, + ACTIONS(5763), 1, + sym_mutable_specifier, + ACTIONS(5987), 1, + anon_sym_RBRACE, + STATE(2677), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [67962] = 4, + STATE(3778), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [82618] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2187), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5989), 1, + anon_sym_RBRACE, + STATE(2517), 1, + aux_sym_macro_definition_repeat1, + STATE(3649), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2678), 2, sym_line_comment, sym_block_comment, - ACTIONS(4981), 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, - [67985] = 4, + [82650] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2188), 2, + ACTIONS(5753), 1, + sym_identifier, + ACTIONS(5757), 1, + anon_sym_DOT_DOT, + ACTIONS(5761), 1, + anon_sym_ref, + ACTIONS(5763), 1, + sym_mutable_specifier, + ACTIONS(5991), 1, + anon_sym_RBRACE, + STATE(2679), 2, sym_line_comment, sym_block_comment, - ACTIONS(4983), 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, - [68008] = 4, + STATE(3778), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [82680] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2189), 2, + ACTIONS(5625), 1, + anon_sym_LPAREN, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5654), 1, + anon_sym_LBRACE, + ACTIONS(5993), 1, + anon_sym_SEMI, + STATE(792), 1, + sym_field_declaration_list, + STATE(3421), 1, + sym_ordered_field_declaration_list, + STATE(3640), 1, + sym_where_clause, + STATE(2680), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 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, - [68031] = 4, + [82712] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2190), 2, + ACTIONS(5193), 1, + anon_sym_DOT_DOT, + ACTIONS(5995), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2681), 2, sym_line_comment, sym_block_comment, - ACTIONS(4987), 10, + ACTIONS(3973), 3, 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, - [68054] = 4, + anon_sym_PLUS, + [82738] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2191), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5997), 1, + anon_sym_RBRACE, + STATE(2517), 1, + aux_sym_macro_definition_repeat1, + STATE(3661), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2682), 2, sym_line_comment, sym_block_comment, - ACTIONS(4989), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, + [82770] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5625), 1, + anon_sym_LPAREN, + ACTIONS(5627), 1, + anon_sym_LBRACE, + ACTIONS(6001), 1, anon_sym_EQ, + ACTIONS(5999), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68077] = 8, + STATE(2683), 2, + sym_line_comment, + sym_block_comment, + STATE(3241), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [82798] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(2165), 1, - sym_block, - STATE(3732), 1, - sym_label, - STATE(2192), 2, + ACTIONS(5237), 1, + anon_sym_trait, + STATE(2684), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(4010), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68108] = 10, + [82820] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4991), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5193), 1, anon_sym_DOT_DOT, - ACTIONS(4997), 1, + ACTIONS(6005), 1, + anon_sym_COLON, + ACTIONS(6007), 1, anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4995), 2, + ACTIONS(5195), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2193), 2, + ACTIONS(6003), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2685), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [68143] = 4, + [82848] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2194), 2, + ACTIONS(6009), 1, + anon_sym_trait, + STATE(2686), 2, sym_line_comment, sym_block_comment, - ACTIONS(4999), 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, - [68166] = 13, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(4010), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [82870] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, + ACTIONS(6011), 1, sym_identifier, - ACTIONS(5001), 1, - anon_sym_RBRACE, - ACTIONS(5003), 1, - anon_sym_COMMA, - STATE(1115), 1, - sym_attribute_item, - STATE(2266), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2850), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2195), 2, + STATE(2687), 2, sym_line_comment, sym_block_comment, - [68207] = 4, + ACTIONS(5438), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [82892] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2196), 2, + ACTIONS(5885), 1, + anon_sym_LPAREN, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5957), 1, + anon_sym_RPAREN, + STATE(2517), 1, + aux_sym_macro_definition_repeat1, + STATE(3909), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2688), 2, sym_line_comment, sym_block_comment, - ACTIONS(5005), 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, - [68230] = 8, + [82924] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - STATE(1123), 1, - sym_type_arguments, - STATE(2197), 2, + ACTIONS(6013), 1, + sym_identifier, + STATE(2689), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(5438), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68261] = 8, + [82946] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - STATE(1643), 1, - sym_type_arguments, - STATE(2198), 2, + ACTIONS(6015), 1, + sym_identifier, + STATE(2690), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(5438), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68292] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2199), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5007), 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, - [68315] = 10, + [82968] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, + ACTIONS(5885), 1, anon_sym_LPAREN, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5009), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2200), 2, + ACTIONS(5889), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_LBRACE, + ACTIONS(5935), 1, + anon_sym_RBRACK, + STATE(2517), 1, + aux_sym_macro_definition_repeat1, + STATE(3879), 1, + sym_macro_rule, + STATE(4024), 1, + sym_token_tree_pattern, + STATE(2691), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [68350] = 11, + [83000] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, - sym_identifier, - ACTIONS(4857), 1, + ACTIONS(991), 1, anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - ACTIONS(5011), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2201), 2, + STATE(2692), 2, sym_line_comment, sym_block_comment, - STATE(3188), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68387] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4735), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, + ACTIONS(993), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2202), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4654), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [68422] = 8, + anon_sym_if, + [83021] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - ACTIONS(5013), 1, - anon_sym_BANG, - STATE(1123), 1, - sym_type_arguments, - STATE(2203), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, + anon_sym_COLON, + STATE(667), 1, + sym_declaration_list, + STATE(3038), 1, + sym_trait_bounds, + STATE(3626), 1, + sym_where_clause, + STATE(2693), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68453] = 4, + [83050] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2204), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5015), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(6017), 1, + anon_sym_SEMI, + ACTIONS(6019), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68476] = 4, + STATE(3323), 1, + sym_trait_bounds, + STATE(3634), 1, + sym_where_clause, + STATE(2694), 2, + sym_line_comment, + sym_block_comment, + [83079] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2205), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6021), 1, + anon_sym_SEMI, + STATE(1334), 1, + sym_declaration_list, + STATE(3377), 1, + sym_where_clause, + STATE(2695), 2, sym_line_comment, sym_block_comment, - ACTIONS(5017), 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, - [68499] = 4, + [83108] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2206), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6023), 1, + anon_sym_SEMI, + STATE(1336), 1, + sym_declaration_list, + STATE(3378), 1, + sym_where_clause, + STATE(2696), 2, sym_line_comment, sym_block_comment, - ACTIONS(5019), 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, - [68522] = 4, + [83137] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2207), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6025), 1, + anon_sym_SEMI, + STATE(1338), 1, + sym_declaration_list, + STATE(3380), 1, + sym_where_clause, + STATE(2697), 2, sym_line_comment, sym_block_comment, - ACTIONS(5021), 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, - [68545] = 4, + [83166] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2208), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6027), 1, + anon_sym_SEMI, + STATE(1340), 1, + sym_declaration_list, + STATE(3381), 1, + sym_where_clause, + STATE(2698), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 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, - [68568] = 4, + [83195] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2209), 2, + ACTIONS(5627), 1, + anon_sym_LBRACE, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, + anon_sym_where, + STATE(1621), 1, + sym_field_declaration_list, + STATE(3235), 1, + sym_type_parameters, + STATE(3875), 1, + sym_where_clause, + STATE(2699), 2, sym_line_comment, sym_block_comment, - ACTIONS(5023), 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, - [68591] = 8, + [83224] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - STATE(2210), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6029), 1, + anon_sym_SEMI, + STATE(1508), 1, + sym_declaration_list, + STATE(3324), 1, + sym_where_clause, + STATE(2700), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68622] = 4, + [83253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2211), 2, + ACTIONS(6031), 1, + anon_sym_DASH_GT, + STATE(2701), 2, sym_line_comment, sym_block_comment, - ACTIONS(5025), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(4150), 5, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68645] = 11, + anon_sym_as, + [83274] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4747), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2212), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6033), 1, + anon_sym_SEMI, + STATE(849), 1, + sym_declaration_list, + STATE(3252), 1, + sym_where_clause, + STATE(2702), 2, sym_line_comment, sym_block_comment, - [68681] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [83303] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(5027), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2213), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6035), 1, + anon_sym_SEMI, + STATE(1374), 1, + sym_declaration_list, + STATE(3384), 1, + sym_where_clause, + STATE(2703), 2, sym_line_comment, sym_block_comment, - [68719] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [83332] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(5029), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2214), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6037), 1, + anon_sym_SEMI, + STATE(1376), 1, + sym_declaration_list, + STATE(3385), 1, + sym_where_clause, + STATE(2704), 2, sym_line_comment, sym_block_comment, - [68757] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [83361] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(5031), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2215), 2, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6039), 1, + anon_sym_LBRACE, + STATE(1509), 1, + sym_enum_variant_list, + STATE(3149), 1, + sym_type_parameters, + STATE(3637), 1, + sym_where_clause, + STATE(2705), 2, sym_line_comment, sym_block_comment, - [68795] = 8, + [83390] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2441), 1, - sym_parameters, - STATE(2216), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6041), 1, + anon_sym_SEMI, + STATE(1459), 1, + sym_declaration_list, + STATE(3303), 1, + sym_where_clause, + STATE(2706), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [68825] = 12, + [83419] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5033), 1, - anon_sym_SEMI, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5629), 1, anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - STATE(1187), 1, + STATE(1517), 1, sym_field_declaration_list, - STATE(2366), 1, + STATE(3151), 1, sym_type_parameters, - STATE(2885), 1, - sym_ordered_field_declaration_list, - STATE(3241), 1, + STATE(3641), 1, sym_where_clause, - STATE(2217), 2, + STATE(2707), 2, sym_line_comment, sym_block_comment, - [68863] = 5, + [83448] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, - anon_sym_DOT_DOT, - STATE(2218), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6043), 1, + anon_sym_SEMI, + STATE(1463), 1, + sym_declaration_list, + STATE(3306), 1, + sym_where_clause, + STATE(2708), 2, sym_line_comment, sym_block_comment, - ACTIONS(3489), 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, - [68887] = 5, + [83477] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, + ACTIONS(5753), 1, + sym_identifier, + ACTIONS(5757), 1, anon_sym_DOT_DOT, - STATE(2219), 2, + ACTIONS(5761), 1, + anon_sym_ref, + ACTIONS(5763), 1, + sym_mutable_specifier, + STATE(2709), 2, sym_line_comment, sym_block_comment, - ACTIONS(3508), 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, - [68911] = 7, + STATE(3778), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [83504] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(5043), 1, + ACTIONS(5193), 1, + anon_sym_DOT_DOT, + ACTIONS(5985), 1, anon_sym_COLON_COLON, - STATE(1643), 1, - sym_type_arguments, - STATE(2220), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68939] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2221), 2, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(6045), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2710), 2, sym_line_comment, sym_block_comment, - [68977] = 5, + [83529] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5049), 1, - anon_sym_PLUS, - STATE(2222), 3, - sym_line_comment, - sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(5047), 7, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, + anon_sym_COLON, + ACTIONS(6047), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(6049), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69001] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5052), 1, - anon_sym_COLON_COLON, - STATE(1123), 1, - sym_type_arguments, - STATE(2223), 2, + STATE(3528), 1, + sym_trait_bounds, + STATE(3814), 1, + sym_where_clause, + STATE(2711), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69029] = 9, + [83558] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5054), 1, - anon_sym_LPAREN, - ACTIONS(5059), 1, - anon_sym_LBRACK, - ACTIONS(5062), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, anon_sym_LBRACE, - STATE(3502), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - ACTIONS(5057), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(2224), 3, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6051), 1, + anon_sym_SEMI, + STATE(794), 1, + sym_declaration_list, + STATE(3485), 1, + sym_where_clause, + STATE(2712), 2, sym_line_comment, sym_block_comment, - aux_sym_macro_definition_repeat1, - [69061] = 10, + [83587] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, + ACTIONS(4176), 2, anon_sym_PLUS, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, + anon_sym_DASH_GT, + ACTIONS(5560), 2, anon_sym_COLON, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4692), 1, - anon_sym_COLON_COLON, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5065), 2, + anon_sym_PIPE, + ACTIONS(6053), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2225), 2, + STATE(2713), 2, sym_line_comment, sym_block_comment, - [69095] = 9, + [83610] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5068), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2226), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3594), 1, anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, anon_sym_where, - [69127] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4735), 1, - anon_sym_COLON_COLON, - ACTIONS(5065), 1, - anon_sym_RBRACK, - ACTIONS(3518), 2, + ACTIONS(6056), 1, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4654), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2227), 2, + STATE(1484), 1, + sym_declaration_list, + STATE(3315), 1, + sym_where_clause, + STATE(2714), 2, sym_line_comment, sym_block_comment, - [69159] = 9, + [83639] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, + ACTIONS(5560), 2, anon_sym_COLON, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4747), 1, - anon_sym_COLON_COLON, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2228), 2, + anon_sym_PIPE, + STATE(2715), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, + ACTIONS(4176), 4, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [69191] = 8, + anon_sym_DASH_GT, + [83660] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2441), 1, - sym_parameters, - STATE(2229), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6058), 1, + anon_sym_SEMI, + STATE(851), 1, + sym_declaration_list, + STATE(3255), 1, + sym_where_clause, + STATE(2716), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 5, - anon_sym_COLON, + [83689] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3590), 1, anon_sym_PLUS, + ACTIONS(5731), 1, + anon_sym_COLON, + ACTIONS(6060), 1, anon_sym_GT, + ACTIONS(6062), 1, anon_sym_COMMA, - anon_sym_as, - [69221] = 10, + STATE(3423), 1, + sym_trait_bounds, + STATE(3424), 1, + aux_sym_type_arguments_repeat1, + STATE(2717), 2, + sym_line_comment, + sym_block_comment, + [83718] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, - sym_identifier, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2230), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6064), 1, + anon_sym_SEMI, + STATE(1545), 1, + sym_declaration_list, + STATE(3336), 1, + sym_where_clause, + STATE(2718), 2, sym_line_comment, sym_block_comment, - STATE(3188), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [69255] = 7, + [83747] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5070), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - STATE(2231), 2, + ACTIONS(979), 1, + anon_sym_DOT_DOT, + STATE(2719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69283] = 9, + ACTIONS(981), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [83768] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5072), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2232), 2, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(6066), 1, + anon_sym_if, + STATE(4253), 1, + sym_label, + STATE(486), 2, + sym_if_expression, + sym_block, + STATE(2720), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69315] = 5, + [83795] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, + ACTIONS(987), 1, anon_sym_DOT_DOT, - STATE(2233), 2, + STATE(2721), 2, sym_line_comment, sym_block_comment, - ACTIONS(3500), 8, - anon_sym_LPAREN, + ACTIONS(989), 5, 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, - [69339] = 12, + [83816] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5074), 1, + ACTIONS(6068), 1, anon_sym_SEMI, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(773), 1, - sym_field_declaration_list, - STATE(2347), 1, - sym_type_parameters, - STATE(2930), 1, - sym_ordered_field_declaration_list, - STATE(3254), 1, + STATE(1547), 1, + sym_declaration_list, + STATE(3337), 1, sym_where_clause, - STATE(2234), 2, + STATE(2722), 2, sym_line_comment, sym_block_comment, - [69377] = 8, + [83845] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2441), 1, - sym_parameters, - STATE(2235), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6070), 1, + anon_sym_SEMI, + STATE(1551), 1, + sym_declaration_list, + STATE(3340), 1, + sym_where_clause, + STATE(2723), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [69407] = 9, + [83874] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5078), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2236), 2, + ACTIONS(6074), 1, + anon_sym_COMMA, + STATE(2724), 3, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + aux_sym_where_clause_repeat1, + ACTIONS(6072), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69439] = 8, + anon_sym_EQ, + anon_sym_SQUOTE, + [83895] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2441), 1, - sym_parameters, - STATE(2237), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3526), 5, - anon_sym_COLON, + ACTIONS(3590), 1, anon_sym_PLUS, + ACTIONS(5731), 1, + anon_sym_COLON, + ACTIONS(6077), 1, anon_sym_GT, + ACTIONS(6079), 1, anon_sym_COMMA, - anon_sym_as, - [69469] = 12, - ACTIONS(69), 1, - anon_sym_pub, + STATE(3437), 1, + sym_trait_bounds, + STATE(3438), 1, + aux_sym_type_arguments_repeat1, + STATE(2725), 2, + sym_line_comment, + sym_block_comment, + [83924] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(5080), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2238), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6081), 1, + anon_sym_SEMI, + STATE(1558), 1, + sym_declaration_list, + STATE(3341), 1, + sym_where_clause, + STATE(2726), 2, sym_line_comment, sym_block_comment, - [69507] = 9, + [83953] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4793), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_BANG, - ACTIONS(4801), 1, - anon_sym_DOT_DOT, - ACTIONS(5082), 1, - anon_sym_COLON_COLON, - ACTIONS(4803), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2239), 2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(5731), 1, + anon_sym_COLON, + ACTIONS(6083), 1, + anon_sym_GT, + ACTIONS(6085), 1, + anon_sym_COMMA, + STATE(3447), 1, + sym_trait_bounds, + STATE(3448), 1, + aux_sym_type_arguments_repeat1, + STATE(2727), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [69539] = 6, + [83982] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5086), 1, - anon_sym_PLUS, - STATE(2248), 1, - aux_sym_trait_bounds_repeat1, - STATE(2240), 2, + ACTIONS(6087), 1, + anon_sym_DASH_GT, + STATE(2728), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(4072), 5, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69565] = 12, - ACTIONS(69), 1, - anon_sym_pub, + anon_sym_as, + [84003] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(5088), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2241), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6089), 1, + anon_sym_SEMI, + STATE(674), 1, + sym_declaration_list, + STATE(3242), 1, + sym_where_clause, + STATE(2729), 2, sym_line_comment, sym_block_comment, - [69603] = 6, + [84032] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5090), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - STATE(2248), 1, - aux_sym_trait_bounds_repeat1, - STATE(2242), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5084), 7, - anon_sym_SEMI, + ACTIONS(5608), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, + ACTIONS(5631), 1, anon_sym_where, - [69629] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(5092), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2243), 2, + ACTIONS(6091), 1, + anon_sym_SEMI, + STATE(746), 1, + sym_declaration_list, + STATE(3320), 1, + sym_where_clause, + STATE(2730), 2, sym_line_comment, sym_block_comment, - [69667] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [84061] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(5094), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2244), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(6093), 1, + anon_sym_if, + STATE(4254), 1, + sym_label, + STATE(2098), 2, + sym_if_expression, + sym_block, + STATE(2731), 2, sym_line_comment, sym_block_comment, - [69705] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [84088] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(5096), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2245), 2, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5654), 1, + anon_sym_LBRACE, + STATE(816), 1, + sym_field_declaration_list, + STATE(3018), 1, + sym_type_parameters, + STATE(3703), 1, + sym_where_clause, + STATE(2732), 2, sym_line_comment, sym_block_comment, - [69743] = 7, + [84117] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5098), 1, - anon_sym_SEMI, - ACTIONS(5100), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, anon_sym_LBRACE, - STATE(1121), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6095), 1, + anon_sym_SEMI, + STATE(730), 1, sym_declaration_list, - STATE(2246), 2, + STATE(3404), 1, + sym_where_clause, + STATE(2733), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69771] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [84146] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(5102), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2247), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5666), 1, + anon_sym_for, + STATE(2734), 2, sym_line_comment, sym_block_comment, - [69809] = 6, + ACTIONS(3973), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [84169] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5086), 1, - anon_sym_PLUS, - STATE(2222), 1, - aux_sym_trait_bounds_repeat1, - STATE(2248), 2, + STATE(2735), 2, sym_line_comment, sym_block_comment, - ACTIONS(5104), 7, - anon_sym_SEMI, + ACTIONS(5640), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69835] = 9, + anon_sym_RBRACE, + [84188] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, - anon_sym_LPAREN, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5106), 1, + ACTIONS(5302), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2249), 2, + ACTIONS(6097), 1, + anon_sym_GT, + ACTIONS(6099), 1, + anon_sym_COMMA, + STATE(3578), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3973), 2, + anon_sym_PLUS, + anon_sym_as, + STATE(2736), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [69867] = 7, + [84215] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_SEMI, - ACTIONS(5110), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, anon_sym_LBRACE, - STATE(667), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6101), 1, + anon_sym_SEMI, + STATE(603), 1, sym_declaration_list, - STATE(2250), 2, + STATE(3464), 1, + sym_where_clause, + STATE(2737), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69895] = 9, + [84244] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5112), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2251), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, + ACTIONS(5608), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(5631), 1, anon_sym_where, - [69927] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(5731), 1, + anon_sym_COLON, + STATE(897), 1, + sym_declaration_list, + STATE(3130), 1, + sym_trait_bounds, + STATE(3677), 1, + sym_where_clause, + STATE(2738), 2, + sym_line_comment, + sym_block_comment, + [84273] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(5114), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2252), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6103), 1, + anon_sym_SEMI, + STATE(1677), 1, + sym_declaration_list, + STATE(3253), 1, + sym_where_clause, + STATE(2739), 2, sym_line_comment, sym_block_comment, - [69965] = 9, + [84302] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5116), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2253), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3594), 1, anon_sym_PLUS, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, anon_sym_where, - [69997] = 9, + ACTIONS(6105), 1, + anon_sym_SEMI, + STATE(843), 1, + sym_declaration_list, + STATE(3569), 1, + sym_where_clause, + STATE(2740), 2, + sym_line_comment, + sym_block_comment, + [84331] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5118), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2254), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3594), 1, anon_sym_PLUS, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, anon_sym_where, - [70029] = 12, + ACTIONS(6107), 1, + anon_sym_SEMI, + STATE(707), 1, + sym_declaration_list, + STATE(3418), 1, + sym_where_clause, + STATE(2741), 2, + sym_line_comment, + sym_block_comment, + [84360] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(6109), 1, anon_sym_SEMI, - STATE(1141), 1, - sym_field_declaration_list, - STATE(2372), 1, - sym_type_parameters, - STATE(3085), 1, - sym_ordered_field_declaration_list, - STATE(3338), 1, + STATE(539), 1, + sym_declaration_list, + STATE(3540), 1, sym_where_clause, - STATE(2255), 2, + STATE(2742), 2, sym_line_comment, sym_block_comment, - [70067] = 9, + [84389] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5122), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2256), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6111), 1, + anon_sym_SEMI, + STATE(541), 1, + sym_declaration_list, + STATE(3542), 1, + sym_where_clause, + STATE(2743), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + [84418] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3594), 1, anon_sym_PLUS, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, anon_sym_where, - [70099] = 12, + ACTIONS(6113), 1, + anon_sym_SEMI, + STATE(710), 1, + sym_declaration_list, + STATE(3422), 1, + sym_where_clause, + STATE(2744), 2, + sym_line_comment, + sym_block_comment, + [84447] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - ACTIONS(5124), 1, - anon_sym_SEMI, - STATE(643), 1, - sym_field_declaration_list, - STATE(2333), 1, - sym_type_parameters, - STATE(2905), 1, - sym_ordered_field_declaration_list, - STATE(3168), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, + anon_sym_COLON, + STATE(1609), 1, + sym_declaration_list, + STATE(3156), 1, + sym_trait_bounds, + STATE(3736), 1, sym_where_clause, - STATE(2257), 2, + STATE(2745), 2, sym_line_comment, sym_block_comment, - [70137] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [84476] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(5126), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2258), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5602), 1, + anon_sym_for, + STATE(2746), 2, sym_line_comment, sym_block_comment, - [70175] = 7, + ACTIONS(3973), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [84499] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - ACTIONS(5128), 1, - anon_sym_SEMI, - STATE(585), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, + anon_sym_COLON, + STATE(1519), 1, sym_declaration_list, - STATE(2259), 2, + STATE(2973), 1, + sym_trait_bounds, + STATE(3750), 1, + sym_where_clause, + STATE(2747), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70203] = 5, + [84528] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(5362), 1, anon_sym_DOT_DOT, - STATE(2260), 2, + ACTIONS(5364), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2748), 2, sym_line_comment, sym_block_comment, - ACTIONS(3516), 8, - anon_sym_LPAREN, + ACTIONS(5181), 3, 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, - [70227] = 7, + [84551] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, + anon_sym_COLON, + ACTIONS(6115), 1, + anon_sym_SEMI, + ACTIONS(6117), 1, + anon_sym_EQ, + STATE(3261), 1, + sym_trait_bounds, + STATE(3777), 1, + sym_where_clause, + STATE(2749), 2, + sym_line_comment, + sym_block_comment, + [84580] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, anon_sym_LBRACE, - ACTIONS(5130), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6119), 1, anon_sym_SEMI, - STATE(1148), 1, + STATE(1409), 1, sym_declaration_list, - STATE(2261), 2, + STATE(3262), 1, + sym_where_clause, + STATE(2750), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70255] = 9, + [84609] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2262), 2, + ACTIONS(4052), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(5580), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6121), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2751), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [70287] = 11, + [84632] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5134), 1, + ACTIONS(6124), 1, anon_sym_SEMI, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5138), 1, - anon_sym_DASH_GT, - STATE(496), 1, - sym_block, - STATE(2532), 1, + STATE(605), 1, + sym_declaration_list, + STATE(3479), 1, sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2263), 2, + STATE(2752), 2, sym_line_comment, sym_block_comment, - [70322] = 11, + [84661] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5140), 1, + ACTIONS(6126), 1, anon_sym_SEMI, - ACTIONS(5142), 1, - anon_sym_LBRACE, - STATE(1379), 1, - sym_block, - STATE(2538), 1, + STATE(1616), 1, + sym_declaration_list, + STATE(3352), 1, sym_where_clause, - STATE(3739), 1, - sym_label, - STATE(2264), 2, + STATE(2753), 2, sym_line_comment, sym_block_comment, - [70357] = 7, + [84690] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5147), 1, - anon_sym_fn, - ACTIONS(5149), 1, - anon_sym_extern, - STATE(2459), 1, - sym_extern_modifier, - STATE(2265), 3, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, + anon_sym_COLON, + STATE(1489), 1, + sym_declaration_list, + STATE(3109), 1, + sym_trait_bounds, + STATE(3605), 1, + sym_where_clause, + STATE(2754), 2, sym_line_comment, sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5144), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [70384] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [84719] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(2966), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2266), 2, + ACTIONS(5346), 1, + anon_sym_DOT_DOT, + STATE(2755), 2, sym_line_comment, sym_block_comment, - [70419] = 11, + ACTIONS(5344), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [84740] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(739), 1, - sym_declaration_list, - STATE(2467), 1, - sym_type_parameters, - STATE(2643), 1, - sym_trait_bounds, - STATE(3407), 1, - sym_where_clause, - STATE(2267), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5684), 1, + anon_sym_for, + STATE(2756), 2, sym_line_comment, sym_block_comment, - [70454] = 11, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(3973), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [84763] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(2913), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2268), 2, + ACTIONS(6130), 1, + anon_sym_COMMA, + STATE(2767), 1, + aux_sym_where_clause_repeat1, + STATE(2757), 2, sym_line_comment, sym_block_comment, - [70489] = 11, + ACTIONS(6128), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [84786] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(5156), 1, - anon_sym_SEMI, - STATE(542), 1, - sym_block, - STATE(2494), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, + anon_sym_COLON, + STATE(517), 1, + sym_declaration_list, + STATE(3110), 1, + sym_trait_bounds, + STATE(3805), 1, sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2269), 2, + STATE(2758), 2, sym_line_comment, sym_block_comment, - [70524] = 4, + [84815] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2270), 2, + ACTIONS(4138), 1, + anon_sym_COLON, + ACTIONS(6132), 1, + anon_sym_EQ, + STATE(2759), 2, sym_line_comment, sym_block_comment, - ACTIONS(5158), 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, - [70545] = 11, + ACTIONS(4136), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [84838] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(6134), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - anon_sym_SEMI, - STATE(1391), 1, - sym_block, - STATE(2539), 1, + STATE(685), 1, + sym_enum_variant_list, + STATE(3146), 1, + sym_type_parameters, + STATE(3643), 1, sym_where_clause, - STATE(3739), 1, - sym_label, - STATE(2271), 2, + STATE(2760), 2, sym_line_comment, sym_block_comment, - [70580] = 11, + [84867] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - ACTIONS(5162), 1, + ACTIONS(6136), 1, anon_sym_SEMI, - ACTIONS(5164), 1, - anon_sym_EQ, - STATE(2458), 1, - sym_type_parameters, - STATE(2953), 1, - sym_trait_bounds, - STATE(3299), 1, + STATE(809), 1, + sym_declaration_list, + STATE(3450), 1, sym_where_clause, - STATE(2272), 2, + STATE(2761), 2, sym_line_comment, sym_block_comment, - [70615] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [84896] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(2920), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2273), 2, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6039), 1, + anon_sym_LBRACE, + STATE(1417), 1, + sym_enum_variant_list, + STATE(3000), 1, + sym_type_parameters, + STATE(3812), 1, + sym_where_clause, + STATE(2762), 2, sym_line_comment, sym_block_comment, - [70650] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [84925] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - STATE(1115), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2274), 2, + ACTIONS(5324), 1, + anon_sym_DOT_DOT, + STATE(2763), 2, sym_line_comment, sym_block_comment, - [70685] = 11, + ACTIONS(5322), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [84946] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5166), 1, - anon_sym_SEMI, - ACTIONS(5168), 1, - anon_sym_DASH_GT, - STATE(704), 1, - sym_block, - STATE(2582), 1, - sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2275), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5600), 1, + anon_sym_for, + STATE(2764), 2, sym_line_comment, sym_block_comment, - [70720] = 4, + ACTIONS(3973), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [84969] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2276), 2, + ACTIONS(5580), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2765), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4052), 4, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70741] = 11, + anon_sym_DASH_GT, + [84990] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(5170), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6138), 1, anon_sym_SEMI, - STATE(1402), 1, - sym_block, - STATE(2540), 1, + STATE(785), 1, + sym_declaration_list, + STATE(3475), 1, sym_where_clause, - STATE(3739), 1, - sym_label, - STATE(2277), 2, + STATE(2766), 2, sym_line_comment, sym_block_comment, - [70776] = 8, + [85019] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, - anon_sym_fn, - ACTIONS(5174), 1, - anon_sym_extern, - STATE(2265), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(2278), 2, + ACTIONS(6140), 1, + anon_sym_COMMA, + STATE(2724), 1, + aux_sym_where_clause_repeat1, + STATE(2767), 2, sym_line_comment, sym_block_comment, - ACTIONS(4666), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [70805] = 6, + ACTIONS(3943), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [85042] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4706), 1, - anon_sym_trait, - ACTIONS(5176), 1, - anon_sym_impl, - STATE(2279), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6142), 1, + anon_sym_SEMI, + STATE(757), 1, + sym_declaration_list, + STATE(3468), 1, + sym_where_clause, + STATE(2768), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70830] = 11, + [85071] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5178), 1, - anon_sym_SEMI, - ACTIONS(5180), 1, - anon_sym_DASH_GT, - STATE(657), 1, - sym_block, - STATE(2518), 1, - sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2280), 2, + ACTIONS(6144), 1, + sym_identifier, + ACTIONS(6146), 1, + anon_sym_ref, + ACTIONS(6148), 1, + sym_mutable_specifier, + ACTIONS(6150), 1, + anon_sym_move, + STATE(243), 1, + sym_closure_parameters, + STATE(2769), 2, sym_line_comment, sym_block_comment, - [70865] = 11, + [85100] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3590), 1, anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5182), 1, - anon_sym_SEMI, - STATE(553), 1, - sym_block, - STATE(2503), 1, - sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2281), 2, + ACTIONS(5731), 1, + anon_sym_COLON, + ACTIONS(6152), 1, + anon_sym_GT, + ACTIONS(6154), 1, + anon_sym_COMMA, + STATE(3274), 1, + sym_trait_bounds, + STATE(3275), 1, + aux_sym_type_arguments_repeat1, + STATE(2770), 2, sym_line_comment, sym_block_comment, - [70900] = 11, + [85129] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(5184), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6156), 1, anon_sym_SEMI, - STATE(605), 1, - sym_block, - STATE(2477), 1, + STATE(774), 1, + sym_declaration_list, + STATE(3386), 1, sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2282), 2, + STATE(2771), 2, sym_line_comment, sym_block_comment, - [70935] = 11, + [85158] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, - anon_sym_SEMI, - ACTIONS(5188), 1, - anon_sym_DASH_GT, - STATE(683), 1, - sym_block, - STATE(2528), 1, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, + anon_sym_where, + STATE(1425), 1, + sym_field_declaration_list, + STATE(3012), 1, + sym_type_parameters, + STATE(3863), 1, sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2283), 2, + STATE(2772), 2, sym_line_comment, sym_block_comment, - [70970] = 11, + [85187] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6158), 1, anon_sym_SEMI, - STATE(1252), 1, - sym_block, - STATE(2584), 1, + STATE(562), 1, + sym_declaration_list, + STATE(3431), 1, sym_where_clause, - STATE(3739), 1, - sym_label, - STATE(2284), 2, + STATE(2773), 2, sym_line_comment, sym_block_comment, - [71005] = 11, + [85216] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(5192), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6160), 1, anon_sym_SEMI, - STATE(529), 1, - sym_block, - STATE(2489), 1, + STATE(564), 1, + sym_declaration_list, + STATE(3581), 1, sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2285), 2, + STATE(2774), 2, sym_line_comment, sym_block_comment, - [71040] = 11, + [85245] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(5194), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6162), 1, anon_sym_SEMI, - ACTIONS(5196), 1, - anon_sym_DASH_GT, - STATE(572), 1, - sym_block, - STATE(2569), 1, + STATE(651), 1, + sym_declaration_list, + STATE(3364), 1, sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2286), 2, + STATE(2775), 2, sym_line_comment, sym_block_comment, - [71075] = 4, + [85274] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2287), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5047), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3594), 1, anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, anon_sym_where, - [71096] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - STATE(2270), 1, - sym_string_literal, - STATE(2288), 2, + ACTIONS(6164), 1, + anon_sym_SEMI, + STATE(566), 1, + sym_declaration_list, + STATE(3411), 1, + sym_where_clause, + STATE(2776), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71121] = 10, + [85303] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5200), 1, - anon_sym_RBRACE, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_COMMA, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - STATE(2289), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6166), 1, + anon_sym_SEMI, + STATE(568), 1, + sym_declaration_list, + STATE(3439), 1, + sym_where_clause, + STATE(2777), 2, sym_line_comment, sym_block_comment, - STATE(2982), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71154] = 11, + [85332] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(5210), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6168), 1, anon_sym_SEMI, - ACTIONS(5212), 1, - anon_sym_DASH_GT, - STATE(1201), 1, - sym_block, - STATE(2527), 1, + STATE(581), 1, + sym_declaration_list, + STATE(3495), 1, sym_where_clause, - STATE(3739), 1, - sym_label, - STATE(2290), 2, + STATE(2778), 2, sym_line_comment, sym_block_comment, - [71189] = 10, + [85361] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5214), 1, - anon_sym_RBRACE, - ACTIONS(5216), 1, - anon_sym_COMMA, - STATE(2291), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6170), 1, + anon_sym_SEMI, + STATE(1652), 1, + sym_declaration_list, + STATE(3361), 1, + sym_where_clause, + STATE(2779), 2, sym_line_comment, sym_block_comment, - STATE(2851), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71222] = 11, + [85390] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(581), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6172), 1, + anon_sym_SEMI, + STATE(1654), 1, sym_declaration_list, - STATE(2438), 1, - sym_type_parameters, - STATE(2723), 1, - sym_trait_bounds, - STATE(3192), 1, + STATE(3362), 1, sym_where_clause, - STATE(2292), 2, + STATE(2780), 2, sym_line_comment, sym_block_comment, - [71257] = 10, + [85419] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, + ACTIONS(5193), 1, anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5218), 1, - anon_sym_RBRACE, - ACTIONS(5220), 1, + ACTIONS(5983), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(6003), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2293), 2, + STATE(2781), 2, sym_line_comment, sym_block_comment, - STATE(2853), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71290] = 11, + [85444] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5222), 1, - anon_sym_SEMI, - ACTIONS(5224), 1, - anon_sym_DASH_GT, - STATE(1282), 1, - sym_block, - STATE(2533), 1, - sym_where_clause, - STATE(3739), 1, + ACTIONS(6174), 1, + anon_sym_if, + STATE(3965), 1, sym_label, - STATE(2294), 2, + STATE(423), 2, + sym_if_expression, + sym_block, + STATE(2782), 2, sym_line_comment, sym_block_comment, - [71325] = 11, + [85471] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5226), 1, - anon_sym_SEMI, - STATE(1339), 1, - sym_block, - STATE(2536), 1, - sym_where_clause, - STATE(3739), 1, - sym_label, - STATE(2295), 2, + ACTIONS(901), 1, + anon_sym_DOT_DOT, + STATE(2783), 2, sym_line_comment, sym_block_comment, - [71360] = 11, + ACTIONS(903), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [85492] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(6134), 1, anon_sym_LBRACE, - ACTIONS(5228), 1, - anon_sym_SEMI, - ACTIONS(5230), 1, - anon_sym_DASH_GT, - STATE(1296), 1, - sym_block, - STATE(2534), 1, + STATE(713), 1, + sym_enum_variant_list, + STATE(3114), 1, + sym_type_parameters, + STATE(3747), 1, sym_where_clause, - STATE(3739), 1, - sym_label, - STATE(2296), 2, + STATE(2784), 2, sym_line_comment, sym_block_comment, - [71395] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [85521] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(3372), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2297), 2, + ACTIONS(6053), 1, + anon_sym_RBRACK, + ACTIONS(5560), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2785), 2, sym_line_comment, sym_block_comment, - [71430] = 10, + ACTIONS(4176), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [85544] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, + ACTIONS(5193), 1, anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5232), 1, - anon_sym_RBRACE, - ACTIONS(5234), 1, + ACTIONS(5983), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(6045), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2298), 2, + STATE(2786), 2, sym_line_comment, sym_block_comment, - STATE(2897), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71463] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [85569] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(3206), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2299), 2, + ACTIONS(6176), 1, + anon_sym_DASH_GT, + STATE(2787), 2, sym_line_comment, sym_block_comment, - [71498] = 11, + ACTIONS(4180), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [85590] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5654), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - anon_sym_SEMI, - ACTIONS(5238), 1, - anon_sym_DASH_GT, - STATE(1349), 1, - sym_block, - STATE(2537), 1, + STATE(690), 1, + sym_field_declaration_list, + STATE(3161), 1, + sym_type_parameters, + STATE(3675), 1, sym_where_clause, - STATE(3739), 1, - sym_label, - STATE(2300), 2, + STATE(2788), 2, sym_line_comment, sym_block_comment, - [71533] = 11, + [85619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5240), 1, - anon_sym_SEMI, - ACTIONS(5242), 1, + ACTIONS(6178), 1, anon_sym_DASH_GT, - STATE(1233), 1, - sym_block, - STATE(2531), 1, - sym_where_clause, - STATE(3739), 1, - sym_label, - STATE(2301), 2, + STATE(2789), 2, sym_line_comment, sym_block_comment, - [71568] = 11, + ACTIONS(4186), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [85640] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5244), 1, - anon_sym_SEMI, - STATE(703), 1, - sym_block, - STATE(2550), 1, - sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2302), 2, + ACTIONS(6180), 1, + anon_sym_DASH_GT, + STATE(2790), 2, sym_line_comment, sym_block_comment, - [71603] = 11, + ACTIONS(4192), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [85661] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6182), 1, anon_sym_SEMI, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - STATE(593), 1, - sym_block, - STATE(2568), 1, + STATE(763), 1, + sym_declaration_list, + STATE(3473), 1, sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2303), 2, + STATE(2791), 2, sym_line_comment, sym_block_comment, - [71638] = 11, + [85690] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(1242), 1, + STATE(779), 1, sym_declaration_list, - STATE(2423), 1, - sym_type_parameters, - STATE(2676), 1, + STATE(3092), 1, sym_trait_bounds, - STATE(3236), 1, + STATE(3594), 1, sym_where_clause, - STATE(2304), 2, + STATE(2792), 2, sym_line_comment, sym_block_comment, - [71673] = 11, + [85719] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(1142), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6184), 1, + anon_sym_SEMI, + STATE(1421), 1, sym_declaration_list, - STATE(2442), 1, - sym_type_parameters, - STATE(2637), 1, - sym_trait_bounds, - STATE(3342), 1, + STATE(3365), 1, sym_where_clause, - STATE(2305), 2, + STATE(2793), 2, sym_line_comment, sym_block_comment, - [71708] = 11, + [85748] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - ACTIONS(5250), 1, + ACTIONS(6186), 1, anon_sym_SEMI, - ACTIONS(5252), 1, - anon_sym_EQ, - STATE(2443), 1, - sym_type_parameters, - STATE(3097), 1, - sym_trait_bounds, - STATE(3349), 1, + STATE(1440), 1, + sym_declaration_list, + STATE(3366), 1, sym_where_clause, - STATE(2306), 2, + STATE(2794), 2, sym_line_comment, sym_block_comment, - [71743] = 11, + [85777] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - ACTIONS(5254), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6188), 1, anon_sym_SEMI, - STATE(772), 1, - sym_block, - STATE(2578), 1, + STATE(1479), 1, + sym_declaration_list, + STATE(3368), 1, sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2307), 2, + STATE(2795), 2, sym_line_comment, sym_block_comment, - [71778] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [85806] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2308), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6190), 1, + anon_sym_SEMI, + STATE(1523), 1, + sym_declaration_list, + STATE(3369), 1, + sym_where_clause, + STATE(2796), 2, sym_line_comment, sym_block_comment, - [71813] = 10, + [85835] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_PIPE, - ACTIONS(4628), 1, - anon_sym_LPAREN, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5256), 1, + ACTIONS(5304), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2309), 2, + ACTIONS(5705), 1, + anon_sym_for, + STATE(2797), 2, sym_line_comment, sym_block_comment, - [71846] = 11, + ACTIONS(3973), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [85858] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(6039), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(646), 1, - sym_declaration_list, - STATE(2475), 1, + STATE(1574), 1, + sym_enum_variant_list, + STATE(3173), 1, sym_type_parameters, - STATE(2678), 1, - sym_trait_bounds, - STATE(3239), 1, + STATE(3853), 1, sym_where_clause, - STATE(2310), 2, + STATE(2798), 2, sym_line_comment, sym_block_comment, - [71881] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [85887] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(3111), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2311), 2, + ACTIONS(5193), 1, + anon_sym_DOT_DOT, + ACTIONS(5985), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(6003), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2799), 2, sym_line_comment, sym_block_comment, - [71916] = 11, + [85912] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, anon_sym_LBRACE, - ACTIONS(5258), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6192), 1, anon_sym_SEMI, - ACTIONS(5260), 1, - anon_sym_DASH_GT, - STATE(1160), 1, - sym_block, - STATE(2522), 1, + STATE(1589), 1, + sym_declaration_list, + STATE(3545), 1, sym_where_clause, - STATE(3739), 1, - sym_label, - STATE(2312), 2, + STATE(2800), 2, sym_line_comment, sym_block_comment, - [71951] = 4, + [85941] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2313), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5670), 1, + anon_sym_for, + STATE(2801), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 8, + ACTIONS(3973), 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, - [71972] = 11, + [85964] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5262), 1, - anon_sym_SEMI, - STATE(1304), 1, - sym_block, - STATE(2535), 1, - sym_where_clause, - STATE(3739), 1, - sym_label, - STATE(2314), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5703), 1, + anon_sym_for, + STATE(2802), 2, sym_line_comment, sym_block_comment, - [72007] = 11, + ACTIONS(3973), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [85987] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5731), 1, anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(1180), 1, + STATE(1288), 1, sym_declaration_list, - STATE(2424), 1, - sym_type_parameters, - STATE(2657), 1, + STATE(3191), 1, sym_trait_bounds, - STATE(3195), 1, + STATE(3857), 1, sym_where_clause, - STATE(2315), 2, + STATE(2803), 2, sym_line_comment, sym_block_comment, - [72042] = 6, + [86016] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4991), 1, - anon_sym_BANG, - STATE(2316), 2, + STATE(2804), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(4010), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [72067] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5264), 1, - anon_sym_RBRACE, - STATE(2317), 2, - sym_line_comment, - sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72097] = 10, + [86035] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5270), 1, - anon_sym_RBRACK, - ACTIONS(5272), 1, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6134), 1, anon_sym_LBRACE, - STATE(2356), 1, - aux_sym_macro_definition_repeat1, - STATE(3373), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2318), 2, + STATE(810), 1, + sym_enum_variant_list, + STATE(3117), 1, + sym_type_parameters, + STATE(3681), 1, + sym_where_clause, + STATE(2805), 2, sym_line_comment, sym_block_comment, - [72129] = 10, + [86064] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5274), 1, - anon_sym_RBRACE, - STATE(2373), 1, - aux_sym_macro_definition_repeat1, - STATE(3395), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2319), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5598), 1, + anon_sym_for, + STATE(2806), 2, sym_line_comment, sym_block_comment, - [72161] = 10, + ACTIONS(3973), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [86087] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5276), 1, - anon_sym_RPAREN, - STATE(2329), 1, - aux_sym_macro_definition_repeat1, - STATE(3425), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2320), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5709), 1, + anon_sym_for, + STATE(2807), 2, sym_line_comment, sym_block_comment, - [72193] = 10, + ACTIONS(3973), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [86110] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5276), 1, - anon_sym_RBRACK, - STATE(2337), 1, - aux_sym_macro_definition_repeat1, - STATE(3427), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2321), 2, + ACTIONS(6194), 1, + anon_sym_DASH_GT, + STATE(2808), 2, sym_line_comment, sym_block_comment, - [72225] = 10, + ACTIONS(4156), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [86131] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5278), 1, - anon_sym_RBRACE, - STATE(2326), 1, - aux_sym_macro_definition_repeat1, - STATE(3167), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2322), 2, + ACTIONS(6196), 1, + anon_sym_DASH_GT, + STATE(2809), 2, sym_line_comment, sym_block_comment, - [72257] = 10, + ACTIONS(4144), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [86152] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(5280), 1, - anon_sym_RBRACE, - STATE(2369), 1, - aux_sym_macro_definition_repeat1, - STATE(3431), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2323), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6198), 1, + anon_sym_SEMI, + STATE(742), 1, + sym_declaration_list, + STATE(3290), 1, + sym_where_clause, + STATE(2810), 2, sym_line_comment, sym_block_comment, - [72289] = 7, + [86181] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5282), 1, + ACTIONS(5304), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2324), 2, + ACTIONS(5711), 1, + anon_sym_for, + STATE(2811), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, - anon_sym_RPAREN, + ACTIONS(3973), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - [72315] = 8, + anon_sym_where, + [86204] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5286), 1, - anon_sym_EQ, - ACTIONS(5284), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2325), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5713), 1, + anon_sym_for, + STATE(2812), 2, sym_line_comment, sym_block_comment, - STATE(3142), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [72343] = 10, + ACTIONS(3973), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [86227] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5288), 1, - anon_sym_RBRACE, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3232), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2326), 2, - sym_line_comment, - sym_block_comment, - [72375] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5290), 1, - aux_sym_line_comment_token1, - ACTIONS(5292), 1, - aux_sym_line_comment_token3, - ACTIONS(5294), 1, - anon_sym_BANG2, - ACTIONS(5296), 1, - anon_sym_SLASH2, - STATE(3524), 1, - sym__line_doc_comment_marker, - STATE(3539), 1, - sym__inner_line_doc_comment_marker, - STATE(3568), 1, - sym__outer_line_doc_comment_marker, - STATE(2327), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5715), 1, + anon_sym_for, + STATE(2813), 2, sym_line_comment, sym_block_comment, - [72407] = 9, + ACTIONS(3973), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [86250] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5298), 1, - anon_sym_RBRACE, - STATE(2328), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(6200), 1, + anon_sym_if, + STATE(4169), 1, + sym_label, + STATE(1763), 2, + sym_if_expression, + sym_block, + STATE(2814), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72437] = 10, + [86277] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5654), 1, anon_sym_LBRACE, - ACTIONS(5300), 1, - anon_sym_RPAREN, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3230), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2329), 2, + STATE(823), 1, + sym_field_declaration_list, + STATE(3050), 1, + sym_type_parameters, + STATE(3707), 1, + sym_where_clause, + STATE(2815), 2, sym_line_comment, sym_block_comment, - [72469] = 5, + [86306] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5302), 1, - sym_identifier, - STATE(2330), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6202), 1, + anon_sym_SEMI, + STATE(1312), 1, + sym_declaration_list, + STATE(3375), 1, + sym_where_clause, + STATE(2816), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72491] = 10, + [86335] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5614), 1, anon_sym_LBRACE, - ACTIONS(5304), 1, - anon_sym_RPAREN, - STATE(2374), 1, - aux_sym_macro_definition_repeat1, - STATE(3330), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2331), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6204), 1, + anon_sym_SEMI, + STATE(1314), 1, + sym_declaration_list, + STATE(3376), 1, + sym_where_clause, + STATE(2817), 2, sym_line_comment, sym_block_comment, - [72523] = 10, + [86364] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(5304), 1, - anon_sym_RBRACK, - STATE(2346), 1, - aux_sym_macro_definition_repeat1, - STATE(3332), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2332), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6206), 1, + anon_sym_SEMI, + STATE(845), 1, + sym_declaration_list, + STATE(3572), 1, + sym_where_clause, + STATE(2818), 2, sym_line_comment, sym_block_comment, - [72555] = 10, + [86393] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5076), 1, - anon_sym_LBRACE, - ACTIONS(5306), 1, + ACTIONS(5731), 1, + anon_sym_COLON, + ACTIONS(6208), 1, anon_sym_SEMI, - STATE(728), 1, - sym_field_declaration_list, - STATE(2890), 1, - sym_ordered_field_declaration_list, - STATE(3393), 1, + ACTIONS(6210), 1, + anon_sym_EQ, + STATE(3443), 1, + sym_trait_bounds, + STATE(3670), 1, sym_where_clause, - STATE(2333), 2, + STATE(2819), 2, sym_line_comment, sym_block_comment, - [72587] = 10, + [86422] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5308), 1, - anon_sym_RPAREN, - STATE(2350), 1, - aux_sym_macro_definition_repeat1, - STATE(3334), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2334), 2, + ACTIONS(6121), 1, + anon_sym_RBRACK, + ACTIONS(5580), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2820), 2, sym_line_comment, sym_block_comment, - [72619] = 10, + ACTIONS(4052), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [86445] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5308), 1, - anon_sym_RBRACK, - STATE(2352), 1, - aux_sym_macro_definition_repeat1, - STATE(3336), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2335), 2, + ACTIONS(5731), 1, + anon_sym_COLON, + ACTIONS(6083), 1, + anon_sym_GT, + ACTIONS(6085), 1, + anon_sym_COMMA, + STATE(3447), 1, + sym_trait_bounds, + STATE(3448), 1, + aux_sym_type_arguments_repeat1, + STATE(2821), 2, sym_line_comment, sym_block_comment, - [72651] = 9, + [86471] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5310), 1, - anon_sym_RBRACE, - STATE(2336), 2, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(6212), 1, + anon_sym_move, + STATE(490), 1, + sym_block, + STATE(4253), 1, + sym_label, + STATE(2822), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72681] = 10, + [86497] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5771), 1, anon_sym_LBRACE, - ACTIONS(5300), 1, - anon_sym_RBRACK, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3231), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2337), 2, + ACTIONS(6214), 1, + anon_sym_SEMI, + STATE(1272), 1, + sym_block, + STATE(4252), 1, + sym_label, + STATE(2823), 2, sym_line_comment, sym_block_comment, - [72713] = 9, + [86523] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5725), 1, anon_sym_LBRACE, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5314), 1, - anon_sym_STAR, - STATE(2861), 1, - sym_use_list, - STATE(3605), 1, - sym_type_arguments, - ACTIONS(5312), 2, - sym_identifier, - sym_super, - STATE(2338), 2, + ACTIONS(6216), 1, + anon_sym_SEMI, + STATE(639), 1, + sym_block, + STATE(4249), 1, + sym_label, + STATE(2824), 2, sym_line_comment, sym_block_comment, - [72743] = 5, + [86549] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5316), 1, - sym_identifier, - STATE(2339), 2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(5731), 1, + anon_sym_COLON, + STATE(3638), 1, + sym_trait_bounds, + ACTIONS(6218), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2825), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72765] = 9, + [86573] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5318), 1, - anon_sym_RBRACE, - STATE(2340), 2, + ACTIONS(6222), 1, + anon_sym_COLON_COLON, + ACTIONS(6224), 1, + anon_sym_as, + STATE(2826), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72795] = 7, + ACTIONS(6220), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86595] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5320), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2341), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(6226), 1, + anon_sym_SEMI, + STATE(1296), 1, + sym_block, + STATE(4252), 1, + sym_label, + STATE(2827), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [72821] = 5, + [86621] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5322), 1, - sym_identifier, - STATE(2342), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(6228), 1, + anon_sym_SEMI, + STATE(808), 1, + sym_block, + STATE(4249), 1, + sym_label, + STATE(2828), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72843] = 7, + [86647] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_DOT_DOT, - ACTIONS(4997), 1, - anon_sym_COLON_COLON, - ACTIONS(4995), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2343), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(1972), 1, + sym_block, + STATE(4254), 1, + sym_label, + STATE(2829), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [72869] = 8, + [86673] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5326), 1, + ACTIONS(6230), 1, + anon_sym_SEMI, + ACTIONS(6232), 1, anon_sym_COLON, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5324), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2344), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6236), 1, + anon_sym_EQ, + ACTIONS(6238), 1, + anon_sym_else, + STATE(2830), 2, sym_line_comment, sym_block_comment, - [72897] = 10, + [86699] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5270), 1, - anon_sym_RPAREN, - ACTIONS(5272), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5771), 1, anon_sym_LBRACE, - STATE(2359), 1, - aux_sym_macro_definition_repeat1, - STATE(3367), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2345), 2, + ACTIONS(6240), 1, + anon_sym_SEMI, + STATE(1322), 1, + sym_block, + STATE(4252), 1, + sym_label, + STATE(2831), 2, sym_line_comment, sym_block_comment, - [72929] = 10, + [86725] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5771), 1, anon_sym_LBRACE, - ACTIONS(5330), 1, - anon_sym_RBRACK, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3355), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2346), 2, + ACTIONS(6242), 1, + anon_sym_SEMI, + STATE(1330), 1, + sym_block, + STATE(4252), 1, + sym_label, + STATE(2832), 2, sym_line_comment, sym_block_comment, - [72961] = 10, + [86751] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, - anon_sym_LBRACE, - ACTIONS(5332), 1, - anon_sym_SEMI, - STATE(578), 1, - sym_field_declaration_list, - STATE(3081), 1, - sym_ordered_field_declaration_list, - STATE(3315), 1, - sym_where_clause, - STATE(2347), 2, + STATE(2833), 2, sym_line_comment, sym_block_comment, - [72993] = 10, + ACTIONS(6244), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [86769] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4839), 1, + ACTIONS(5193), 1, + anon_sym_DOT_DOT, + ACTIONS(5981), 1, + anon_sym_COLON, + ACTIONS(6007), 1, anon_sym_COLON_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_RBRACK, - ACTIONS(5340), 1, - anon_sym_LBRACE, - ACTIONS(5342), 1, - anon_sym_EQ, - STATE(3466), 1, - sym_delim_token_tree, - STATE(2348), 2, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2834), 2, sym_line_comment, sym_block_comment, - [73025] = 9, + [86793] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5344), 1, - anon_sym_RBRACE, - STATE(2349), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(6246), 1, + anon_sym_SEMI, + STATE(839), 1, + sym_block, + STATE(4249), 1, + sym_label, + STATE(2835), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73055] = 10, + [86819] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5771), 1, anon_sym_LBRACE, - ACTIONS(5346), 1, - anon_sym_RPAREN, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3356), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2350), 2, + ACTIONS(6248), 1, + anon_sym_SEMI, + STATE(1352), 1, + sym_block, + STATE(4252), 1, + sym_label, + STATE(2836), 2, sym_line_comment, sym_block_comment, - [73087] = 5, + [86845] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5348), 1, - anon_sym_trait, - STATE(2351), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(6250), 1, + anon_sym_SEMI, + STATE(1360), 1, + sym_block, + STATE(4252), 1, + sym_label, + STATE(2837), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73109] = 10, + [86871] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5771), 1, anon_sym_LBRACE, - ACTIONS(5346), 1, - anon_sym_RBRACK, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3357), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2352), 2, + ACTIONS(6252), 1, + anon_sym_SEMI, + STATE(1365), 1, + sym_block, + STATE(4252), 1, + sym_label, + STATE(2838), 2, sym_line_comment, sym_block_comment, - [73141] = 8, + [86897] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5352), 1, - anon_sym_COLON, - ACTIONS(5354), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5350), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2353), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(6254), 1, + anon_sym_SEMI, + STATE(1388), 1, + sym_block, + STATE(4252), 1, + sym_label, + STATE(2839), 2, sym_line_comment, sym_block_comment, - [73169] = 7, + [86923] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5354), 1, + ACTIONS(4282), 2, + anon_sym_LPAREN, anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2354), 2, + STATE(2840), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [73195] = 8, + ACTIONS(5376), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86943] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5771), 1, anon_sym_LBRACE, - ACTIONS(5358), 1, - anon_sym_EQ, - ACTIONS(5356), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2355), 2, + ACTIONS(6256), 1, + anon_sym_SEMI, + STATE(1394), 1, + sym_block, + STATE(4252), 1, + sym_label, + STATE(2841), 2, sym_line_comment, sym_block_comment, - STATE(3109), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [73223] = 10, + [86969] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, - anon_sym_RBRACK, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3207), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2356), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(1724), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(2842), 2, sym_line_comment, sym_block_comment, - [73255] = 10, + [86995] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5771), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, - anon_sym_RBRACE, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3302), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2357), 2, + ACTIONS(6258), 1, + anon_sym_SEMI, + STATE(1403), 1, + sym_block, + STATE(4252), 1, + sym_label, + STATE(2843), 2, sym_line_comment, sym_block_comment, - [73287] = 10, + [87021] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(4744), 1, anon_sym_LBRACE, - ACTIONS(5364), 1, - anon_sym_RBRACE, - STATE(2357), 1, - aux_sym_macro_definition_repeat1, - STATE(3421), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2358), 2, + ACTIONS(5925), 1, + anon_sym_STAR, + STATE(3310), 1, + sym_use_list, + ACTIONS(5923), 2, + sym_identifier, + sym_super, + STATE(2844), 2, sym_line_comment, sym_block_comment, - [73319] = 10, + [87045] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5771), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, - anon_sym_RPAREN, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3204), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2359), 2, + ACTIONS(6260), 1, + anon_sym_SEMI, + STATE(1407), 1, + sym_block, + STATE(4252), 1, + sym_label, + STATE(2845), 2, sym_line_comment, sym_block_comment, - [73351] = 10, + [87071] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5340), 1, - anon_sym_LBRACE, - ACTIONS(5366), 1, - anon_sym_RBRACK, - ACTIONS(5368), 1, - anon_sym_EQ, - STATE(3464), 1, - sym_delim_token_tree, - STATE(2360), 2, + ACTIONS(5731), 1, + anon_sym_COLON, + ACTIONS(6152), 1, + anon_sym_GT, + ACTIONS(6154), 1, + anon_sym_COMMA, + STATE(3274), 1, + sym_trait_bounds, + STATE(3275), 1, + aux_sym_type_arguments_repeat1, + STATE(2846), 2, sym_line_comment, sym_block_comment, - [73383] = 9, + [87097] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5314), 1, - anon_sym_STAR, - STATE(2861), 1, - sym_use_list, - STATE(3759), 1, - sym_type_arguments, - ACTIONS(5312), 2, - sym_identifier, - sym_super, - STATE(2361), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(6262), 1, + anon_sym_move, + STATE(2064), 1, + sym_block, + STATE(4254), 1, + sym_label, + STATE(2847), 2, sym_line_comment, sym_block_comment, - [73413] = 9, + [87123] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, + ACTIONS(5193), 1, anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5370), 1, - anon_sym_RBRACE, - STATE(2362), 2, + ACTIONS(6005), 1, + anon_sym_COLON, + ACTIONS(6007), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2848), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73443] = 9, + [87147] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5372), 1, - anon_sym_RBRACE, - STATE(2363), 2, + ACTIONS(6264), 1, + anon_sym_RPAREN, + ACTIONS(6266), 1, + anon_sym_COMMA, + STATE(3287), 1, + aux_sym_parameters_repeat1, + ACTIONS(5181), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2849), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73473] = 9, + [87171] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5374), 1, - anon_sym_RBRACE, - STATE(2364), 2, + ACTIONS(5594), 1, + anon_sym_RPAREN, + ACTIONS(6268), 1, + anon_sym_COLON, + ACTIONS(6270), 1, + anon_sym_PIPE, + ACTIONS(6272), 1, + anon_sym_COMMA, + STATE(3390), 1, + aux_sym_closure_parameters_repeat1, + STATE(2850), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73503] = 5, + [87197] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5376), 1, - sym_identifier, - STATE(2365), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(6274), 1, + anon_sym_SEMI, + STATE(522), 1, + sym_block, + STATE(4249), 1, + sym_label, + STATE(2851), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73525] = 10, + [87223] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5378), 1, - anon_sym_SEMI, - STATE(1239), 1, - sym_field_declaration_list, - STATE(2926), 1, - sym_ordered_field_declaration_list, - STATE(3225), 1, - sym_where_clause, - STATE(2366), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6276), 1, + anon_sym_RPAREN, + ACTIONS(6278), 1, + anon_sym_COLON, + ACTIONS(6280), 1, + anon_sym_COMMA, + STATE(3442), 1, + aux_sym_slice_pattern_repeat1, + STATE(2852), 2, sym_line_comment, sym_block_comment, - [73557] = 5, + [87249] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5380), 1, - anon_sym_trait, - STATE(2367), 2, + ACTIONS(3502), 1, + anon_sym_SQUOTE, + ACTIONS(6282), 1, + sym_identifier, + ACTIONS(6284), 1, + anon_sym_GT, + ACTIONS(6286), 1, + anon_sym_COMMA, + STATE(3417), 1, + sym_lifetime, + STATE(2853), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73579] = 10, + [87275] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_RBRACK, - ACTIONS(5340), 1, - anon_sym_LBRACE, - ACTIONS(5342), 1, - anon_sym_EQ, - STATE(3466), 1, - sym_delim_token_tree, - STATE(2368), 2, + STATE(2854), 2, sym_line_comment, sym_block_comment, - [73611] = 10, + ACTIONS(3832), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [87293] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(4582), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5382), 1, - anon_sym_RBRACE, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3307), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2369), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5207), 1, + anon_sym_COLON_COLON, + STATE(1913), 1, + sym_parameters, + STATE(2282), 1, + sym_type_arguments, + STATE(2855), 2, sym_line_comment, sym_block_comment, - [73643] = 8, + [87319] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - ACTIONS(5352), 1, + ACTIONS(5731), 1, anon_sym_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5350), 2, - anon_sym_RPAREN, + ACTIONS(6060), 1, + anon_sym_GT, + ACTIONS(6062), 1, anon_sym_COMMA, - STATE(2370), 2, + STATE(3423), 1, + sym_trait_bounds, + STATE(3424), 1, + aux_sym_type_arguments_repeat1, + STATE(2856), 2, sym_line_comment, sym_block_comment, - [73671] = 10, + [87345] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4879), 1, - anon_sym_COLON_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_RBRACK, - ACTIONS(5340), 1, - anon_sym_LBRACE, - ACTIONS(5342), 1, - anon_sym_EQ, - STATE(3466), 1, - sym_delim_token_tree, - STATE(2371), 2, + ACTIONS(6288), 1, + anon_sym_RPAREN, + ACTIONS(6290), 1, + anon_sym_COMMA, + STATE(3426), 1, + aux_sym_parameters_repeat1, + ACTIONS(5181), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2857), 2, sym_line_comment, sym_block_comment, - [73703] = 10, + [87369] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5771), 1, anon_sym_LBRACE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5384), 1, + ACTIONS(6292), 1, anon_sym_SEMI, - STATE(1169), 1, - sym_field_declaration_list, - STATE(2879), 1, - sym_ordered_field_declaration_list, - STATE(3423), 1, - sym_where_clause, - STATE(2372), 2, + STATE(1457), 1, + sym_block, + STATE(4252), 1, + sym_label, + STATE(2858), 2, sym_line_comment, sym_block_comment, - [73735] = 10, + [87395] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5386), 1, - anon_sym_RBRACE, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3209), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2373), 2, + ACTIONS(6294), 1, + anon_sym_RPAREN, + ACTIONS(6297), 1, + anon_sym_COMMA, + STATE(3508), 1, + aux_sym_parameters_repeat1, + ACTIONS(5181), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2859), 2, sym_line_comment, sym_block_comment, - [73767] = 10, + [87419] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5330), 1, - anon_sym_RPAREN, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3354), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2374), 2, + ACTIONS(6302), 1, + anon_sym_COLON_COLON, + ACTIONS(6304), 1, + anon_sym_as, + STATE(2860), 2, sym_line_comment, sym_block_comment, - [73799] = 9, + ACTIONS(6300), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87441] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5388), 1, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6306), 1, anon_sym_SEMI, - STATE(762), 1, - sym_declaration_list, - STATE(3135), 1, - sym_where_clause, - STATE(2375), 2, + ACTIONS(6308), 1, + anon_sym_COLON, + ACTIONS(6310), 1, + anon_sym_EQ, + ACTIONS(6312), 1, + anon_sym_else, + STATE(2861), 2, sym_line_comment, sym_block_comment, - [73828] = 9, + [87467] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3973), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5390), 1, - anon_sym_SEMI, - STATE(1334), 1, - sym_declaration_list, - STATE(2963), 1, - sym_where_clause, - STATE(2376), 2, + ACTIONS(5181), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6314), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2862), 2, sym_line_comment, sym_block_comment, - [73857] = 9, + [87489] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5392), 1, - anon_sym_SEMI, - STATE(1162), 1, - sym_declaration_list, - STATE(2874), 1, - sym_where_clause, - STATE(2377), 2, + ACTIONS(1349), 1, + anon_sym_RPAREN, + ACTIONS(6317), 1, + anon_sym_COMMA, + STATE(3432), 1, + aux_sym_parameters_repeat1, + ACTIONS(5181), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2863), 2, sym_line_comment, sym_block_comment, - [73886] = 9, + [87513] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5629), 1, anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1183), 1, - sym_enum_variant_list, - STATE(2659), 1, + ACTIONS(6319), 1, + anon_sym_EQ, + STATE(3460), 1, sym_type_parameters, - STATE(3223), 1, + STATE(4030), 1, sym_where_clause, - STATE(2378), 2, + STATE(2864), 2, sym_line_comment, sym_block_comment, - [73915] = 5, + [87539] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5005), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2379), 2, + STATE(2865), 2, sym_line_comment, sym_block_comment, - ACTIONS(3656), 4, - anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(6072), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, - [73936] = 9, + anon_sym_SQUOTE, + [87557] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5396), 1, - anon_sym_GT, - ACTIONS(5398), 1, - anon_sym_COMMA, - STATE(3024), 1, - sym_trait_bounds, - STATE(3025), 1, - aux_sym_type_arguments_repeat1, - STATE(2380), 2, + STATE(2866), 2, sym_line_comment, sym_block_comment, - [73965] = 5, + ACTIONS(4022), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [87575] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(907), 1, - anon_sym_DOT_DOT, - STATE(2381), 2, + ACTIONS(5731), 1, + anon_sym_COLON, + ACTIONS(6077), 1, + anon_sym_GT, + ACTIONS(6079), 1, + anon_sym_COMMA, + STATE(3437), 1, + sym_trait_bounds, + STATE(3438), 1, + aux_sym_type_arguments_repeat1, + STATE(2867), 2, sym_line_comment, sym_block_comment, - ACTIONS(909), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73986] = 9, + [87601] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(751), 1, - sym_enum_variant_list, - STATE(2664), 1, - sym_type_parameters, - STATE(3387), 1, - sym_where_clause, - STATE(2382), 2, + ACTIONS(5506), 1, + anon_sym_PIPE, + ACTIONS(6321), 1, + anon_sym_SEMI, + ACTIONS(6323), 1, + anon_sym_COLON, + ACTIONS(6325), 1, + anon_sym_EQ, + ACTIONS(6327), 1, + anon_sym_else, + STATE(2868), 2, sym_line_comment, sym_block_comment, - [74015] = 8, + [87627] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(5402), 1, - anon_sym_if, - STATE(3741), 1, - sym_label, - STATE(1814), 2, - sym_if_expression, + STATE(1976), 1, sym_block, - STATE(2383), 2, + STATE(4254), 1, + sym_label, + STATE(2869), 2, sym_line_comment, sym_block_comment, - [74042] = 5, + [87653] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, - anon_sym_DOT_DOT, - STATE(2384), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(6329), 1, + anon_sym_SEMI, + STATE(858), 1, + sym_block, + STATE(4249), 1, + sym_label, + STATE(2870), 2, sym_line_comment, sym_block_comment, - ACTIONS(913), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74063] = 9, + [87679] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5725), 1, anon_sym_LBRACE, - ACTIONS(5404), 1, + ACTIONS(6331), 1, anon_sym_SEMI, - STATE(712), 1, - sym_declaration_list, - STATE(2907), 1, - sym_where_clause, - STATE(2385), 2, + STATE(701), 1, + sym_block, + STATE(4249), 1, + sym_label, + STATE(2871), 2, sym_line_comment, sym_block_comment, - [74092] = 5, + [87705] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(915), 1, - anon_sym_DOT_DOT, - STATE(2386), 2, + ACTIONS(3484), 1, + anon_sym_POUND, + ACTIONS(6333), 1, + sym_identifier, + ACTIONS(6335), 1, + sym_integer_literal, + STATE(2253), 1, + aux_sym_mod_item_repeat1, + STATE(2254), 1, + sym_attribute_item, + STATE(2872), 2, sym_line_comment, sym_block_comment, - ACTIONS(917), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74113] = 9, + [87731] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, + ACTIONS(4744), 1, anon_sym_LBRACE, - STATE(651), 1, - sym_field_declaration_list, - STATE(2694), 1, - sym_type_parameters, - STATE(3346), 1, - sym_where_clause, - STATE(2387), 2, + ACTIONS(6339), 1, + anon_sym_STAR, + STATE(3504), 1, + sym_use_list, + ACTIONS(6337), 2, + sym_identifier, + sym_super, + STATE(2873), 2, sym_line_comment, sym_block_comment, - [74142] = 6, + [87755] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5068), 1, - anon_sym_for, - STATE(2388), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(6341), 1, + anon_sym_SEMI, + STATE(883), 1, + sym_block, + STATE(4249), 1, + sym_label, + STATE(2874), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74165] = 7, + [87781] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5354), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5324), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2389), 2, + STATE(2875), 2, sym_line_comment, sym_block_comment, - [74190] = 5, + ACTIONS(6343), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [87799] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5406), 1, - anon_sym_DASH_GT, - STATE(2390), 2, + STATE(2876), 2, sym_line_comment, sym_block_comment, - ACTIONS(3686), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(6345), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_as, - [74211] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, + anon_sym_where, + [87817] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5408), 1, - sym_identifier, - ACTIONS(5410), 1, - anon_sym_ref, - ACTIONS(5412), 1, - sym_mutable_specifier, - ACTIONS(5414), 1, - anon_sym_move, - STATE(238), 1, - sym_closure_parameters, - STATE(2391), 2, + STATE(2877), 2, sym_line_comment, sym_block_comment, - [74240] = 9, + ACTIONS(6347), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [87835] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5416), 1, - anon_sym_GT, - ACTIONS(5418), 1, - anon_sym_COMMA, - STATE(2898), 1, - sym_trait_bounds, - STATE(2899), 1, - aux_sym_type_arguments_repeat1, - STATE(2392), 2, + STATE(2878), 2, sym_line_comment, sym_block_comment, - [74269] = 6, + ACTIONS(6349), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [87853] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(5005), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5420), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2393), 2, + ACTIONS(6224), 1, + anon_sym_as, + ACTIONS(6351), 1, + anon_sym_COLON_COLON, + STATE(2879), 2, sym_line_comment, sym_block_comment, - [74292] = 6, + ACTIONS(6220), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87875] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4801), 1, - anon_sym_DOT_DOT, - ACTIONS(4803), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2394), 2, + ACTIONS(6224), 1, + anon_sym_as, + ACTIONS(6353), 1, + anon_sym_COLON_COLON, + STATE(2880), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [74315] = 6, + ACTIONS(6220), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87897] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5072), 1, - anon_sym_for, - STATE(2395), 2, + STATE(2881), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(4018), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_COLON, + anon_sym_EQ, anon_sym_where, - [74338] = 9, + [87915] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5725), 1, anon_sym_LBRACE, - ACTIONS(5423), 1, + ACTIONS(6355), 1, anon_sym_SEMI, - STATE(717), 1, - sym_declaration_list, - STATE(3042), 1, - sym_where_clause, - STATE(2396), 2, + STATE(618), 1, + sym_block, + STATE(4249), 1, + sym_label, + STATE(2882), 2, sym_line_comment, sym_block_comment, - [74367] = 5, + [87941] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5425), 1, - anon_sym_DASH_GT, - STATE(2397), 2, + STATE(2883), 2, sym_line_comment, sym_block_comment, - ACTIONS(3636), 5, + ACTIONS(4006), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [74388] = 8, + anon_sym_EQ, + anon_sym_where, + [87959] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5427), 1, - anon_sym_if, - STATE(3677), 1, - sym_label, - STATE(1471), 2, - sym_if_expression, - sym_block, - STATE(2398), 2, + ACTIONS(5506), 1, + anon_sym_PIPE, + ACTIONS(6357), 1, + anon_sym_SEMI, + ACTIONS(6359), 1, + anon_sym_COLON, + ACTIONS(6361), 1, + anon_sym_EQ, + ACTIONS(6363), 1, + anon_sym_else, + STATE(2884), 2, sym_line_comment, sym_block_comment, - [74415] = 9, + [87985] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5771), 1, anon_sym_LBRACE, - ACTIONS(5429), 1, + ACTIONS(6365), 1, anon_sym_SEMI, - STATE(1371), 1, - sym_declaration_list, - STATE(2967), 1, - sym_where_clause, - STATE(2399), 2, + STATE(1568), 1, + sym_block, + STATE(4252), 1, + sym_label, + STATE(2885), 2, sym_line_comment, sym_block_comment, - [74444] = 6, + [88011] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5433), 1, - anon_sym_COMMA, - STATE(2405), 1, - aux_sym_where_clause_repeat1, - STATE(2400), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_COLON_COLON, + STATE(2282), 1, + sym_type_arguments, + STATE(2789), 1, + sym_parameters, + STATE(2886), 2, sym_line_comment, sym_block_comment, - ACTIONS(5431), 4, + [88037] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6367), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(6369), 1, + anon_sym_COLON, + ACTIONS(6371), 1, anon_sym_EQ, - anon_sym_SQUOTE, - [74467] = 9, + ACTIONS(6373), 1, + anon_sym_else, + STATE(2887), 2, + sym_line_comment, + sym_block_comment, + [88063] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_SEMI, - STATE(758), 1, - sym_declaration_list, - STATE(3126), 1, - sym_where_clause, - STATE(2401), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(1720), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(2888), 2, sym_line_comment, sym_block_comment, - [74496] = 9, + [88089] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(1741), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(2889), 2, + sym_line_comment, + sym_block_comment, + [88115] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5725), 1, anon_sym_LBRACE, - ACTIONS(5437), 1, + ACTIONS(6375), 1, anon_sym_SEMI, - STATE(738), 1, - sym_declaration_list, - STATE(3127), 1, - sym_where_clause, - STATE(2402), 2, + STATE(558), 1, + sym_block, + STATE(4249), 1, + sym_label, + STATE(2890), 2, sym_line_comment, sym_block_comment, - [74525] = 6, + [88141] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 1, + ACTIONS(1365), 1, + anon_sym_RPAREN, + ACTIONS(6377), 1, + anon_sym_COMMA, + STATE(3332), 1, + aux_sym_parameters_repeat1, + ACTIONS(5181), 2, anon_sym_COLON, - ACTIONS(5439), 1, - anon_sym_EQ, - STATE(2403), 2, + anon_sym_PIPE, + STATE(2891), 2, sym_line_comment, sym_block_comment, - ACTIONS(3628), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [74548] = 7, + [88165] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5354), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5441), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2404), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(6379), 1, + anon_sym_SEMI, + STATE(1536), 1, + sym_block, + STATE(4252), 1, + sym_label, + STATE(2892), 2, sym_line_comment, sym_block_comment, - [74573] = 6, + [88191] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5443), 1, - anon_sym_COMMA, - STATE(2446), 1, - aux_sym_where_clause_repeat1, - STATE(2405), 2, + STATE(2893), 2, sym_line_comment, sym_block_comment, - ACTIONS(3481), 4, + ACTIONS(6381), 5, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ, - anon_sym_SQUOTE, - [74596] = 9, + anon_sym_COMMA, + anon_sym_where, + [88209] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5445), 1, - anon_sym_SEMI, - STATE(760), 1, - sym_declaration_list, - STATE(3131), 1, - sym_where_clause, - STATE(2406), 2, + ACTIONS(6383), 1, + anon_sym_RPAREN, + ACTIONS(6385), 1, + anon_sym_COMMA, + STATE(3508), 1, + aux_sym_parameters_repeat1, + ACTIONS(5181), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2894), 2, sym_line_comment, sym_block_comment, - [74625] = 9, + [88233] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_SEMI, - STATE(1373), 1, - sym_declaration_list, - STATE(2968), 1, - sym_where_clause, - STATE(2407), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(1984), 1, + sym_block, + STATE(4254), 1, + sym_label, + STATE(2895), 2, sym_line_comment, sym_block_comment, - [74654] = 8, + [88259] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - STATE(2408), 2, + STATE(2896), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [74681] = 9, + ACTIONS(6387), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [88277] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5449), 1, - anon_sym_SEMI, - STATE(766), 1, - sym_declaration_list, - STATE(3141), 1, - sym_where_clause, - STATE(2409), 2, + ACTIONS(5181), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2897), 2, sym_line_comment, sym_block_comment, - [74710] = 9, + ACTIONS(3973), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [88297] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5725), 1, anon_sym_LBRACE, - ACTIONS(5451), 1, + ACTIONS(6389), 1, anon_sym_SEMI, - STATE(1254), 1, - sym_declaration_list, - STATE(2939), 1, - sym_where_clause, - STATE(2410), 2, + STATE(580), 1, + sym_block, + STATE(4249), 1, + sym_label, + STATE(2898), 2, sym_line_comment, sym_block_comment, - [74739] = 9, + [88323] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5771), 1, anon_sym_LBRACE, - ACTIONS(5453), 1, + ACTIONS(6391), 1, anon_sym_SEMI, - STATE(1256), 1, - sym_declaration_list, - STATE(2940), 1, - sym_where_clause, - STATE(2411), 2, + STATE(1597), 1, + sym_block, + STATE(4252), 1, + sym_label, + STATE(2899), 2, sym_line_comment, sym_block_comment, - [74768] = 9, + [88349] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5629), 1, anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - STATE(1188), 1, - sym_field_declaration_list, - STATE(2661), 1, + ACTIONS(5733), 1, + anon_sym_EQ, + STATE(3444), 1, sym_type_parameters, - STATE(3255), 1, + STATE(4215), 1, sym_where_clause, - STATE(2412), 2, + STATE(2900), 2, sym_line_comment, sym_block_comment, - [74797] = 9, + [88375] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + STATE(2901), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6393), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5455), 1, + [88393] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, + anon_sym_SQUOTE, + ACTIONS(6395), 1, + sym_identifier, + ACTIONS(6397), 1, + anon_sym_GT, + ACTIONS(6399), 1, + anon_sym_COMMA, + STATE(3244), 1, + sym_lifetime, + STATE(2902), 2, + sym_line_comment, + sym_block_comment, + [88419] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2903), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6401), 5, anon_sym_SEMI, - STATE(608), 1, - sym_declaration_list, - STATE(2970), 1, - sym_where_clause, - STATE(2413), 2, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [88437] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2904), 2, sym_line_comment, sym_block_comment, - [74826] = 9, + ACTIONS(6403), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [88455] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + STATE(2905), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6405), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5457), 1, + [88473] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2906), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6407), 5, anon_sym_SEMI, - STATE(611), 1, - sym_declaration_list, - STATE(3104), 1, - sym_where_clause, - STATE(2414), 2, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [88491] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5207), 1, + anon_sym_COLON_COLON, + ACTIONS(5348), 1, + anon_sym_COLON, + STATE(2282), 1, + sym_type_arguments, + STATE(2914), 1, + sym_trait_bounds, + STATE(2907), 2, sym_line_comment, sym_block_comment, - [74855] = 5, + [88517] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(919), 1, - anon_sym_DOT_DOT, - STATE(2415), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(6409), 1, + anon_sym_move, + STATE(1776), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(2908), 2, + sym_line_comment, + sym_block_comment, + [88543] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2909), 2, sym_line_comment, sym_block_comment, - ACTIONS(921), 5, + ACTIONS(4048), 5, + anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_if, - [74876] = 9, + [88561] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(4224), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5459), 1, - anon_sym_SEMI, - STATE(1260), 1, - sym_declaration_list, - STATE(2942), 1, - sym_where_clause, - STATE(2416), 2, + ACTIONS(5508), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6411), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2910), 2, sym_line_comment, sym_block_comment, - [74905] = 9, + [88583] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5461), 1, - anon_sym_SEMI, - STATE(1262), 1, - sym_declaration_list, - STATE(2943), 1, - sym_where_clause, - STATE(2417), 2, + ACTIONS(6414), 1, + anon_sym_STAR_SLASH, + ACTIONS(6416), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(6418), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(6420), 1, + sym__block_comment_content, + STATE(3689), 1, + sym__block_doc_comment_marker, + STATE(2911), 2, sym_line_comment, sym_block_comment, - [74934] = 6, + [88609] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5420), 1, - anon_sym_RBRACK, - ACTIONS(5005), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2418), 2, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5207), 1, + anon_sym_COLON_COLON, + STATE(1664), 1, + sym_parameters, + STATE(2282), 1, + sym_type_arguments, + STATE(2912), 2, sym_line_comment, sym_block_comment, - ACTIONS(3656), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [74957] = 9, + [88635] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5463), 1, - anon_sym_SEMI, - STATE(1205), 1, - sym_declaration_list, - STATE(2915), 1, - sym_where_clause, - STATE(2419), 2, + STATE(2913), 2, sym_line_comment, sym_block_comment, - [74986] = 9, + ACTIONS(6422), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [88653] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5465), 1, - anon_sym_SEMI, - STATE(1209), 1, - sym_declaration_list, - STATE(2916), 1, - sym_where_clause, - STATE(2420), 2, + STATE(2914), 2, sym_line_comment, sym_block_comment, - [75015] = 9, + ACTIONS(6424), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [88671] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5725), 1, anon_sym_LBRACE, - ACTIONS(5467), 1, + ACTIONS(6426), 1, anon_sym_SEMI, - STATE(719), 1, - sym_declaration_list, - STATE(3044), 1, - sym_where_clause, - STATE(2421), 2, + STATE(635), 1, + sym_block, + STATE(4249), 1, + sym_label, + STATE(2915), 2, sym_line_comment, sym_block_comment, - [75044] = 9, + [88697] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5469), 1, - anon_sym_SEMI, - STATE(1226), 1, - sym_declaration_list, - STATE(2922), 1, - sym_where_clause, - STATE(2422), 2, + ACTIONS(5508), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2916), 2, sym_line_comment, sym_block_comment, - [75073] = 9, + ACTIONS(4224), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [88717] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5725), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(1294), 1, - sym_declaration_list, - STATE(2689), 1, - sym_trait_bounds, - STATE(3328), 1, - sym_where_clause, - STATE(2423), 2, + ACTIONS(6428), 1, + anon_sym_SEMI, + STATE(589), 1, + sym_block, + STATE(4249), 1, + sym_label, + STATE(2917), 2, sym_line_comment, sym_block_comment, - [75102] = 9, + [88743] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(5731), 1, anon_sym_COLON, - STATE(1231), 1, - sym_declaration_list, - STATE(2674), 1, + STATE(3918), 1, sym_trait_bounds, - STATE(3203), 1, - sym_where_clause, - STATE(2424), 2, + ACTIONS(6430), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2918), 2, sym_line_comment, sym_block_comment, - [75131] = 6, + [88767] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(4476), 2, + anon_sym_LPAREN, anon_sym_COLON_COLON, - ACTIONS(5132), 1, - anon_sym_for, - STATE(2425), 2, + STATE(2919), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75154] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, + ACTIONS(5376), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88787] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(5471), 1, - anon_sym_if, - STATE(3532), 1, - sym_label, - STATE(406), 2, - sym_if_expression, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + anon_sym_SEMI, + STATE(594), 1, sym_block, - STATE(2426), 2, + STATE(4249), 1, + sym_label, + STATE(2920), 2, sym_line_comment, sym_block_comment, - [75181] = 9, + [88813] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5473), 1, - anon_sym_SEMI, - STATE(1332), 1, - sym_declaration_list, - STATE(2962), 1, - sym_where_clause, - STATE(2427), 2, + STATE(2921), 2, sym_line_comment, sym_block_comment, - [75210] = 9, + ACTIONS(4082), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [88831] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5475), 1, - anon_sym_SEMI, - STATE(626), 1, - sym_declaration_list, - STATE(3137), 1, - sym_where_clause, - STATE(2428), 2, + ACTIONS(1363), 1, + anon_sym_RPAREN, + ACTIONS(6434), 1, + anon_sym_COMMA, + STATE(3529), 1, + aux_sym_parameters_repeat1, + ACTIONS(5181), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2922), 2, sym_line_comment, sym_block_comment, - [75239] = 7, + [88855] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5441), 2, - anon_sym_RPAREN, + ACTIONS(3502), 1, + anon_sym_SQUOTE, + ACTIONS(6436), 1, + sym_identifier, + ACTIONS(6438), 1, + anon_sym_GT, + ACTIONS(6440), 1, anon_sym_COMMA, - STATE(2429), 2, + STATE(3527), 1, + sym_lifetime, + STATE(2923), 2, sym_line_comment, sym_block_comment, - [75264] = 5, + [88881] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4757), 1, - anon_sym_DOT_DOT, - STATE(2430), 2, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5777), 1, + anon_sym_EQ, + STATE(3565), 1, + sym_type_parameters, + STATE(4212), 1, + sym_where_clause, + STATE(2924), 2, sym_line_comment, sym_block_comment, - ACTIONS(4755), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75285] = 9, + [88907] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5477), 1, + ACTIONS(5506), 1, + anon_sym_PIPE, + ACTIONS(6230), 1, anon_sym_SEMI, - STATE(609), 1, - sym_declaration_list, - STATE(3018), 1, - sym_where_clause, - STATE(2431), 2, + ACTIONS(6232), 1, + anon_sym_COLON, + ACTIONS(6236), 1, + anon_sym_EQ, + ACTIONS(6238), 1, + anon_sym_else, + STATE(2925), 2, sym_line_comment, sym_block_comment, - [75314] = 9, + [88933] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5771), 1, anon_sym_LBRACE, - ACTIONS(5479), 1, + ACTIONS(6442), 1, anon_sym_SEMI, - STATE(615), 1, - sym_declaration_list, - STATE(2903), 1, - sym_where_clause, - STATE(2432), 2, + STATE(1644), 1, + sym_block, + STATE(4252), 1, + sym_label, + STATE(2926), 2, sym_line_comment, sym_block_comment, - [75343] = 5, + [88959] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4973), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2433), 2, + STATE(2927), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 4, - anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(6444), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, - [75364] = 9, + anon_sym_where, + [88977] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5481), 1, + STATE(2928), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6446), 5, anon_sym_SEMI, - STATE(521), 1, - sym_declaration_list, - STATE(3088), 1, - sym_where_clause, - STATE(2434), 2, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [88995] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2929), 2, sym_line_comment, sym_block_comment, - [75393] = 6, + ACTIONS(4168), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [89013] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5483), 1, - anon_sym_RBRACK, - ACTIONS(4973), 2, + ACTIONS(6234), 1, anon_sym_PIPE, - anon_sym_COMMA, - STATE(2435), 2, + ACTIONS(6321), 1, + anon_sym_SEMI, + ACTIONS(6323), 1, + anon_sym_COLON, + ACTIONS(6325), 1, + anon_sym_EQ, + ACTIONS(6327), 1, + anon_sym_else, + STATE(2930), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [75416] = 9, + [89039] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5486), 1, - anon_sym_SEMI, - STATE(523), 1, - sym_declaration_list, - STATE(3106), 1, - sym_where_clause, - STATE(2436), 2, + STATE(2931), 2, sym_line_comment, sym_block_comment, - [75445] = 9, + ACTIONS(4030), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [89057] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5629), 1, + anon_sym_LT, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5488), 1, - anon_sym_SEMI, - STATE(618), 1, - sym_declaration_list, - STATE(2964), 1, + ACTIONS(6448), 1, + anon_sym_EQ, + STATE(3570), 1, + sym_type_parameters, + STATE(4234), 1, sym_where_clause, - STATE(2437), 2, + STATE(2932), 2, sym_line_comment, sym_block_comment, - [75474] = 9, + [89083] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(681), 1, - sym_declaration_list, - STATE(2665), 1, - sym_trait_bounds, - STATE(3385), 1, - sym_where_clause, - STATE(2438), 2, + ACTIONS(6314), 1, + anon_sym_RBRACK, + ACTIONS(3973), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(5181), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2933), 2, sym_line_comment, sym_block_comment, - [75503] = 6, + [89105] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5112), 1, - anon_sym_for, - STATE(2439), 2, + STATE(2934), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(4014), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_COLON, + anon_sym_EQ, anon_sym_where, - [75526] = 8, + [89123] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - ACTIONS(5490), 1, + ACTIONS(5731), 1, + anon_sym_COLON, + STATE(3539), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3918), 1, + sym_trait_bounds, + ACTIONS(6430), 2, anon_sym_GT, - ACTIONS(5492), 1, anon_sym_COMMA, - STATE(2984), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3518), 2, - anon_sym_PLUS, - anon_sym_as, - STATE(2440), 2, + STATE(2935), 2, sym_line_comment, sym_block_comment, - [75553] = 5, + [89147] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5494), 1, - anon_sym_DASH_GT, - STATE(2441), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3648), 5, + ACTIONS(5350), 1, + anon_sym_EQ, + ACTIONS(5731), 1, anon_sym_COLON, - anon_sym_PLUS, + STATE(3477), 1, + sym_trait_bounds, + ACTIONS(5352), 2, anon_sym_GT, anon_sym_COMMA, - anon_sym_as, - [75574] = 9, + STATE(2936), 2, + sym_line_comment, + sym_block_comment, + [89171] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5725), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(1172), 1, - sym_declaration_list, - STATE(2655), 1, - sym_trait_bounds, - STATE(3159), 1, - sym_where_clause, - STATE(2442), 2, + ACTIONS(6450), 1, + anon_sym_SEMI, + STATE(738), 1, + sym_block, + STATE(4249), 1, + sym_label, + STATE(2937), 2, sym_line_comment, sym_block_comment, - [75603] = 9, + [89197] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5496), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(6452), 1, anon_sym_SEMI, - ACTIONS(5498), 1, - anon_sym_EQ, - STATE(2881), 1, - sym_trait_bounds, - STATE(3179), 1, - sym_where_clause, - STATE(2443), 2, + STATE(626), 1, + sym_block, + STATE(4249), 1, + sym_label, + STATE(2938), 2, sym_line_comment, sym_block_comment, - [75632] = 9, + [89223] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5394), 1, + ACTIONS(4744), 1, anon_sym_LBRACE, - STATE(1133), 1, - sym_enum_variant_list, - STATE(2635), 1, - sym_type_parameters, - STATE(3310), 1, - sym_where_clause, - STATE(2444), 2, + ACTIONS(6456), 1, + anon_sym_STAR, + STATE(3288), 1, + sym_use_list, + ACTIONS(6454), 2, + sym_identifier, + sym_super, + STATE(2939), 2, sym_line_comment, sym_block_comment, - [75661] = 9, + [89247] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5500), 1, - anon_sym_SEMI, - STATE(1136), 1, - sym_declaration_list, - STATE(3080), 1, - sym_where_clause, - STATE(2445), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_COLON_COLON, + STATE(2282), 1, + sym_type_arguments, + STATE(2355), 1, + sym_parameters, + STATE(2940), 2, sym_line_comment, sym_block_comment, - [75690] = 5, + [89273] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5504), 1, + ACTIONS(6411), 1, + anon_sym_RBRACK, + ACTIONS(4224), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(5508), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(2446), 3, + STATE(2941), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - ACTIONS(5502), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [75711] = 6, + [89295] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5116), 1, - anon_sym_for, - STATE(2447), 2, + ACTIONS(5506), 1, + anon_sym_PIPE, + ACTIONS(6458), 1, + anon_sym_SEMI, + ACTIONS(6460), 1, + anon_sym_COLON, + ACTIONS(6462), 1, + anon_sym_EQ, + ACTIONS(6464), 1, + anon_sym_else, + STATE(2942), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75734] = 6, + [89321] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5078), 1, - anon_sym_for, - STATE(2448), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + ACTIONS(5725), 1, + anon_sym_LBRACE, + ACTIONS(6466), 1, + anon_sym_SEMI, + STATE(549), 1, + sym_block, + STATE(4249), 1, + sym_label, + STATE(2943), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75757] = 5, + [89347] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5507), 1, - anon_sym_DASH_GT, - STATE(2449), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + STATE(2944), 2, sym_line_comment, sym_block_comment, - ACTIONS(3660), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(6468), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_as, - [75778] = 6, + [89366] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5118), 1, - anon_sym_for, - STATE(2450), 2, + ACTIONS(3502), 1, + anon_sym_SQUOTE, + ACTIONS(6470), 1, + sym_identifier, + ACTIONS(6472), 1, + anon_sym_GT, + STATE(3842), 1, + sym_lifetime, + STATE(2945), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75801] = 9, + [89389] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5509), 1, + ACTIONS(3502), 1, + anon_sym_SQUOTE, + ACTIONS(6470), 1, + sym_identifier, + ACTIONS(6474), 1, anon_sym_GT, - ACTIONS(5511), 1, - anon_sym_COMMA, - STATE(3002), 1, - sym_trait_bounds, - STATE(3003), 1, - aux_sym_type_arguments_repeat1, - STATE(2451), 2, + STATE(3842), 1, + sym_lifetime, + STATE(2946), 2, sym_line_comment, sym_block_comment, - [75830] = 6, + [89412] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3682), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4973), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5483), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2452), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6476), 1, + sym_identifier, + ACTIONS(6478), 1, + sym_super, + STATE(4049), 1, + sym_type_arguments, + STATE(2947), 2, sym_line_comment, sym_block_comment, - [75853] = 9, + [89435] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5513), 1, - anon_sym_SEMI, - STATE(1179), 1, - sym_declaration_list, - STATE(2882), 1, - sym_where_clause, - STATE(2453), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(2066), 1, + sym_block, + STATE(4254), 1, + sym_label, + STATE(2948), 2, sym_line_comment, sym_block_comment, - [75882] = 9, + [89458] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5400), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - STATE(588), 1, - sym_enum_variant_list, - STATE(2650), 1, - sym_type_parameters, - STATE(3347), 1, - sym_where_clause, - STATE(2454), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(2068), 1, + sym_block, + STATE(4254), 1, + sym_label, + STATE(2949), 2, sym_line_comment, sym_block_comment, - [75911] = 9, + [89481] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - STATE(1144), 1, - sym_field_declaration_list, - STATE(2639), 1, - sym_type_parameters, - STATE(3352), 1, - sym_where_clause, - STATE(2455), 2, + ACTIONS(6480), 1, + anon_sym_DQUOTE, + STATE(2960), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6482), 2, + sym_string_content, + sym_escape_sequence, + STATE(2950), 2, sym_line_comment, sym_block_comment, - [75940] = 6, + [89502] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5122), 1, - anon_sym_for, - STATE(2456), 2, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(489), 1, + sym_block, + STATE(4253), 1, + sym_label, + STATE(2951), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75963] = 9, + [89525] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - STATE(777), 1, - sym_field_declaration_list, - STATE(2691), 1, - sym_type_parameters, - STATE(3340), 1, + ACTIONS(5631), 1, + anon_sym_where, + STATE(666), 1, + sym_declaration_list, + STATE(3620), 1, sym_where_clause, - STATE(2457), 2, + STATE(2952), 2, sym_line_comment, sym_block_comment, - [75992] = 9, + [89548] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5515), 1, - anon_sym_SEMI, - ACTIONS(5517), 1, - anon_sym_EQ, - STATE(3016), 1, - sym_trait_bounds, - STATE(3212), 1, - sym_where_clause, - STATE(2458), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(4060), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(2953), 2, sym_line_comment, sym_block_comment, - [76021] = 4, + [89571] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2459), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(2074), 1, + sym_block, + STATE(4254), 1, + sym_label, + STATE(2954), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [76040] = 9, + [89594] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(6484), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, + anon_sym_LBRACK, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(5519), 1, - anon_sym_SEMI, - STATE(563), 1, - sym_declaration_list, - STATE(3095), 1, - sym_where_clause, - STATE(2460), 2, + STATE(1225), 1, + sym_delim_token_tree, + STATE(2955), 2, sym_line_comment, sym_block_comment, - [76069] = 9, + [89617] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5521), 1, - anon_sym_SEMI, - STATE(1312), 1, - sym_declaration_list, - STATE(2956), 1, - sym_where_clause, - STATE(2461), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(2076), 1, + sym_block, + STATE(4254), 1, + sym_label, + STATE(2956), 2, sym_line_comment, sym_block_comment, - [76098] = 5, + [89640] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5523), 1, - anon_sym_DASH_GT, - STATE(2462), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(1886), 1, + sym_block, + STATE(4254), 1, + sym_label, + STATE(2957), 2, sym_line_comment, sym_block_comment, - ACTIONS(3642), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76119] = 7, + [89663] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5324), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2463), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(4075), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(2958), 2, sym_line_comment, sym_block_comment, - [76144] = 8, + [89686] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(5525), 1, - anon_sym_if, - STATE(3740), 1, - sym_label, - STATE(486), 2, - sym_if_expression, + STATE(2079), 1, sym_block, - STATE(2464), 2, + STATE(4254), 1, + sym_label, + STATE(2959), 2, sym_line_comment, sym_block_comment, - [76171] = 5, + [89709] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_DOT_DOT, - STATE(2465), 2, + ACTIONS(6490), 1, + anon_sym_DQUOTE, + STATE(3230), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6482), 2, + sym_string_content, + sym_escape_sequence, + STATE(2960), 2, sym_line_comment, sym_block_comment, - ACTIONS(4789), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [76192] = 9, + [89730] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(6484), 1, + anon_sym_LPAREN, + ACTIONS(6486), 1, + anon_sym_LBRACK, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(5527), 1, - anon_sym_SEMI, - STATE(1314), 1, - sym_declaration_list, - STATE(2957), 1, - sym_where_clause, - STATE(2466), 2, + STATE(1218), 1, + sym_delim_token_tree, + STATE(2961), 2, sym_line_comment, sym_block_comment, - [76221] = 9, + [89753] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5939), 1, + anon_sym_LPAREN, + ACTIONS(5941), 1, + anon_sym_LBRACK, + ACTIONS(5945), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(568), 1, - sym_declaration_list, - STATE(2692), 1, - sym_trait_bounds, - STATE(3256), 1, - sym_where_clause, - STATE(2467), 2, + STATE(1703), 1, + sym_delim_token_tree, + STATE(2962), 2, sym_line_comment, sym_block_comment, - [76250] = 5, + [89776] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5529), 1, - anon_sym_DASH_GT, - STATE(2468), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6478), 1, + sym_super, + ACTIONS(6492), 1, + sym_identifier, + STATE(2390), 1, + sym_type_arguments, + STATE(2963), 2, sym_line_comment, sym_block_comment, - ACTIONS(3666), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76271] = 4, + [89799] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2469), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6478), 1, + sym_super, + ACTIONS(6492), 1, + sym_identifier, + STATE(2383), 1, + sym_type_arguments, + STATE(2964), 2, sym_line_comment, sym_block_comment, - ACTIONS(5057), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [76290] = 5, + [89822] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5531), 1, - anon_sym_DASH_GT, - STATE(2470), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6478), 1, + sym_super, + ACTIONS(6494), 1, + sym_identifier, + STATE(4049), 1, + sym_type_arguments, + STATE(2965), 2, sym_line_comment, sym_block_comment, - ACTIONS(3672), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76311] = 9, + [89845] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5533), 1, - anon_sym_SEMI, - STATE(1328), 1, - sym_declaration_list, - STATE(2959), 1, - sym_where_clause, - STATE(2471), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6478), 1, + sym_super, + ACTIONS(6494), 1, + sym_identifier, + STATE(4065), 1, + sym_type_arguments, + STATE(2966), 2, sym_line_comment, sym_block_comment, - [76340] = 9, + [89868] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5535), 1, - anon_sym_SEMI, - STATE(599), 1, - sym_declaration_list, - STATE(3130), 1, - sym_where_clause, - STATE(2472), 2, + STATE(2967), 2, sym_line_comment, sym_block_comment, - [76369] = 9, + ACTIONS(945), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [89885] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5537), 1, + ACTIONS(6496), 1, anon_sym_SEMI, - STATE(1330), 1, - sym_declaration_list, - STATE(2960), 1, - sym_where_clause, - STATE(2473), 2, + ACTIONS(6498), 1, + anon_sym_EQ, + ACTIONS(6500), 1, + anon_sym_else, + STATE(2968), 2, sym_line_comment, sym_block_comment, - [76398] = 9, + [89908] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5539), 1, - anon_sym_GT, - ACTIONS(5541), 1, - anon_sym_COMMA, - STATE(3048), 1, - sym_trait_bounds, - STATE(3050), 1, - aux_sym_type_arguments_repeat1, - STATE(2474), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + STATE(4049), 1, + sym_type_arguments, + ACTIONS(6502), 2, + sym_identifier, + sym_super, + STATE(2969), 2, sym_line_comment, sym_block_comment, - [76427] = 9, + [89929] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(731), 1, - sym_declaration_list, - STATE(2604), 1, - sym_trait_bounds, - STATE(3343), 1, + ACTIONS(6504), 1, + anon_sym_SEMI, + STATE(4271), 1, sym_where_clause, - STATE(2475), 2, + STATE(2970), 2, sym_line_comment, sym_block_comment, - [76456] = 4, + [89952] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2476), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(2182), 1, + sym_block, + STATE(4254), 1, + sym_label, + STATE(2971), 2, sym_line_comment, sym_block_comment, - ACTIONS(5543), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76474] = 8, + [89975] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5545), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6506), 1, anon_sym_SEMI, - STATE(706), 1, - sym_block, - STATE(3736), 1, - sym_label, - STATE(2477), 2, + STATE(4052), 1, + sym_where_clause, + STATE(2972), 2, sym_line_comment, sym_block_comment, - [76500] = 7, + [89998] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5547), 1, - anon_sym_RPAREN, - ACTIONS(5549), 1, - anon_sym_COMMA, - STATE(3079), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2478), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + STATE(1476), 1, + sym_declaration_list, + STATE(3916), 1, + sym_where_clause, + STATE(2973), 2, sym_line_comment, sym_block_comment, - [76524] = 6, + [90021] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3886), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(5015), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5551), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2479), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6508), 1, + anon_sym_SEMI, + STATE(3999), 1, + sym_where_clause, + STATE(2974), 2, sym_line_comment, sym_block_comment, - [76546] = 6, + [90044] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5556), 1, - anon_sym_COLON_COLON, - ACTIONS(5558), 1, - anon_sym_as, - STATE(2480), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + STATE(4065), 1, + sym_type_arguments, + ACTIONS(6502), 2, + sym_identifier, + sym_super, + STATE(2975), 2, sym_line_comment, sym_block_comment, - ACTIONS(5554), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76568] = 7, + [90065] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(5562), 1, - anon_sym_STAR, - STATE(3027), 1, - sym_use_list, - ACTIONS(5560), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + STATE(4049), 1, + sym_type_arguments, + ACTIONS(5923), 2, sym_identifier, sym_super, - STATE(2481), 2, + STATE(2976), 2, sym_line_comment, sym_block_comment, - [76592] = 6, + [90086] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5566), 1, - anon_sym_COLON_COLON, - ACTIONS(5568), 1, - anon_sym_as, - STATE(2482), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + STATE(1488), 1, + sym_declaration_list, + STATE(3603), 1, + sym_where_clause, + STATE(2977), 2, sym_line_comment, sym_block_comment, - ACTIONS(5564), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76614] = 4, + [90109] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2483), 2, + ACTIONS(6510), 1, + anon_sym_COLON_COLON, + STATE(2978), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(5420), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90128] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6276), 1, + anon_sym_RPAREN, + ACTIONS(6280), 1, anon_sym_COMMA, - anon_sym_as, - [76632] = 4, + STATE(3442), 1, + aux_sym_slice_pattern_repeat1, + STATE(2979), 2, + sym_line_comment, + sym_block_comment, + [90151] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2484), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(2100), 1, + sym_block, + STATE(4254), 1, + sym_label, + STATE(2980), 2, sym_line_comment, sym_block_comment, - ACTIONS(5570), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76650] = 4, + [90174] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2485), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6478), 1, + sym_super, + ACTIONS(6512), 1, + sym_identifier, + STATE(2390), 1, + sym_type_arguments, + STATE(2981), 2, sym_line_comment, sym_block_comment, - ACTIONS(5572), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76668] = 4, + [90197] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2486), 2, + ACTIONS(3590), 1, + anon_sym_PLUS, + STATE(2982), 2, sym_line_comment, sym_block_comment, - ACTIONS(5574), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(6514), 3, + anon_sym_COLON, + anon_sym_GT, anon_sym_COMMA, - anon_sym_where, - [76686] = 8, + [90216] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3230), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1522), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2487), 2, + ACTIONS(6516), 1, + anon_sym_SEMI, + ACTIONS(6518), 1, + anon_sym_EQ, + ACTIONS(6520), 1, + anon_sym_else, + STATE(2983), 2, sym_line_comment, sym_block_comment, - [76712] = 4, + [90239] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2488), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(1751), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(2984), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76730] = 8, + [90262] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, - anon_sym_SEMI, - STATE(550), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(1725), 1, sym_block, - STATE(3736), 1, + STATE(4169), 1, sym_label, - STATE(2489), 2, + STATE(2985), 2, sym_line_comment, sym_block_comment, - [76756] = 6, + [90285] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5568), 1, - anon_sym_as, - ACTIONS(5578), 1, - anon_sym_COLON_COLON, - STATE(2490), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6522), 1, + anon_sym_SEMI, + STATE(4061), 1, + sym_where_clause, + STATE(2986), 2, sym_line_comment, sym_block_comment, - ACTIONS(5564), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76778] = 4, + [90308] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2491), 2, + ACTIONS(6524), 1, + anon_sym_DQUOTE, + STATE(2991), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6482), 2, + sym_string_content, + sym_escape_sequence, + STATE(2987), 2, sym_line_comment, sym_block_comment, - ACTIONS(3678), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [76796] = 4, + [90329] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2492), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(2105), 1, + sym_block, + STATE(4254), 1, + sym_label, + STATE(2988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3692), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [76814] = 4, + [90352] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2493), 2, + ACTIONS(6526), 1, + anon_sym_COLON_COLON, + STATE(2989), 2, sym_line_comment, sym_block_comment, - ACTIONS(3702), 5, - anon_sym_LPAREN, + ACTIONS(5420), 3, anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_COLON_COLON, anon_sym_if, - [76832] = 8, + [90371] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(6528), 1, + anon_sym_LPAREN, + ACTIONS(6530), 1, + anon_sym_LBRACK, + ACTIONS(6532), 1, anon_sym_LBRACE, - ACTIONS(5580), 1, - anon_sym_SEMI, - STATE(555), 1, - sym_block, - STATE(3736), 1, - sym_label, - STATE(2494), 2, + STATE(2109), 1, + sym_delim_token_tree, + STATE(2990), 2, sym_line_comment, sym_block_comment, - [76858] = 4, + [90394] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2495), 2, + ACTIONS(6534), 1, + anon_sym_DQUOTE, + STATE(3230), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6482), 2, + sym_string_content, + sym_escape_sequence, + STATE(2991), 2, sym_line_comment, sym_block_comment, - ACTIONS(3710), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [76876] = 4, + [90415] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2496), 2, + ACTIONS(6528), 1, + anon_sym_LPAREN, + ACTIONS(6530), 1, + anon_sym_LBRACK, + ACTIONS(6532), 1, + anon_sym_LBRACE, + STATE(2112), 1, + sym_delim_token_tree, + STATE(2992), 2, sym_line_comment, sym_block_comment, - ACTIONS(5582), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76894] = 4, + [90438] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2497), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5584), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6536), 1, anon_sym_EQ, + ACTIONS(6538), 2, + anon_sym_GT, anon_sym_COMMA, - anon_sym_where, - [76912] = 8, + STATE(2993), 2, + sym_line_comment, + sym_block_comment, + [90459] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5586), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6478), 1, + sym_super, + ACTIONS(6540), 1, sym_identifier, - ACTIONS(5588), 1, - anon_sym_GT, - ACTIONS(5590), 1, - anon_sym_COMMA, - STATE(3051), 1, - sym_lifetime, - STATE(2498), 2, + STATE(2390), 1, + sym_type_arguments, + STATE(2994), 2, sym_line_comment, sym_block_comment, - [76938] = 8, + [90482] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1433), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2499), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6478), 1, + sym_super, + ACTIONS(6540), 1, + sym_identifier, + STATE(2383), 1, + sym_type_arguments, + STATE(2995), 2, sym_line_comment, sym_block_comment, - [76964] = 4, + [90505] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2500), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5923), 1, + sym_super, + ACTIONS(6494), 1, + sym_identifier, + STATE(4049), 1, + sym_type_arguments, + STATE(2996), 2, sym_line_comment, sym_block_comment, - ACTIONS(5592), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76982] = 4, + [90528] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2501), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5923), 1, + sym_super, + ACTIONS(6494), 1, + sym_identifier, + STATE(4065), 1, + sym_type_arguments, + STATE(2997), 2, sym_line_comment, sym_block_comment, - ACTIONS(5594), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77000] = 6, + [90551] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5568), 1, - anon_sym_as, - ACTIONS(5596), 1, - anon_sym_COLON_COLON, - STATE(2502), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6542), 1, + anon_sym_SEMI, + STATE(4109), 1, + sym_where_clause, + STATE(2998), 2, sym_line_comment, sym_block_comment, - ACTIONS(5564), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [77022] = 8, + [90574] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5598), 1, - anon_sym_SEMI, - STATE(560), 1, - sym_block, - STATE(3736), 1, - sym_label, - STATE(2503), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6544), 1, + anon_sym_RPAREN, + ACTIONS(6546), 1, + anon_sym_COMMA, + STATE(3276), 1, + aux_sym_slice_pattern_repeat1, + STATE(2999), 2, sym_line_comment, sym_block_comment, - [77048] = 8, + [90597] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4969), 1, - anon_sym_RPAREN, - ACTIONS(5600), 1, - anon_sym_COLON, - ACTIONS(5602), 1, - anon_sym_PIPE, - ACTIONS(5604), 1, - anon_sym_COMMA, - STATE(3083), 1, - aux_sym_closure_parameters_repeat1, - STATE(2504), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6039), 1, + anon_sym_LBRACE, + STATE(1493), 1, + sym_enum_variant_list, + STATE(3619), 1, + sym_where_clause, + STATE(3000), 2, sym_line_comment, sym_block_comment, - [77074] = 7, + [90620] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3222), 1, - sym_trait_bounds, - ACTIONS(5606), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2505), 2, + ACTIONS(6548), 1, + anon_sym_LPAREN, + ACTIONS(6550), 1, + anon_sym_LBRACK, + ACTIONS(6552), 1, + anon_sym_LBRACE, + STATE(3134), 1, + sym_token_tree, + STATE(3001), 2, sym_line_comment, sym_block_comment, - [77098] = 4, + [90643] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2506), 2, + ACTIONS(6554), 1, + anon_sym_DQUOTE, + STATE(3005), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6482), 2, + sym_string_content, + sym_escape_sequence, + STATE(3002), 2, sym_line_comment, sym_block_comment, - ACTIONS(5608), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77116] = 8, + [90664] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(5610), 1, - anon_sym_move, - STATE(481), 1, + STATE(4074), 1, sym_block, - STATE(3740), 1, + STATE(4169), 1, sym_label, - STATE(2507), 2, + STATE(3003), 2, sym_line_comment, sym_block_comment, - [77142] = 4, + [90687] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2508), 2, + ACTIONS(6556), 1, + anon_sym_DQUOTE, + STATE(3230), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6482), 2, + sym_string_content, + sym_escape_sequence, + STATE(3004), 2, sym_line_comment, sym_block_comment, - ACTIONS(3554), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77160] = 8, + [90708] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5612), 1, - anon_sym_SEMI, - ACTIONS(5614), 1, - anon_sym_COLON, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5618), 1, - anon_sym_EQ, - ACTIONS(5620), 1, - anon_sym_else, - STATE(2509), 2, + ACTIONS(6558), 1, + anon_sym_DQUOTE, + STATE(3230), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6482), 2, + sym_string_content, + sym_escape_sequence, + STATE(3005), 2, sym_line_comment, sym_block_comment, - [77186] = 5, + [90729] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2510), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5629), 1, + anon_sym_LT, + STATE(2615), 1, + sym_parameters, + STATE(3815), 1, + sym_type_parameters, + STATE(3006), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [77206] = 7, + [90752] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, - ACTIONS(5352), 1, - anon_sym_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2511), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6478), 1, + sym_super, + ACTIONS(6560), 1, + sym_identifier, + STATE(4049), 1, + sym_type_arguments, + STATE(3007), 2, sym_line_comment, sym_block_comment, - [77230] = 8, + [90775] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_PIPE, - ACTIONS(5622), 1, - anon_sym_SEMI, - ACTIONS(5624), 1, - anon_sym_COLON, - ACTIONS(5626), 1, - anon_sym_EQ, - ACTIONS(5628), 1, - anon_sym_else, - STATE(2512), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6478), 1, + sym_super, + ACTIONS(6560), 1, + sym_identifier, + STATE(4065), 1, + sym_type_arguments, + STATE(3008), 2, sym_line_comment, sym_block_comment, - [77256] = 8, + [90798] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5630), 1, - sym_identifier, - ACTIONS(5632), 1, - anon_sym_GT, - ACTIONS(5634), 1, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6562), 1, + anon_sym_RPAREN, + ACTIONS(6564), 1, anon_sym_COMMA, - STATE(2863), 1, - sym_lifetime, - STATE(2513), 2, + STATE(3280), 1, + aux_sym_slice_pattern_repeat1, + STATE(3009), 2, sym_line_comment, sym_block_comment, - [77282] = 8, + [90821] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1369), 1, anon_sym_LBRACE, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - STATE(1450), 1, + STATE(494), 1, sym_block, - STATE(3677), 1, + STATE(4253), 1, sym_label, - STATE(2514), 2, + STATE(3010), 2, sym_line_comment, sym_block_comment, - [77308] = 8, + [90844] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(4644), 1, + ACTIONS(3880), 1, anon_sym_LT2, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(1154), 1, - sym_parameters, - STATE(2006), 1, + ACTIONS(5923), 1, + sym_super, + ACTIONS(6566), 1, + sym_identifier, + STATE(1709), 1, sym_type_arguments, - STATE(2515), 2, - sym_line_comment, - sym_block_comment, - [77334] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5539), 1, - anon_sym_GT, - ACTIONS(5541), 1, - anon_sym_COMMA, - STATE(3048), 1, - sym_trait_bounds, - STATE(3050), 1, - aux_sym_type_arguments_repeat1, - STATE(2516), 2, + STATE(3011), 2, sym_line_comment, sym_block_comment, - [77360] = 8, + [90867] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_PIPE, - ACTIONS(5636), 1, - anon_sym_SEMI, - ACTIONS(5638), 1, - anon_sym_COLON, - ACTIONS(5640), 1, - anon_sym_EQ, - ACTIONS(5642), 1, - anon_sym_else, - STATE(2517), 2, + ACTIONS(5627), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + STATE(1499), 1, + sym_field_declaration_list, + STATE(3625), 1, + sym_where_clause, + STATE(3012), 2, sym_line_comment, sym_block_comment, - [77386] = 8, + [90890] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(1369), 1, anon_sym_LBRACE, - ACTIONS(5644), 1, - anon_sym_SEMI, - STATE(770), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(496), 1, sym_block, - STATE(3736), 1, + STATE(4253), 1, sym_label, - STATE(2518), 2, + STATE(3013), 2, sym_line_comment, sym_block_comment, - [77412] = 8, + [90913] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3230), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1904), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2519), 2, + ACTIONS(6568), 1, + anon_sym_SEMI, + ACTIONS(6570), 1, + anon_sym_EQ, + ACTIONS(6572), 1, + anon_sym_else, + STATE(3014), 2, sym_line_comment, sym_block_comment, - [77438] = 8, + [90936] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5416), 1, - anon_sym_GT, - ACTIONS(5418), 1, - anon_sym_COMMA, - STATE(2898), 1, - sym_trait_bounds, - STATE(2899), 1, - aux_sym_type_arguments_repeat1, - STATE(2520), 2, + ACTIONS(6574), 1, + anon_sym_DQUOTE, + STATE(3135), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6482), 2, + sym_string_content, + sym_escape_sequence, + STATE(3015), 2, sym_line_comment, sym_block_comment, - [77464] = 7, + [90957] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5646), 1, - anon_sym_RPAREN, - ACTIONS(5648), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2521), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5217), 1, + anon_sym_BANG, + ACTIONS(5279), 1, + anon_sym_COLON_COLON, + STATE(2285), 1, + sym_type_arguments, + STATE(3016), 2, sym_line_comment, sym_block_comment, - [77488] = 8, + [90980] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5650), 1, - anon_sym_SEMI, - STATE(1203), 1, - sym_block, - STATE(3739), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(4169), 1, sym_label, - STATE(2522), 2, + STATE(4174), 1, + sym_block, + STATE(3017), 2, sym_line_comment, sym_block_comment, - [77514] = 8, + [91003] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5654), 1, anon_sym_LBRACE, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1747), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2523), 2, + STATE(656), 1, + sym_field_declaration_list, + STATE(3848), 1, + sym_where_clause, + STATE(3018), 2, sym_line_comment, sym_block_comment, - [77540] = 7, + [91026] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3363), 1, - sym_trait_bounds, - ACTIONS(5652), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2524), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5923), 1, + sym_super, + ACTIONS(6560), 1, + sym_identifier, + STATE(4049), 1, + sym_type_arguments, + STATE(3019), 2, sym_line_comment, sym_block_comment, - [77564] = 4, + [91049] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2525), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5923), 1, + sym_super, + ACTIONS(6560), 1, + sym_identifier, + STATE(4065), 1, + sym_type_arguments, + STATE(3020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3570), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77582] = 7, + [91072] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, - ACTIONS(5654), 1, - anon_sym_COMMA, - STATE(2935), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2526), 2, + ACTIONS(6576), 1, + anon_sym_LPAREN, + ACTIONS(6578), 1, + anon_sym_LBRACK, + ACTIONS(6580), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_delim_token_tree, + STATE(3021), 2, sym_line_comment, sym_block_comment, - [77606] = 8, + [91095] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5939), 1, + anon_sym_LPAREN, + ACTIONS(5941), 1, + anon_sym_LBRACK, + ACTIONS(5945), 1, anon_sym_LBRACE, - ACTIONS(5656), 1, - anon_sym_SEMI, - STATE(1250), 1, - sym_block, - STATE(3739), 1, - sym_label, - STATE(2527), 2, + STATE(1753), 1, + sym_delim_token_tree, + STATE(3022), 2, sym_line_comment, sym_block_comment, - [77632] = 8, + [91118] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5658), 1, - anon_sym_SEMI, - STATE(498), 1, + STATE(414), 1, sym_block, - STATE(3736), 1, + STATE(3965), 1, sym_label, - STATE(2528), 2, + STATE(3023), 2, sym_line_comment, sym_block_comment, - [77658] = 8, + [91141] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1886), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2529), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + STATE(4065), 1, + sym_type_arguments, + ACTIONS(5923), 2, + sym_identifier, + sym_super, + STATE(3024), 2, sym_line_comment, sym_block_comment, - [77684] = 8, + [91162] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(3880), 1, anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, + ACTIONS(5923), 1, + sym_super, + ACTIONS(6566), 1, + sym_identifier, + STATE(1788), 1, sym_type_arguments, - STATE(2468), 1, - sym_parameters, - STATE(2530), 2, + STATE(3025), 2, sym_line_comment, sym_block_comment, - [77710] = 8, + [91185] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5660), 1, - anon_sym_SEMI, - STATE(1284), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(1719), 1, sym_block, - STATE(3739), 1, + STATE(4169), 1, sym_label, - STATE(2531), 2, + STATE(3026), 2, sym_line_comment, sym_block_comment, - [77736] = 8, + [91208] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5771), 1, anon_sym_LBRACE, - ACTIONS(5662), 1, - anon_sym_SEMI, - STATE(540), 1, + STATE(3456), 1, sym_block, - STATE(3736), 1, + STATE(4252), 1, sym_label, - STATE(2532), 2, + STATE(3027), 2, sym_line_comment, sym_block_comment, - [77762] = 8, + [91231] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5664), 1, - anon_sym_SEMI, - STATE(1337), 1, - sym_block, - STATE(3739), 1, - sym_label, - STATE(2533), 2, + ACTIONS(3880), 1, + anon_sym_LT2, + ACTIONS(5923), 1, + sym_super, + ACTIONS(6582), 1, + sym_identifier, + STATE(1889), 1, + sym_type_arguments, + STATE(3028), 2, sym_line_comment, sym_block_comment, - [77788] = 8, + [91254] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5666), 1, - anon_sym_SEMI, - STATE(1351), 1, + STATE(426), 1, sym_block, - STATE(3739), 1, + STATE(3965), 1, sym_label, - STATE(2534), 2, + STATE(3029), 2, sym_line_comment, sym_block_comment, - [77814] = 8, + [91277] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5668), 1, - anon_sym_SEMI, - STATE(1356), 1, - sym_block, - STATE(3739), 1, - sym_label, - STATE(2535), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + STATE(3030), 2, sym_line_comment, sym_block_comment, - [77840] = 8, + ACTIONS(6584), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [91296] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5670), 1, - anon_sym_SEMI, - STATE(1381), 1, - sym_block, - STATE(3739), 1, - sym_label, - STATE(2536), 2, + ACTIONS(3880), 1, + anon_sym_LT2, + ACTIONS(5923), 1, + sym_super, + ACTIONS(6582), 1, + sym_identifier, + STATE(1868), 1, + sym_type_arguments, + STATE(3031), 2, sym_line_comment, sym_block_comment, - [77866] = 8, - ACTIONS(103), 1, + [91319] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5672), 1, - anon_sym_SEMI, - STATE(1389), 1, - sym_block, - STATE(3739), 1, - sym_label, - STATE(2537), 2, + ACTIONS(6586), 1, + aux_sym_token_repetition_pattern_token1, + STATE(3032), 2, sym_line_comment, sym_block_comment, - [77892] = 8, + ACTIONS(6588), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [91338] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5674), 1, - anon_sym_SEMI, - STATE(1399), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(4068), 1, sym_block, - STATE(3739), 1, + STATE(4169), 1, sym_label, - STATE(2538), 2, + STATE(3033), 2, sym_line_comment, sym_block_comment, - [77918] = 8, + [91361] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5676), 1, - anon_sym_SEMI, - STATE(1404), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(4069), 1, sym_block, - STATE(3739), 1, + STATE(4169), 1, sym_label, - STATE(2539), 2, + STATE(3034), 2, sym_line_comment, sym_block_comment, - [77944] = 8, + [91384] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5678), 1, - anon_sym_SEMI, - STATE(1408), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(3986), 1, sym_block, - STATE(3739), 1, + STATE(4169), 1, sym_label, - STATE(2540), 2, + STATE(3035), 2, sym_line_comment, sym_block_comment, - [77970] = 8, + [91407] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5680), 1, - anon_sym_move, - STATE(1778), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2541), 2, + ACTIONS(5193), 1, + anon_sym_DOT_DOT, + ACTIONS(5985), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(3036), 2, sym_line_comment, sym_block_comment, - [77996] = 8, + [91428] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(5682), 1, - sym_identifier, - ACTIONS(5684), 1, - anon_sym_GT, - ACTIONS(5686), 1, - anon_sym_COMMA, - STATE(2997), 1, - sym_lifetime, - STATE(2542), 2, + STATE(415), 1, + sym_block, + STATE(3965), 1, + sym_label, + STATE(3037), 2, sym_line_comment, sym_block_comment, - [78022] = 8, + [91451] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(1697), 1, - sym_parameters, - STATE(2006), 1, - sym_type_arguments, - STATE(2543), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + STATE(766), 1, + sym_declaration_list, + STATE(3835), 1, + sym_where_clause, + STATE(3038), 2, sym_line_comment, sym_block_comment, - [78048] = 8, + [91474] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5509), 1, - anon_sym_GT, - ACTIONS(5511), 1, - anon_sym_COMMA, - STATE(3002), 1, - sym_trait_bounds, - STATE(3003), 1, - aux_sym_type_arguments_repeat1, - STATE(2544), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6478), 1, + sym_super, + ACTIONS(6512), 1, + sym_identifier, + STATE(2383), 1, + sym_type_arguments, + STATE(3039), 2, sym_line_comment, sym_block_comment, - [78074] = 7, + [91497] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5688), 1, - anon_sym_RPAREN, - ACTIONS(5690), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2545), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5629), 1, + anon_sym_LT, + STATE(2572), 1, + sym_parameters, + STATE(3757), 1, + sym_type_parameters, + STATE(3040), 2, sym_line_comment, sym_block_comment, - [78098] = 8, + [91520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5692), 1, - anon_sym_STAR_SLASH, - ACTIONS(5694), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5696), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5698), 1, - sym__block_comment_content, - STATE(3369), 1, - sym__block_doc_comment_marker, - STATE(2546), 2, + ACTIONS(3590), 1, + anon_sym_PLUS, + STATE(3041), 2, sym_line_comment, sym_block_comment, - [78124] = 7, + ACTIONS(6590), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [91539] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, - anon_sym_RPAREN, - ACTIONS(5700), 1, - anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2547), 2, + ACTIONS(6592), 1, + anon_sym_in, + STATE(3042), 2, sym_line_comment, sym_block_comment, - [78148] = 8, + ACTIONS(6594), 3, + sym_self, + sym_super, + sym_crate, + [91558] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5702), 1, - anon_sym_RPAREN, - ACTIONS(5704), 1, - anon_sym_COLON, - ACTIONS(5706), 1, - anon_sym_COMMA, - STATE(3054), 1, - aux_sym_slice_pattern_repeat1, - STATE(2548), 2, + STATE(3043), 2, sym_line_comment, sym_block_comment, - [78174] = 8, + ACTIONS(4912), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [91575] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5396), 1, - anon_sym_GT, - ACTIONS(5398), 1, - anon_sym_COMMA, - STATE(3024), 1, - sym_trait_bounds, - STATE(3025), 1, - aux_sym_type_arguments_repeat1, - STATE(2549), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5629), 1, + anon_sym_LT, + STATE(2575), 1, + sym_parameters, + STATE(3892), 1, + sym_type_parameters, + STATE(3044), 2, sym_line_comment, sym_block_comment, - [78200] = 8, + [91598] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5708), 1, - anon_sym_SEMI, - STATE(504), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(2067), 1, sym_block, - STATE(3736), 1, + STATE(4254), 1, sym_label, - STATE(2550), 2, + STATE(3045), 2, sym_line_comment, sym_block_comment, - [78226] = 7, + [91621] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(5712), 1, - anon_sym_STAR, - STATE(2854), 1, - sym_use_list, - ACTIONS(5710), 2, - sym_identifier, - sym_super, - STATE(2551), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5442), 1, + anon_sym_for, + ACTIONS(6596), 1, + anon_sym_COLON_COLON, + STATE(2282), 1, + sym_type_arguments, + STATE(3046), 2, sym_line_comment, sym_block_comment, - [78250] = 7, + [91644] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, + ACTIONS(6598), 1, anon_sym_LBRACE, - ACTIONS(5314), 1, - anon_sym_STAR, - STATE(2861), 1, - sym_use_list, - ACTIONS(5312), 2, - sym_identifier, - sym_super, - STATE(2552), 2, + ACTIONS(6600), 1, + anon_sym_for, + ACTIONS(6602), 1, + anon_sym_loop, + ACTIONS(6604), 1, + anon_sym_while, + STATE(3047), 2, sym_line_comment, sym_block_comment, - [78274] = 4, + [91667] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2553), 2, + ACTIONS(6606), 1, + anon_sym_COLON_COLON, + STATE(3048), 2, sym_line_comment, sym_block_comment, - ACTIONS(5714), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78292] = 8, + ACTIONS(5446), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91686] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5718), 1, - sym_integer_literal, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 2, + ACTIONS(6608), 1, + anon_sym_DQUOTE, + STATE(3004), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6482), 2, + sym_string_content, + sym_escape_sequence, + STATE(3049), 2, sym_line_comment, sym_block_comment, - [78318] = 5, + [91707] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5015), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2555), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(5654), 1, + anon_sym_LBRACE, + STATE(672), 1, + sym_field_declaration_list, + STATE(3860), 1, + sym_where_clause, + STATE(3050), 2, sym_line_comment, sym_block_comment, - ACTIONS(3886), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [78338] = 4, + [91730] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2556), 2, + ACTIONS(6610), 1, + anon_sym_COLON_COLON, + STATE(3051), 2, sym_line_comment, sym_block_comment, - ACTIONS(5720), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78356] = 4, + ACTIONS(5450), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91749] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2557), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6612), 1, + anon_sym_SEMI, + STATE(4183), 1, + sym_where_clause, + STATE(3052), 2, sym_line_comment, sym_block_comment, - ACTIONS(5722), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78374] = 7, + [91772] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(5724), 1, - anon_sym_COMMA, - STATE(3015), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2558), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(4113), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(3053), 2, sym_line_comment, sym_block_comment, - [78398] = 8, + [91795] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5726), 1, - anon_sym_SEMI, - ACTIONS(5728), 1, - anon_sym_COLON, - ACTIONS(5730), 1, - anon_sym_EQ, - ACTIONS(5732), 1, - anon_sym_else, - STATE(2559), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + STATE(1287), 1, + sym_declaration_list, + STATE(3850), 1, + sym_where_clause, + STATE(3054), 2, sym_line_comment, sym_block_comment, - [78424] = 7, + [91818] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3091), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3222), 1, - sym_trait_bounds, - ACTIONS(5606), 2, - anon_sym_GT, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6614), 1, + anon_sym_RPAREN, + ACTIONS(6616), 1, anon_sym_COMMA, - STATE(2560), 2, + STATE(3461), 1, + aux_sym_slice_pattern_repeat1, + STATE(3055), 2, sym_line_comment, sym_block_comment, - [78448] = 5, + [91841] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2561), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6618), 1, + anon_sym_RPAREN, + ACTIONS(6620), 1, + anon_sym_COMMA, + STATE(3350), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3056), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78468] = 4, + [91864] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2562), 2, + ACTIONS(6622), 1, + anon_sym_COMMA, + ACTIONS(6468), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(3057), 3, sym_line_comment, sym_block_comment, - ACTIONS(5734), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78486] = 5, + aux_sym_slice_pattern_repeat1, + [91883] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2563), 2, + STATE(3058), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78506] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_EQ, - ACTIONS(5152), 1, + ACTIONS(3832), 4, anon_sym_COLON, - STATE(3099), 1, - sym_trait_bounds, - ACTIONS(4778), 2, + anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, - STATE(2564), 2, - sym_line_comment, - sym_block_comment, - [78530] = 4, + [91900] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2565), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6596), 1, + anon_sym_COLON_COLON, + ACTIONS(6625), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(3059), 2, sym_line_comment, sym_block_comment, - ACTIONS(5736), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78548] = 4, + [91923] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2566), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6627), 1, + anon_sym_SEMI, + STATE(4292), 1, + sym_where_clause, + STATE(3060), 2, sym_line_comment, sym_block_comment, - ACTIONS(5738), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78566] = 4, + [91946] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2567), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6629), 1, + anon_sym_SEMI, + STATE(4130), 1, + sym_where_clause, + STATE(3061), 2, sym_line_comment, sym_block_comment, - ACTIONS(5740), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78584] = 8, + [91969] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(1603), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_SEMI, - STATE(603), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(2481), 1, sym_block, - STATE(3736), 1, + STATE(4244), 1, sym_label, - STATE(2568), 2, + STATE(3062), 2, sym_line_comment, sym_block_comment, - [78610] = 8, + [91992] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5744), 1, - anon_sym_SEMI, - STATE(659), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(3983), 1, sym_block, - STATE(3736), 1, + STATE(4169), 1, sym_label, - STATE(2569), 2, + STATE(3063), 2, sym_line_comment, sym_block_comment, - [78636] = 7, + [92015] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5746), 1, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6631), 1, anon_sym_RPAREN, - ACTIONS(5749), 1, + ACTIONS(6633), 1, anon_sym_COMMA, - STATE(3079), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2570), 2, + STATE(3577), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3064), 2, sym_line_comment, sym_block_comment, - [78660] = 6, + [92038] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(4626), 2, - anon_sym_COLON, + ACTIONS(6510), 1, + anon_sym_COLON_COLON, + STATE(3065), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5450), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(5752), 2, + anon_sym_if, + [92057] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6264), 1, anon_sym_RPAREN, + ACTIONS(6266), 1, anon_sym_COMMA, - STATE(2571), 2, + STATE(3287), 1, + aux_sym_parameters_repeat1, + STATE(3066), 2, sym_line_comment, sym_block_comment, - [78682] = 7, + [92080] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_COLON, - ACTIONS(5328), 1, + ACTIONS(4586), 1, + anon_sym_LT2, + ACTIONS(4736), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2572), 2, + ACTIONS(5596), 1, + anon_sym_BANG, + STATE(1951), 1, + sym_type_arguments, + STATE(3067), 2, sym_line_comment, sym_block_comment, - [78706] = 8, + [92103] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - ACTIONS(4774), 1, - anon_sym_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2567), 1, - sym_trait_bounds, - STATE(2573), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5629), 1, + anon_sym_LT, + STATE(2577), 1, + sym_parameters, + STATE(3790), 1, + sym_type_parameters, + STATE(3068), 2, sym_line_comment, sym_block_comment, - [78732] = 8, + [92126] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - ACTIONS(5755), 1, - anon_sym_move, - STATE(1452), 1, + STATE(3974), 1, sym_block, - STATE(3677), 1, + STATE(4169), 1, sym_label, - STATE(2574), 2, + STATE(3069), 2, sym_line_comment, sym_block_comment, - [78758] = 6, + [92149] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5752), 1, - anon_sym_RBRACK, - ACTIONS(3518), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(5181), 2, + anon_sym_COLON, anon_sym_PIPE, + ACTIONS(6635), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2575), 2, + STATE(3070), 2, sym_line_comment, sym_block_comment, - [78780] = 4, + [92168] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2576), 2, + ACTIONS(6606), 1, + anon_sym_COLON_COLON, + STATE(3071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3550), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [78798] = 4, + ACTIONS(5474), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92187] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2577), 2, + ACTIONS(5362), 1, + anon_sym_DOT_DOT, + ACTIONS(6637), 1, + anon_sym_COLON_COLON, + ACTIONS(5364), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(3072), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + [92208] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1365), 1, + anon_sym_RPAREN, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6377), 1, anon_sym_COMMA, + STATE(3332), 1, + aux_sym_parameters_repeat1, + STATE(3073), 2, + sym_line_comment, + sym_block_comment, + [92231] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, anon_sym_SQUOTE, - [78816] = 8, + ACTIONS(6470), 1, + sym_identifier, + ACTIONS(6639), 1, + anon_sym_GT, + STATE(3842), 1, + sym_lifetime, + STATE(3074), 2, + sym_line_comment, + sym_block_comment, + [92254] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3502), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5757), 1, - anon_sym_SEMI, - STATE(531), 1, - sym_block, - STATE(3736), 1, - sym_label, - STATE(2578), 2, + ACTIONS(6470), 1, + sym_identifier, + ACTIONS(6641), 1, + anon_sym_GT, + STATE(3842), 1, + sym_lifetime, + STATE(3075), 2, sym_line_comment, sym_block_comment, - [78842] = 8, + [92277] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5759), 1, - anon_sym_EQ, - STATE(3150), 1, - sym_type_parameters, - STATE(3718), 1, - sym_where_clause, - STATE(2579), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + STATE(3076), 2, sym_line_comment, sym_block_comment, - [78868] = 8, + ACTIONS(6643), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [92296] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5761), 1, - anon_sym_EQ, - STATE(2934), 1, - sym_type_parameters, - STATE(3526), 1, - sym_where_clause, - STATE(2580), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2292), 1, + sym_type_arguments, + STATE(2790), 1, + sym_parameters, + STATE(3077), 2, sym_line_comment, sym_block_comment, - [78894] = 6, + [92319] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5551), 1, - anon_sym_RBRACK, - ACTIONS(3886), 2, - anon_sym_SEMI, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(5015), 2, - anon_sym_PIPE, + ACTIONS(6645), 1, + anon_sym_RPAREN, + ACTIONS(6647), 1, anon_sym_COMMA, - STATE(2581), 2, + STATE(3501), 1, + aux_sym_tuple_type_repeat1, + STATE(3078), 2, sym_line_comment, sym_block_comment, - [78916] = 8, + [92342] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5763), 1, - anon_sym_SEMI, - STATE(596), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(1707), 1, sym_block, - STATE(3736), 1, + STATE(4169), 1, sym_label, - STATE(2582), 2, - sym_line_comment, - sym_block_comment, - [78942] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2081), 1, - sym_parameters, - STATE(2583), 2, + STATE(3079), 2, sym_line_comment, sym_block_comment, - [78968] = 8, + [92365] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5765), 1, - anon_sym_SEMI, - STATE(1306), 1, - sym_block, - STATE(3739), 1, - sym_label, - STATE(2584), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6649), 1, + anon_sym_RBRACK, + ACTIONS(6651), 1, + anon_sym_COMMA, + STATE(3579), 1, + aux_sym_slice_pattern_repeat1, + STATE(3080), 2, sym_line_comment, sym_block_comment, - [78994] = 7, + [92388] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3717), 1, + STATE(3946), 1, sym_block, - STATE(2585), 2, + STATE(4169), 1, + sym_label, + STATE(3081), 2, sym_line_comment, sym_block_comment, - [79017] = 7, + [92411] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(5199), 1, anon_sym_LT2, - ACTIONS(4869), 1, - anon_sym_for, - ACTIONS(5767), 1, + ACTIONS(6596), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + ACTIONS(6653), 1, + anon_sym_for, + STATE(2282), 1, sym_type_arguments, - STATE(2586), 2, + STATE(3082), 2, sym_line_comment, sym_block_comment, - [79040] = 4, + [92434] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2587), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4414), 4, + ACTIONS(343), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, + ACTIONS(3890), 1, anon_sym_SQUOTE, - [79057] = 5, - ACTIONS(3), 1, + STATE(4032), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(3083), 2, + sym_line_comment, + sym_block_comment, + [92457] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5769), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2588), 2, + ACTIONS(5181), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6655), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3084), 2, sym_line_comment, sym_block_comment, - ACTIONS(5771), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [79076] = 7, + [92476] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(5199), 1, anon_sym_LT2, - ACTIONS(5773), 1, - sym_identifier, - ACTIONS(5775), 1, + ACTIONS(6478), 1, sym_super, - STATE(2099), 1, + ACTIONS(6657), 1, + sym_identifier, + STATE(2390), 1, sym_type_arguments, - STATE(2589), 2, + STATE(3085), 2, sym_line_comment, sym_block_comment, - [79099] = 5, + [92499] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5777), 1, - anon_sym_COMMA, - ACTIONS(4308), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2590), 3, + ACTIONS(6526), 1, + anon_sym_COLON_COLON, + STATE(3086), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [79118] = 7, + ACTIONS(5450), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92518] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(5780), 1, - anon_sym_RPAREN, - ACTIONS(5782), 1, - anon_sym_COMMA, - STATE(2971), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2591), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6659), 1, + anon_sym_SEMI, + STATE(4010), 1, + sym_where_clause, + STATE(3087), 2, sym_line_comment, sym_block_comment, - [79141] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [92541] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(400), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2592), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6478), 1, + sym_super, + ACTIONS(6657), 1, + sym_identifier, + STATE(2383), 1, + sym_type_arguments, + STATE(3088), 2, sym_line_comment, sym_block_comment, - [79164] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [92564] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, anon_sym_SQUOTE, - STATE(399), 1, + STATE(484), 1, sym_block, - STATE(3532), 1, + STATE(4253), 1, sym_label, - STATE(2593), 2, - sym_line_comment, - sym_block_comment, - [79187] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5784), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2594), 2, + STATE(3089), 2, sym_line_comment, sym_block_comment, - ACTIONS(5786), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [79206] = 7, + [92587] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(5547), 1, - anon_sym_RPAREN, - ACTIONS(5549), 1, - anon_sym_COMMA, - STATE(3079), 1, - aux_sym_parameters_repeat1, - STATE(2595), 2, + ACTIONS(6661), 1, + anon_sym_SEMI, + ACTIONS(6663), 1, + anon_sym_EQ, + ACTIONS(6665), 1, + anon_sym_else, + STATE(3090), 2, sym_line_comment, sym_block_comment, - [79229] = 7, + [92610] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5788), 1, - anon_sym_RPAREN, - ACTIONS(5790), 1, - anon_sym_COMMA, - STATE(3114), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2596), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(4169), 1, + sym_label, + STATE(4196), 1, + sym_block, + STATE(3091), 2, sym_line_comment, sym_block_comment, - [79252] = 6, + [92633] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5792), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2597), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + STATE(877), 1, + sym_declaration_list, + STATE(3604), 1, + sym_where_clause, + STATE(3092), 2, sym_line_comment, sym_block_comment, - [79273] = 7, + [92656] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1457), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2598), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6667), 1, + anon_sym_RPAREN, + ACTIONS(6669), 1, + anon_sym_COMMA, + STATE(3307), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3093), 2, sym_line_comment, sym_block_comment, - [79296] = 7, + [92679] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1464), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2599), 2, + ACTIONS(6610), 1, + anon_sym_COLON_COLON, + STATE(3094), 2, sym_line_comment, sym_block_comment, - [79319] = 6, + ACTIONS(5390), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92698] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5796), 1, + ACTIONS(6671), 1, anon_sym_DQUOTE, - STATE(2619), 1, + STATE(3230), 1, aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, + ACTIONS(6482), 2, sym_string_content, sym_escape_sequence, - STATE(2600), 2, + STATE(3095), 2, sym_line_comment, sym_block_comment, - [79340] = 7, + [92719] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(2165), 1, - sym_block, - STATE(3732), 1, - sym_label, - STATE(2601), 2, + ACTIONS(6510), 1, + anon_sym_COLON_COLON, + STATE(3096), 2, sym_line_comment, sym_block_comment, - [79363] = 7, + ACTIONS(5390), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92738] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(476), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2602), 2, + ACTIONS(6526), 1, + anon_sym_COLON_COLON, + STATE(3097), 2, sym_line_comment, sym_block_comment, - [79386] = 7, + ACTIONS(5390), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92757] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1453), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2603), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6673), 1, + anon_sym_SEMI, + ACTIONS(6675), 1, + anon_sym_EQ, + ACTIONS(6677), 1, + anon_sym_else, + STATE(3098), 2, sym_line_comment, sym_block_comment, - [79409] = 7, + [92780] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(500), 1, - sym_declaration_list, - STATE(3456), 1, + ACTIONS(6679), 1, + anon_sym_SEMI, + STATE(4056), 1, sym_where_clause, - STATE(2604), 2, + STATE(3099), 2, sym_line_comment, sym_block_comment, - [79432] = 6, + [92803] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4801), 1, - anon_sym_DOT_DOT, - ACTIONS(5798), 1, - anon_sym_COLON_COLON, - ACTIONS(4803), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2605), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5629), 1, + anon_sym_LT, + STATE(2583), 1, + sym_parameters, + STATE(3807), 1, + sym_type_parameters, + STATE(3100), 2, sym_line_comment, sym_block_comment, - [79453] = 7, + [92826] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5800), 1, + ACTIONS(6681), 1, anon_sym_SEMI, - STATE(3603), 1, + STATE(4058), 1, sym_where_clause, - STATE(2606), 2, + STATE(3101), 2, sym_line_comment, sym_block_comment, - [79476] = 7, + [92849] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5802), 1, + ACTIONS(6683), 1, anon_sym_LPAREN, - ACTIONS(5804), 1, + ACTIONS(6685), 1, anon_sym_LBRACK, - ACTIONS(5806), 1, + ACTIONS(6687), 1, anon_sym_LBRACE, - STATE(402), 1, + STATE(2296), 1, sym_delim_token_tree, - STATE(2607), 2, + STATE(3102), 2, sym_line_comment, sym_block_comment, - [79499] = 7, + [92872] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5808), 1, - sym_identifier, - STATE(1488), 1, - sym_type_arguments, - STATE(2608), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6689), 1, + anon_sym_SEMI, + STATE(4279), 1, + sym_where_clause, + STATE(3103), 2, sym_line_comment, sym_block_comment, - [79522] = 7, + [92895] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - ACTIONS(5013), 1, - anon_sym_BANG, - STATE(1123), 1, - sym_type_arguments, - STATE(2609), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6691), 1, + anon_sym_RPAREN, + ACTIONS(6693), 1, + anon_sym_COMMA, + STATE(3406), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3104), 2, sym_line_comment, sym_block_comment, - [79545] = 6, + [92918] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3605), 1, - sym_type_arguments, - ACTIONS(5775), 2, - sym_identifier, - sym_super, - STATE(2610), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6383), 1, + anon_sym_RPAREN, + ACTIONS(6385), 1, + anon_sym_COMMA, + STATE(3508), 1, + aux_sym_parameters_repeat1, + STATE(3105), 2, sym_line_comment, sym_block_comment, - [79566] = 7, + [92941] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1369), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - STATE(1486), 1, + STATE(487), 1, sym_block, - STATE(3677), 1, + STATE(4253), 1, sym_label, - STATE(2611), 2, - sym_line_comment, - sym_block_comment, - [79589] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5334), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5340), 1, - anon_sym_LBRACE, - STATE(1487), 1, - sym_delim_token_tree, - STATE(2612), 2, + STATE(3106), 2, sym_line_comment, sym_block_comment, - [79612] = 7, + [92964] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - STATE(1489), 1, + STATE(4029), 1, sym_block, - STATE(3677), 1, + STATE(4169), 1, sym_label, - STATE(2613), 2, + STATE(3107), 2, sym_line_comment, sym_block_comment, - [79635] = 7, + [92987] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - STATE(1134), 1, + STATE(4034), 1, sym_block, - STATE(3677), 1, + STATE(4169), 1, sym_label, - STATE(2614), 2, + STATE(3108), 2, sym_line_comment, sym_block_comment, - [79658] = 7, + [93010] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - ACTIONS(5810), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2615), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + STATE(1587), 1, + sym_declaration_list, + STATE(3714), 1, + sym_where_clause, + STATE(3109), 2, sym_line_comment, sym_block_comment, - [79681] = 6, + [93033] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3759), 1, - sym_type_arguments, - ACTIONS(5775), 2, - sym_identifier, - sym_super, - STATE(2616), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + STATE(575), 1, + sym_declaration_list, + STATE(3630), 1, + sym_where_clause, + STATE(3110), 2, sym_line_comment, sym_block_comment, - [79702] = 4, + [93056] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2617), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6695), 1, + anon_sym_RPAREN, + ACTIONS(6697), 1, + anon_sym_COMMA, + STATE(3238), 1, + aux_sym_tuple_type_repeat1, + STATE(3111), 2, sym_line_comment, sym_block_comment, - ACTIONS(5812), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [79719] = 7, + [93079] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1369), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - STATE(1496), 1, + STATE(464), 1, sym_block, - STATE(3677), 1, + STATE(4253), 1, sym_label, - STATE(2618), 2, + STATE(3112), 2, sym_line_comment, sym_block_comment, - [79742] = 6, + [93102] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5814), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2619), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + STATE(896), 1, + sym_declaration_list, + STATE(3673), 1, + sym_where_clause, + STATE(3113), 2, sym_line_comment, sym_block_comment, - [79763] = 7, + [93125] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5334), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5340), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6134), 1, anon_sym_LBRACE, - STATE(1497), 1, - sym_delim_token_tree, - STATE(2620), 2, + STATE(646), 1, + sym_enum_variant_list, + STATE(3849), 1, + sym_where_clause, + STATE(3114), 2, sym_line_comment, sym_block_comment, - [79786] = 7, + [93148] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5816), 1, - sym_identifier, - STATE(1616), 1, - sym_type_arguments, - STATE(2621), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(4169), 1, + sym_label, + STATE(4274), 1, + sym_block, + STATE(3115), 2, + sym_line_comment, + sym_block_comment, + [93171] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6699), 1, + aux_sym_token_repetition_pattern_token1, + STATE(3116), 2, sym_line_comment, sym_block_comment, - [79809] = 7, + ACTIONS(6701), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [93190] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5818), 1, - anon_sym_SEMI, - STATE(3606), 1, + ACTIONS(6134), 1, + anon_sym_LBRACE, + STATE(640), 1, + sym_enum_variant_list, + STATE(3776), 1, sym_where_clause, - STATE(2622), 2, + STATE(3117), 2, sym_line_comment, sym_block_comment, - [79832] = 7, + [93213] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5816), 1, - sym_identifier, - STATE(1609), 1, - sym_type_arguments, - STATE(2623), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5629), 1, + anon_sym_LT, + STATE(2592), 1, + sym_parameters, + STATE(3823), 1, + sym_type_parameters, + STATE(3118), 2, sym_line_comment, sym_block_comment, - [79855] = 7, + [93236] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5820), 1, - anon_sym_RPAREN, - ACTIONS(5822), 1, - anon_sym_COMMA, - STATE(2847), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2624), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6703), 1, + anon_sym_SEMI, + STATE(4173), 1, + sym_where_clause, + STATE(3119), 2, sym_line_comment, sym_block_comment, - [79878] = 7, + [93259] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5824), 1, - anon_sym_RBRACK, - ACTIONS(5826), 1, - anon_sym_COMMA, - STATE(2849), 1, - aux_sym_slice_pattern_repeat1, - STATE(2625), 2, + STATE(3120), 2, sym_line_comment, sym_block_comment, - [79901] = 7, + ACTIONS(949), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [93276] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5828), 1, - sym_identifier, - STATE(2099), 1, - sym_type_arguments, - STATE(2626), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(4007), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(3121), 2, sym_line_comment, sym_block_comment, - [79924] = 7, + [93299] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5828), 1, - sym_identifier, - STATE(2102), 1, - sym_type_arguments, - STATE(2627), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(4008), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(3122), 2, sym_line_comment, sym_block_comment, - [79947] = 7, + [93322] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5830), 1, - anon_sym_RPAREN, - ACTIONS(5832), 1, - anon_sym_COMMA, - STATE(2855), 1, - aux_sym_tuple_type_repeat1, - STATE(2628), 2, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(495), 1, + sym_block, + STATE(4253), 1, + sym_label, + STATE(3123), 2, sym_line_comment, sym_block_comment, - [79970] = 7, + [93345] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - ACTIONS(5834), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2629), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6705), 1, + anon_sym_SEMI, + STATE(4090), 1, + sym_where_clause, + STATE(3124), 2, sym_line_comment, sym_block_comment, - [79993] = 6, + [93368] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2630), 2, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(488), 1, + sym_block, + STATE(4253), 1, + sym_label, + STATE(3125), 2, sym_line_comment, sym_block_comment, - [80014] = 7, + [93391] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5836), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, - STATE(2631), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + STATE(1608), 1, + sym_declaration_list, + STATE(3735), 1, + sym_where_clause, + STATE(3126), 2, sym_line_comment, sym_block_comment, - [80037] = 7, + [93414] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(1155), 1, - sym_parameters, - STATE(2008), 1, - sym_type_arguments, - STATE(2632), 2, + ACTIONS(6707), 1, + anon_sym_COLON, + STATE(3127), 2, sym_line_comment, sym_block_comment, - [80060] = 7, + ACTIONS(5506), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [93433] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5836), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, - STATE(2633), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(4169), 1, + sym_label, + STATE(4236), 1, + sym_block, + STATE(3128), 2, sym_line_comment, sym_block_comment, - [80083] = 7, + [93456] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - STATE(3609), 1, + STATE(4160), 1, sym_block, - STATE(3677), 1, + STATE(4169), 1, sym_label, - STATE(2634), 2, + STATE(3129), 2, sym_line_comment, sym_block_comment, - [80106] = 7, + [93479] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5394), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - STATE(1158), 1, - sym_enum_variant_list, - STATE(3214), 1, + ACTIONS(5631), 1, + anon_sym_where, + STATE(831), 1, + sym_declaration_list, + STATE(3761), 1, sym_where_clause, - STATE(2635), 2, + STATE(3130), 2, sym_line_comment, sym_block_comment, - [80129] = 7, + [93502] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - ACTIONS(5838), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2636), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(4169), 1, + sym_label, + STATE(4192), 1, + sym_block, + STATE(3131), 2, sym_line_comment, sym_block_comment, - [80152] = 7, + [93525] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1171), 1, - sym_declaration_list, - STATE(3457), 1, - sym_where_clause, - STATE(2637), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(4169), 1, + sym_label, + STATE(4193), 1, + sym_block, + STATE(3132), 2, sym_line_comment, sym_block_comment, - [80175] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [93548] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(398), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2638), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, + anon_sym_RBRACK, + ACTIONS(6711), 1, + anon_sym_COMMA, + STATE(3409), 1, + aux_sym_slice_pattern_repeat1, + STATE(3133), 2, sym_line_comment, sym_block_comment, - [80198] = 7, + [93571] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5041), 1, - anon_sym_where, - STATE(1177), 1, - sym_field_declaration_list, - STATE(3186), 1, - sym_where_clause, - STATE(2639), 2, + STATE(3134), 2, sym_line_comment, sym_block_comment, - [80221] = 7, + ACTIONS(6713), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [93588] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5836), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, - STATE(2640), 2, + ACTIONS(6715), 1, + anon_sym_DQUOTE, + STATE(3230), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6482), 2, + sym_string_content, + sym_escape_sequence, + STATE(3135), 2, + sym_line_comment, + sym_block_comment, + [93609] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6683), 1, + anon_sym_LPAREN, + ACTIONS(6685), 1, + anon_sym_LBRACK, + ACTIONS(6687), 1, + anon_sym_LBRACE, + STATE(2297), 1, + sym_delim_token_tree, + STATE(3136), 2, sym_line_comment, sym_block_comment, - [80244] = 7, + [93632] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - STATE(1451), 1, - sym_block, - STATE(3677), 1, + STATE(4169), 1, sym_label, - STATE(2641), 2, + STATE(4260), 1, + sym_block, + STATE(3137), 2, sym_line_comment, sym_block_comment, - [80267] = 7, + [93655] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5702), 1, - anon_sym_RPAREN, - ACTIONS(5706), 1, - anon_sym_COMMA, - STATE(3054), 1, - aux_sym_slice_pattern_repeat1, - STATE(2642), 2, + ACTIONS(4586), 1, + anon_sym_LT2, + ACTIONS(6717), 1, + sym_identifier, + ACTIONS(6719), 1, + sym_super, + STATE(1878), 1, + sym_type_arguments, + STATE(3138), 2, sym_line_comment, sym_block_comment, - [80290] = 7, + [93678] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(567), 1, - sym_declaration_list, - STATE(3166), 1, - sym_where_clause, - STATE(2643), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(4169), 1, + sym_label, + STATE(4278), 1, + sym_block, + STATE(3139), 2, sym_line_comment, sym_block_comment, - [80313] = 7, + [93701] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4586), 1, anon_sym_LT2, - ACTIONS(5773), 1, + ACTIONS(6717), 1, sym_identifier, - ACTIONS(5775), 1, + ACTIONS(6719), 1, sym_super, - STATE(2102), 1, + STATE(1880), 1, sym_type_arguments, - STATE(2644), 2, + STATE(3140), 2, sym_line_comment, sym_block_comment, - [80336] = 6, + [93724] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(5199), 1, anon_sym_LT2, - STATE(3605), 1, - sym_type_arguments, - ACTIONS(5840), 2, - sym_identifier, + ACTIONS(5923), 1, sym_super, - STATE(2645), 2, + ACTIONS(6476), 1, + sym_identifier, + STATE(4049), 1, + sym_type_arguments, + STATE(3141), 2, sym_line_comment, sym_block_comment, - [80357] = 6, + [93747] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(3880), 1, anon_sym_LT2, - STATE(3759), 1, + ACTIONS(4104), 1, + anon_sym_COLON_COLON, + ACTIONS(5217), 1, + anon_sym_BANG, + STATE(1553), 1, sym_type_arguments, - ACTIONS(5840), 2, - sym_identifier, - sym_super, - STATE(2646), 2, + STATE(3142), 2, sym_line_comment, sym_block_comment, - [80378] = 7, + [93770] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5600), 1, - anon_sym_COLON, - ACTIONS(5602), 1, - anon_sym_PIPE, - ACTIONS(5604), 1, - anon_sym_COMMA, - STATE(3083), 1, - aux_sym_closure_parameters_repeat1, - STATE(2647), 2, + ACTIONS(5193), 1, + anon_sym_DOT_DOT, + ACTIONS(6007), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(3143), 2, sym_line_comment, sym_block_comment, - [80401] = 7, + [93791] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, - anon_sym_RPAREN, - ACTIONS(5844), 1, - anon_sym_COMMA, - STATE(2900), 1, - aux_sym_slice_pattern_repeat1, - STATE(2648), 2, + ACTIONS(4586), 1, + anon_sym_LT2, + ACTIONS(4736), 1, + anon_sym_COLON_COLON, + ACTIONS(5217), 1, + anon_sym_BANG, + STATE(1951), 1, + sym_type_arguments, + STATE(3144), 2, sym_line_comment, sym_block_comment, - [80424] = 7, + [93814] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5846), 1, - anon_sym_RPAREN, - ACTIONS(5848), 1, - anon_sym_COMMA, - STATE(2902), 1, - aux_sym_slice_pattern_repeat1, - STATE(2649), 2, + ACTIONS(6502), 1, + sym_super, + ACTIONS(6721), 1, + sym_identifier, + ACTIONS(6723), 1, + anon_sym_LT2, + STATE(2919), 1, + sym_type_arguments, + STATE(3145), 2, sym_line_comment, sym_block_comment, - [80447] = 7, + [93837] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5400), 1, + ACTIONS(6134), 1, anon_sym_LBRACE, - STATE(701), 1, + STATE(788), 1, sym_enum_variant_list, - STATE(3426), 1, + STATE(3635), 1, sym_where_clause, - STATE(2650), 2, - sym_line_comment, - sym_block_comment, - [80470] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5646), 1, - anon_sym_RPAREN, - ACTIONS(5648), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_parameters_repeat1, - STATE(2651), 2, + STATE(3146), 2, sym_line_comment, sym_block_comment, - [80493] = 5, + [93860] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - STATE(2652), 2, + ACTIONS(5193), 1, + anon_sym_DOT_DOT, + ACTIONS(5983), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(3147), 2, sym_line_comment, sym_block_comment, - ACTIONS(5850), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [80512] = 7, + [93881] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5852), 1, - anon_sym_SEMI, - ACTIONS(5854), 1, - anon_sym_EQ, - ACTIONS(5856), 1, - anon_sym_else, - STATE(2653), 2, + ACTIONS(6502), 1, + sym_super, + ACTIONS(6721), 1, + sym_identifier, + ACTIONS(6723), 1, + anon_sym_LT2, + STATE(2840), 1, + sym_type_arguments, + STATE(3148), 2, sym_line_comment, sym_block_comment, - [80535] = 7, + [93904] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6039), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3519), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2654), 2, + STATE(1622), 1, + sym_enum_variant_list, + STATE(3752), 1, + sym_where_clause, + STATE(3149), 2, sym_line_comment, sym_block_comment, - [80558] = 7, + [93927] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1219), 1, - sym_declaration_list, - STATE(3197), 1, - sym_where_clause, - STATE(2655), 2, + ACTIONS(6606), 1, + anon_sym_COLON_COLON, + STATE(3150), 2, sym_line_comment, sym_block_comment, - [80581] = 7, + ACTIONS(5414), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [93946] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5627), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5858), 1, - anon_sym_SEMI, - STATE(3699), 1, + STATE(1629), 1, + sym_field_declaration_list, + STATE(3760), 1, sym_where_clause, - STATE(2656), 2, + STATE(3151), 2, sym_line_comment, sym_block_comment, - [80604] = 7, + [93969] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(6725), 1, anon_sym_LBRACE, - STATE(1230), 1, - sym_declaration_list, - STATE(3202), 1, - sym_where_clause, - STATE(2657), 2, + ACTIONS(6727), 1, + anon_sym_for, + ACTIONS(6729), 1, + anon_sym_loop, + ACTIONS(6731), 1, + anon_sym_while, + STATE(3152), 2, sym_line_comment, sym_block_comment, - [80627] = 6, + [93992] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3363), 1, - sym_trait_bounds, - ACTIONS(5652), 2, - anon_sym_GT, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6733), 1, + anon_sym_RPAREN, + ACTIONS(6735), 1, anon_sym_COMMA, - STATE(2658), 2, + STATE(3413), 1, + aux_sym_tuple_type_repeat1, + STATE(3153), 2, sym_line_comment, sym_block_comment, - [80648] = 7, + [94015] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5394), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1235), 1, - sym_enum_variant_list, - STATE(3218), 1, - sym_where_clause, - STATE(2659), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(1782), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(3154), 2, sym_line_comment, sym_block_comment, - [80671] = 7, + [94038] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5860), 1, - anon_sym_SEMI, - STATE(3745), 1, - sym_where_clause, - STATE(2660), 2, + ACTIONS(3880), 1, + anon_sym_LT2, + ACTIONS(4104), 1, + anon_sym_COLON_COLON, + ACTIONS(5512), 1, + anon_sym_BANG, + STATE(1553), 1, + sym_type_arguments, + STATE(3155), 2, sym_line_comment, sym_block_comment, - [80694] = 7, + [94061] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - STATE(1241), 1, - sym_field_declaration_list, - STATE(3229), 1, + STATE(1267), 1, + sym_declaration_list, + STATE(3833), 1, sym_where_clause, - STATE(2661), 2, + STATE(3156), 2, sym_line_comment, sym_block_comment, - [80717] = 7, + [94084] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5862), 1, - anon_sym_SEMI, - STATE(3747), 1, - sym_where_clause, - STATE(2662), 2, + ACTIONS(3872), 1, + anon_sym_LPAREN, + ACTIONS(5199), 1, + anon_sym_LT2, + STATE(1665), 1, + sym_parameters, + STATE(2292), 1, + sym_type_arguments, + STATE(3157), 2, sym_line_comment, sym_block_comment, - [80740] = 7, + [94107] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - STATE(1499), 1, + STATE(1790), 1, sym_block, - STATE(3677), 1, + STATE(4169), 1, sym_label, - STATE(2663), 2, + STATE(3158), 2, + sym_line_comment, + sym_block_comment, + [94130] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5923), 1, + sym_super, + ACTIONS(6512), 1, + sym_identifier, + STATE(4049), 1, + sym_type_arguments, + STATE(3159), 2, sym_line_comment, sym_block_comment, - [80763] = 7, + [94153] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(574), 1, - sym_enum_variant_list, - STATE(3399), 1, + ACTIONS(6737), 1, + anon_sym_SEMI, + STATE(4225), 1, sym_where_clause, - STATE(2664), 2, + STATE(3160), 2, sym_line_comment, sym_block_comment, - [80786] = 7, + [94176] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5654), 1, anon_sym_LBRACE, - STATE(638), 1, - sym_declaration_list, - STATE(3449), 1, + STATE(796), 1, + sym_field_declaration_list, + STATE(3646), 1, sym_where_clause, - STATE(2665), 2, + STATE(3161), 2, sym_line_comment, sym_block_comment, - [80809] = 7, + [94199] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5654), 1, + ACTIONS(4582), 1, + anon_sym_LPAREN, + ACTIONS(5199), 1, + anon_sym_LT2, + STATE(1914), 1, + sym_parameters, + STATE(2292), 1, + sym_type_arguments, + STATE(3162), 2, + sym_line_comment, + sym_block_comment, + [94222] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5193), 1, + anon_sym_DOT_DOT, + ACTIONS(5995), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(3163), 2, + sym_line_comment, + sym_block_comment, + [94243] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6739), 1, anon_sym_COMMA, - STATE(2935), 1, - aux_sym_parameters_repeat1, - STATE(2666), 2, + ACTIONS(4776), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(3164), 3, sym_line_comment, sym_block_comment, - [80832] = 7, + aux_sym_arguments_repeat1, + [94262] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5923), 1, + sym_super, + ACTIONS(6512), 1, sym_identifier, - ACTIONS(5866), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2667), 2, + STATE(4065), 1, + sym_type_arguments, + STATE(3165), 2, sym_line_comment, sym_block_comment, - [80855] = 7, + [94285] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(6742), 1, + anon_sym_LBRACE, + ACTIONS(6744), 1, + anon_sym_for, + ACTIONS(6746), 1, + anon_sym_loop, + ACTIONS(6748), 1, + anon_sym_while, + STATE(3166), 2, + sym_line_comment, + sym_block_comment, + [94308] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6750), 1, sym_identifier, - ACTIONS(5868), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2668), 2, + STATE(3167), 2, sym_line_comment, sym_block_comment, - [80878] = 5, + ACTIONS(6752), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [94327] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - STATE(2669), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(1580), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(3168), 2, sym_line_comment, sym_block_comment, - ACTIONS(5870), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [80897] = 7, + [94350] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5872), 1, - anon_sym_SEMI, - ACTIONS(5874), 1, - anon_sym_EQ, - ACTIONS(5876), 1, - anon_sym_else, - STATE(2670), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5923), 1, + sym_super, + ACTIONS(6476), 1, + sym_identifier, + STATE(4065), 1, + sym_type_arguments, + STATE(3169), 2, sym_line_comment, sym_block_comment, - [80920] = 7, + [94373] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5878), 1, - anon_sym_SEMI, - STATE(3724), 1, - sym_where_clause, - STATE(2671), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5731), 1, + anon_sym_COLON, + STATE(2292), 1, + sym_type_arguments, + STATE(2913), 1, + sym_trait_bounds, + STATE(3170), 2, sym_line_comment, sym_block_comment, - [80943] = 7, + [94396] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5880), 1, - anon_sym_SEMI, - STATE(3752), 1, - sym_where_clause, - STATE(2672), 2, + ACTIONS(6754), 1, + sym_identifier, + STATE(3171), 2, sym_line_comment, sym_block_comment, - [80966] = 7, + ACTIONS(6756), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [94415] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5882), 1, + ACTIONS(6758), 1, anon_sym_SEMI, - STATE(3761), 1, + STATE(4054), 1, sym_where_clause, - STATE(2673), 2, + STATE(3172), 2, sym_line_comment, sym_block_comment, - [80989] = 7, + [94438] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(6039), 1, anon_sym_LBRACE, - STATE(1279), 1, - sym_declaration_list, - STATE(3314), 1, + STATE(1671), 1, + sym_enum_variant_list, + STATE(3737), 1, sym_where_clause, - STATE(2674), 2, + STATE(3173), 2, sym_line_comment, sym_block_comment, - [81012] = 7, + [94461] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5884), 1, - anon_sym_SEMI, - STATE(3487), 1, - sym_where_clause, - STATE(2675), 2, + ACTIONS(6760), 1, + anon_sym_DQUOTE, + STATE(3095), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6482), 2, + sym_string_content, + sym_escape_sequence, + STATE(3174), 2, sym_line_comment, sym_block_comment, - [81035] = 7, + [94482] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1293), 1, - sym_declaration_list, - STATE(3327), 1, - sym_where_clause, - STATE(2676), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5629), 1, + anon_sym_LT, + STATE(2565), 1, + sym_parameters, + STATE(3653), 1, + sym_type_parameters, + STATE(3175), 2, sym_line_comment, sym_block_comment, - [81058] = 5, - ACTIONS(3), 1, + [94505] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5886), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2677), 2, + ACTIONS(3502), 1, + anon_sym_SQUOTE, + ACTIONS(6470), 1, + sym_identifier, + ACTIONS(6762), 1, + anon_sym_GT, + STATE(3842), 1, + sym_lifetime, + STATE(3176), 2, sym_line_comment, sym_block_comment, - ACTIONS(5888), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81077] = 7, + [94528] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(730), 1, - sym_declaration_list, - STATE(3313), 1, + ACTIONS(6764), 1, + anon_sym_SEMI, + STATE(4184), 1, sym_where_clause, - STATE(2678), 2, + STATE(3177), 2, sym_line_comment, sym_block_comment, - [81100] = 4, + [94551] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2679), 2, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(499), 1, + sym_block, + STATE(4253), 1, + sym_label, + STATE(3178), 2, sym_line_comment, sym_block_comment, - ACTIONS(1019), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [81117] = 7, + [94574] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(3502), 1, anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(6470), 1, sym_identifier, - ACTIONS(5890), 1, + ACTIONS(6766), 1, anon_sym_GT, - STATE(3278), 1, + STATE(3842), 1, sym_lifetime, - STATE(2680), 2, + STATE(3179), 2, + sym_line_comment, + sym_block_comment, + [94597] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6576), 1, + anon_sym_LPAREN, + ACTIONS(6578), 1, + anon_sym_LBRACK, + ACTIONS(6580), 1, + anon_sym_LBRACE, + STATE(428), 1, + sym_delim_token_tree, + STATE(3180), 2, sym_line_comment, sym_block_comment, - [81140] = 7, + [94620] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(3502), 1, anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(6470), 1, sym_identifier, - ACTIONS(5892), 1, + ACTIONS(6768), 1, anon_sym_GT, - STATE(3278), 1, + STATE(3842), 1, sym_lifetime, - STATE(2681), 2, + STATE(3181), 2, sym_line_comment, sym_block_comment, - [81163] = 5, + [94643] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5894), 1, - anon_sym_COLON_COLON, - STATE(2682), 2, + ACTIONS(6770), 1, + anon_sym_COLON, + STATE(3182), 2, sym_line_comment, sym_block_comment, - ACTIONS(4845), 3, - anon_sym_EQ_GT, + ACTIONS(5506), 3, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_if, - [81182] = 7, + anon_sym_COMMA, + [94662] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5896), 1, + ACTIONS(6772), 1, anon_sym_SEMI, - STATE(3545), 1, + STATE(4230), 1, sym_where_clause, - STATE(2683), 2, + STATE(3183), 2, sym_line_comment, sym_block_comment, - [81205] = 5, + [94685] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5898), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5458), 1, + anon_sym_for, + ACTIONS(6596), 1, anon_sym_COLON_COLON, - STATE(2684), 2, + STATE(2282), 1, + sym_type_arguments, + STATE(3184), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81224] = 5, + [94708] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6774), 1, + aux_sym_token_repetition_pattern_token1, + STATE(3185), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6776), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [94727] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6596), 1, anon_sym_COLON_COLON, - STATE(2685), 2, + ACTIONS(6778), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(3186), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81243] = 5, + [94750] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5470), 1, + anon_sym_for, + ACTIONS(6596), 1, anon_sym_COLON_COLON, - STATE(2686), 2, + STATE(2282), 1, + sym_type_arguments, + STATE(3187), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81262] = 7, + [94773] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(1363), 1, + anon_sym_RPAREN, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5904), 1, - anon_sym_SEMI, - STATE(3571), 1, - sym_where_clause, - STATE(2687), 2, + ACTIONS(6434), 1, + anon_sym_COMMA, + STATE(3529), 1, + aux_sym_parameters_repeat1, + STATE(3188), 2, + sym_line_comment, + sym_block_comment, + [94796] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3502), 1, + anon_sym_SQUOTE, + ACTIONS(6470), 1, + sym_identifier, + ACTIONS(6780), 1, + anon_sym_GT, + STATE(3842), 1, + sym_lifetime, + STATE(3189), 2, sym_line_comment, sym_block_comment, - [81285] = 7, + [94819] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(5906), 1, + ACTIONS(6782), 1, anon_sym_SEMI, - STATE(3572), 1, + STATE(3929), 1, sym_where_clause, - STATE(2688), 2, + STATE(3190), 2, sym_line_comment, sym_block_comment, - [81308] = 7, + [94842] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - STATE(1346), 1, + ACTIONS(5631), 1, + anon_sym_where, + STATE(1347), 1, sym_declaration_list, - STATE(3371), 1, + STATE(3899), 1, sym_where_clause, - STATE(2689), 2, + STATE(3191), 2, sym_line_comment, sym_block_comment, - [81331] = 7, + [94865] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3770), 1, - sym_block, - STATE(2690), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6288), 1, + anon_sym_RPAREN, + ACTIONS(6290), 1, + anon_sym_COMMA, + STATE(3426), 1, + aux_sym_parameters_repeat1, + STATE(3192), 2, sym_line_comment, sym_block_comment, - [81354] = 7, - ACTIONS(103), 1, + [94888] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(580), 1, - sym_field_declaration_list, - STATE(3279), 1, - sym_where_clause, - STATE(2691), 2, + ACTIONS(6784), 1, + aux_sym_token_repetition_pattern_token1, + STATE(3193), 2, sym_line_comment, sym_block_comment, - [81377] = 7, + ACTIONS(6786), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [94907] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(654), 1, - sym_declaration_list, - STATE(3324), 1, - sym_where_clause, - STATE(2692), 2, + ACTIONS(5731), 1, + anon_sym_COLON, + STATE(3638), 1, + sym_trait_bounds, + ACTIONS(6218), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3194), 2, sym_line_comment, sym_block_comment, - [81400] = 7, + [94928] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5908), 1, - anon_sym_SEMI, - ACTIONS(5910), 1, - anon_sym_EQ, - ACTIONS(5912), 1, - anon_sym_else, - STATE(2693), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(1702), 1, + sym_block, + STATE(4169), 1, + sym_label, + STATE(3195), 2, sym_line_comment, sym_block_comment, - [81423] = 7, + [94951] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - STATE(736), 1, - sym_field_declaration_list, - STATE(3248), 1, + ACTIONS(5631), 1, + anon_sym_where, + STATE(516), 1, + sym_declaration_list, + STATE(3803), 1, sym_where_clause, - STATE(2694), 2, + STATE(3196), 2, sym_line_comment, sym_block_comment, - [81446] = 5, + [94974] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - STATE(2695), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6596), 1, + anon_sym_COLON_COLON, + ACTIONS(6788), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(3197), 2, sym_line_comment, sym_block_comment, - ACTIONS(5914), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [81465] = 7, + [94997] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5916), 1, - anon_sym_SEMI, - STATE(3614), 1, - sym_where_clause, - STATE(2696), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5466), 1, + anon_sym_for, + ACTIONS(6596), 1, + anon_sym_COLON_COLON, + STATE(2282), 1, + sym_type_arguments, + STATE(3198), 2, sym_line_comment, sym_block_comment, - [81488] = 7, + [95020] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5918), 1, - anon_sym_RPAREN, - ACTIONS(5920), 1, - anon_sym_COMMA, - STATE(3067), 1, - aux_sym_slice_pattern_repeat1, - STATE(2697), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(394), 1, + sym_block, + STATE(3965), 1, + sym_label, + STATE(3199), 2, sym_line_comment, sym_block_comment, - [81511] = 7, + [95043] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2470), 1, - sym_parameters, - STATE(2698), 2, + ACTIONS(6610), 1, + anon_sym_COLON_COLON, + STATE(3200), 2, sym_line_comment, sym_block_comment, - [81534] = 7, + ACTIONS(5420), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [95062] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2283), 1, - sym_parameters, - STATE(3360), 1, - sym_type_parameters, - STATE(2699), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6790), 1, + anon_sym_SEMI, + STATE(4272), 1, + sym_where_clause, + STATE(3201), 2, sym_line_comment, sym_block_comment, - [81557] = 7, + [95085] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(5199), 1, anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5836), 1, - sym_identifier, - STATE(3759), 1, + ACTIONS(6596), 1, + anon_sym_COLON_COLON, + ACTIONS(6792), 1, + anon_sym_for, + STATE(2282), 1, sym_type_arguments, - STATE(2700), 2, + STATE(3202), 2, sym_line_comment, sym_block_comment, - [81580] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + [95108] = 7, + ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(485), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2701), 2, - sym_line_comment, - sym_block_comment, - [81603] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - STATE(490), 1, + STATE(420), 1, sym_block, - STATE(3740), 1, + STATE(3965), 1, sym_label, - STATE(2702), 2, + STATE(3203), 2, sym_line_comment, sym_block_comment, - [81626] = 6, + [95131] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5922), 1, - anon_sym_DQUOTE, - STATE(2715), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2703), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6476), 1, + sym_identifier, + ACTIONS(6478), 1, + sym_super, + STATE(4065), 1, + sym_type_arguments, + STATE(3204), 2, sym_line_comment, sym_block_comment, - [81647] = 7, + [95154] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, + ACTIONS(5201), 1, anon_sym_LPAREN, - ACTIONS(5039), 1, + ACTIONS(5629), 1, anon_sym_LT, - STATE(2275), 1, + STATE(2621), 1, sym_parameters, - STATE(3200), 1, + STATE(3765), 1, sym_type_parameters, - STATE(2704), 2, + STATE(3205), 2, sym_line_comment, sym_block_comment, - [81670] = 7, + [95177] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(1369), 1, anon_sym_LBRACE, - STATE(3035), 1, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(481), 1, sym_block, - STATE(3739), 1, + STATE(4253), 1, sym_label, - STATE(2705), 2, + STATE(3206), 2, sym_line_comment, sym_block_comment, - [81693] = 7, + [95200] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1781), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2706), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6796), 1, + anon_sym_EQ, + ACTIONS(6798), 1, + anon_sym_else, + STATE(3207), 2, sym_line_comment, sym_block_comment, - [81716] = 7, + [95223] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - ACTIONS(4955), 1, - anon_sym_BANG, - STATE(1643), 1, - sym_type_arguments, - STATE(2707), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6800), 1, + anon_sym_RPAREN, + ACTIONS(6802), 1, + anon_sym_COMMA, + STATE(3457), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3208), 2, sym_line_comment, sym_block_comment, - [81739] = 7, + [95246] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_RBRACK, - ACTIONS(5926), 1, - anon_sym_COMMA, - STATE(3133), 1, - aux_sym_slice_pattern_repeat1, - STATE(2708), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6596), 1, + anon_sym_COLON_COLON, + ACTIONS(6804), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(3209), 2, sym_line_comment, sym_block_comment, - [81762] = 7, + [95269] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(474), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2709), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6596), 1, + anon_sym_COLON_COLON, + ACTIONS(6806), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(3210), 2, sym_line_comment, sym_block_comment, - [81785] = 5, + [95292] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 2, + ACTIONS(6268), 1, anon_sym_COLON, + ACTIONS(6270), 1, anon_sym_PIPE, - ACTIONS(5928), 2, - anon_sym_RPAREN, + ACTIONS(6272), 1, anon_sym_COMMA, - STATE(2710), 2, + STATE(3390), 1, + aux_sym_closure_parameters_repeat1, + STATE(3211), 2, sym_line_comment, sym_block_comment, - [81804] = 7, + [95315] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 1, - anon_sym_LPAREN, - ACTIONS(5932), 1, - anon_sym_LBRACK, - ACTIONS(5934), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - STATE(2020), 1, - sym_delim_token_tree, - STATE(2711), 2, + ACTIONS(5631), 1, + anon_sym_where, + STATE(1469), 1, + sym_declaration_list, + STATE(3748), 1, + sym_where_clause, + STATE(3212), 2, sym_line_comment, sym_block_comment, - [81827] = 7, + [95338] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(475), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2712), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6808), 1, + anon_sym_SEMI, + STATE(4122), 1, + sym_where_clause, + STATE(3213), 2, sym_line_comment, sym_block_comment, - [81850] = 7, + [95361] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(459), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2713), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6596), 1, + anon_sym_COLON_COLON, + ACTIONS(6810), 1, + anon_sym_for, + STATE(2282), 1, + sym_type_arguments, + STATE(3214), 2, sym_line_comment, sym_block_comment, - [81873] = 7, + [95384] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(478), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2714), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + STATE(4049), 1, + sym_type_arguments, + ACTIONS(6478), 2, + sym_identifier, + sym_super, + STATE(3215), 2, sym_line_comment, sym_block_comment, - [81896] = 6, + [95405] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5936), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2715), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + STATE(778), 1, + sym_declaration_list, + STATE(3592), 1, + sym_where_clause, + STATE(3216), 2, sym_line_comment, sym_block_comment, - [81917] = 7, + [95428] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 1, - anon_sym_LPAREN, - ACTIONS(5932), 1, - anon_sym_LBRACK, - ACTIONS(5934), 1, + ACTIONS(6812), 1, anon_sym_LBRACE, - STATE(2022), 1, - sym_delim_token_tree, - STATE(2716), 2, + ACTIONS(6814), 1, + anon_sym_for, + ACTIONS(6816), 1, + anon_sym_loop, + ACTIONS(6818), 1, + anon_sym_while, + STATE(3217), 2, sym_line_comment, sym_block_comment, - [81940] = 7, + [95451] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(5938), 1, - sym_identifier, - ACTIONS(5940), 1, - sym_super, - STATE(1633), 1, - sym_type_arguments, - STATE(2717), 2, + ACTIONS(1349), 1, + anon_sym_RPAREN, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6317), 1, + anon_sym_COMMA, + STATE(3432), 1, + aux_sym_parameters_repeat1, + STATE(3218), 2, sym_line_comment, sym_block_comment, - [81963] = 7, + [95474] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(5938), 1, + ACTIONS(3502), 1, + anon_sym_SQUOTE, + ACTIONS(6470), 1, sym_identifier, - ACTIONS(5940), 1, - sym_super, - STATE(1636), 1, - sym_type_arguments, - STATE(2718), 2, + ACTIONS(6820), 1, + anon_sym_GT, + STATE(3842), 1, + sym_lifetime, + STATE(3219), 2, sym_line_comment, sym_block_comment, - [81986] = 5, + [95497] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5942), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2719), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6822), 1, + anon_sym_SEMI, + STATE(3937), 1, + sym_where_clause, + STATE(3220), 2, sym_line_comment, sym_block_comment, - [82005] = 7, + [95520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - sym_super, - ACTIONS(5944), 1, - sym_identifier, - ACTIONS(5946), 1, - anon_sym_LT2, - STATE(2561), 1, - sym_type_arguments, - STATE(2720), 2, + ACTIONS(6824), 1, + anon_sym_in, + STATE(3221), 2, sym_line_comment, sym_block_comment, - [82028] = 7, + ACTIONS(6826), 3, + sym_self, + sym_super, + sym_crate, + [95539] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - sym_super, - ACTIONS(5944), 1, - sym_identifier, - ACTIONS(5946), 1, - anon_sym_LT2, - STATE(2563), 1, - sym_type_arguments, - STATE(2721), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6828), 1, + anon_sym_SEMI, + STATE(4026), 1, + sym_where_clause, + STATE(3222), 2, sym_line_comment, sym_block_comment, - [82051] = 7, + [95562] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5948), 1, - anon_sym_RPAREN, - ACTIONS(5950), 1, - anon_sym_COMMA, - STATE(2993), 1, - aux_sym_tuple_type_repeat1, - STATE(2722), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(413), 1, + sym_block, + STATE(3965), 1, + sym_label, + STATE(3223), 2, sym_line_comment, sym_block_comment, - [82074] = 7, + [95585] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(678), 1, - sym_declaration_list, - STATE(3359), 1, - sym_where_clause, - STATE(2723), 2, + ACTIONS(3502), 1, + anon_sym_SQUOTE, + ACTIONS(6470), 1, + sym_identifier, + ACTIONS(6830), 1, + anon_sym_GT, + STATE(3842), 1, + sym_lifetime, + STATE(3224), 2, sym_line_comment, sym_block_comment, - [82097] = 7, + [95608] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(5199), 1, anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5773), 1, - sym_identifier, - STATE(3605), 1, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2292), 1, sym_type_arguments, - STATE(2724), 2, + STATE(2356), 1, + sym_parameters, + STATE(3225), 2, sym_line_comment, sym_block_comment, - [82120] = 7, + [95631] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(1698), 1, - sym_parameters, - STATE(2008), 1, - sym_type_arguments, - STATE(2725), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(419), 1, + sym_block, + STATE(3965), 1, + sym_label, + STATE(3226), 2, sym_line_comment, sym_block_comment, - [82143] = 7, + [95654] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5773), 1, + ACTIONS(3502), 1, + anon_sym_SQUOTE, + ACTIONS(6470), 1, sym_identifier, - STATE(3759), 1, - sym_type_arguments, - STATE(2726), 2, + ACTIONS(6832), 1, + anon_sym_GT, + STATE(3842), 1, + sym_lifetime, + STATE(3227), 2, sym_line_comment, sym_block_comment, - [82166] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [95677] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(403), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2727), 2, + ACTIONS(5731), 1, + anon_sym_COLON, + STATE(3918), 1, + sym_trait_bounds, + ACTIONS(6430), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3228), 2, sym_line_comment, sym_block_comment, - [82189] = 7, + [95698] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - STATE(470), 1, + STATE(1787), 1, sym_block, - STATE(3740), 1, + STATE(4169), 1, sym_label, - STATE(2728), 2, + STATE(3229), 2, sym_line_comment, sym_block_comment, - [82212] = 7, + [95721] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3701), 1, - sym_block, - STATE(2729), 2, + ACTIONS(6834), 1, + anon_sym_DQUOTE, + ACTIONS(6836), 2, + sym_string_content, + sym_escape_sequence, + STATE(3230), 3, sym_line_comment, sym_block_comment, - [82235] = 7, + aux_sym_string_literal_repeat1, + [95740] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5688), 1, - anon_sym_RPAREN, - ACTIONS(5690), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_parameters_repeat1, - STATE(2730), 2, + ACTIONS(3502), 1, + anon_sym_SQUOTE, + ACTIONS(6470), 1, + sym_identifier, + ACTIONS(6839), 1, + anon_sym_GT, + STATE(3842), 1, + sym_lifetime, + STATE(3231), 2, sym_line_comment, sym_block_comment, - [82258] = 6, + [95763] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5952), 1, - anon_sym_DQUOTE, - STATE(2597), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2731), 2, + ACTIONS(3890), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_block, + STATE(3965), 1, + sym_label, + STATE(3232), 2, sym_line_comment, sym_block_comment, - [82279] = 5, + [95786] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5954), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + STATE(4065), 1, + sym_type_arguments, + ACTIONS(6478), 2, sym_identifier, - STATE(2732), 2, + sym_super, + STATE(3233), 2, sym_line_comment, sym_block_comment, - ACTIONS(5956), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [82298] = 7, + [95807] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3890), 1, anon_sym_SQUOTE, - STATE(489), 1, + STATE(1791), 1, sym_block, - STATE(3740), 1, + STATE(4169), 1, sym_label, - STATE(2733), 2, + STATE(3234), 2, sym_line_comment, sym_block_comment, - [82321] = 5, - ACTIONS(3), 1, + [95830] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5958), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2734), 2, + ACTIONS(5627), 1, + anon_sym_LBRACE, + ACTIONS(5631), 1, + anon_sym_where, + STATE(1305), 1, + sym_field_declaration_list, + STATE(3784), 1, + sym_where_clause, + STATE(3235), 2, sym_line_comment, sym_block_comment, - ACTIONS(5960), 3, + [95853] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3594), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82340] = 7, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6841), 1, + anon_sym_SEMI, + STATE(3992), 1, + sym_where_clause, + STATE(3236), 2, + sym_line_comment, + sym_block_comment, + [95876] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, + ACTIONS(6383), 1, anon_sym_RPAREN, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5700), 1, + ACTIONS(6385), 1, anon_sym_COMMA, - STATE(2846), 1, + STATE(3508), 1, aux_sym_parameters_repeat1, - STATE(2735), 2, + STATE(3237), 2, sym_line_comment, sym_block_comment, - [82363] = 7, + [95896] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5962), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2736), 2, + ACTIONS(3714), 1, + anon_sym_RPAREN, + ACTIONS(6843), 1, + anon_sym_COMMA, + STATE(3489), 1, + aux_sym_tuple_type_repeat1, + STATE(3238), 2, sym_line_comment, sym_block_comment, - [82386] = 7, + [95916] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5964), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2737), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5619), 1, + anon_sym_COLON_COLON, + STATE(2285), 1, + sym_type_arguments, + STATE(3239), 2, sym_line_comment, sym_block_comment, - [82409] = 7, + [95936] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5966), 1, - anon_sym_LPAREN, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, + ACTIONS(6264), 1, + anon_sym_RPAREN, + ACTIONS(6266), 1, + anon_sym_COMMA, + STATE(3287), 1, + aux_sym_parameters_repeat1, + STATE(3240), 2, + sym_line_comment, + sym_block_comment, + [95956] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6847), 1, + anon_sym_EQ, + ACTIONS(6845), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3241), 2, + sym_line_comment, + sym_block_comment, + [95974] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5608), 1, anon_sym_LBRACE, - STATE(2617), 1, - sym_token_tree, - STATE(2738), 2, + ACTIONS(6849), 1, + anon_sym_SEMI, + STATE(776), 1, + sym_declaration_list, + STATE(3242), 2, sym_line_comment, sym_block_comment, - [82432] = 7, + [95994] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5972), 1, + ACTIONS(6851), 1, anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2739), 2, + ACTIONS(6853), 1, + anon_sym_COMMA, + STATE(3291), 1, + aux_sym_use_bounds_repeat1, + STATE(3243), 2, sym_line_comment, sym_block_comment, - [82455] = 7, + [96014] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5974), 1, + ACTIONS(6855), 1, anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2740), 2, + ACTIONS(6857), 1, + anon_sym_COMMA, + STATE(3293), 1, + aux_sym_use_bounds_repeat1, + STATE(3244), 2, sym_line_comment, sym_block_comment, - [82478] = 7, + [96034] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1780), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2741), 2, + ACTIONS(5680), 1, + anon_sym_RBRACE, + ACTIONS(6859), 1, + anon_sym_COMMA, + STATE(3553), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3245), 2, sym_line_comment, sym_block_comment, - [82501] = 7, + [96054] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1782), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2742), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6861), 1, + anon_sym_SEMI, + ACTIONS(6863), 1, + anon_sym_EQ, + STATE(3246), 2, sym_line_comment, sym_block_comment, - [82524] = 6, + [96074] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5976), 1, - anon_sym_DQUOTE, - STATE(2750), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2743), 2, + ACTIONS(5680), 1, + anon_sym_RBRACE, + ACTIONS(6859), 1, + anon_sym_COMMA, + STATE(3558), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3247), 2, sym_line_comment, sym_block_comment, - [82545] = 7, + [96094] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(488), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2744), 2, + ACTIONS(6865), 1, + anon_sym_RBRACE, + ACTIONS(6867), 1, + anon_sym_COMMA, + STATE(3295), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3248), 2, sym_line_comment, sym_block_comment, - [82568] = 7, + [96114] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1787), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2745), 2, + ACTIONS(5384), 1, + anon_sym_GT, + ACTIONS(6869), 1, + anon_sym_COMMA, + STATE(3285), 1, + aux_sym_type_parameters_repeat1, + STATE(3249), 2, sym_line_comment, sym_block_comment, - [82591] = 7, + [96134] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5978), 1, - anon_sym_LPAREN, - ACTIONS(5980), 1, - anon_sym_LBRACK, - ACTIONS(5982), 1, - anon_sym_LBRACE, - STATE(1068), 1, - sym_delim_token_tree, - STATE(2746), 2, + ACTIONS(5386), 1, + anon_sym_GT, + ACTIONS(6871), 1, + anon_sym_COMMA, + STATE(3283), 1, + aux_sym_type_parameters_repeat1, + STATE(3250), 2, sym_line_comment, sym_block_comment, - [82614] = 7, + [96154] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1789), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2747), 2, + ACTIONS(5386), 1, + anon_sym_GT, + ACTIONS(6871), 1, + anon_sym_COMMA, + STATE(3302), 1, + aux_sym_type_parameters_repeat1, + STATE(3251), 2, sym_line_comment, sym_block_comment, - [82637] = 7, + [96174] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1615), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2748), 2, + ACTIONS(6873), 1, + anon_sym_SEMI, + STATE(715), 1, + sym_declaration_list, + STATE(3252), 2, sym_line_comment, sym_block_comment, - [82660] = 7, + [96194] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1793), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2749), 2, + ACTIONS(6875), 1, + anon_sym_SEMI, + STATE(1461), 1, + sym_declaration_list, + STATE(3253), 2, sym_line_comment, sym_block_comment, - [82683] = 6, + [96214] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5984), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2750), 2, + ACTIONS(6877), 1, + sym_identifier, + ACTIONS(6879), 1, + anon_sym_ref, + ACTIONS(6881), 1, + sym_mutable_specifier, + STATE(3254), 2, sym_line_comment, sym_block_comment, - [82704] = 7, + [96234] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5978), 1, - anon_sym_LPAREN, - ACTIONS(5980), 1, - anon_sym_LBRACK, - ACTIONS(5982), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - STATE(1070), 1, - sym_delim_token_tree, - STATE(2751), 2, + ACTIONS(6883), 1, + anon_sym_SEMI, + STATE(718), 1, + sym_declaration_list, + STATE(3255), 2, sym_line_comment, sym_block_comment, - [82727] = 7, + [96254] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5986), 1, - sym_identifier, - STATE(2099), 1, - sym_type_arguments, - STATE(2752), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6885), 1, + anon_sym_SEMI, + ACTIONS(6887), 1, + anon_sym_EQ, + STATE(3256), 2, sym_line_comment, sym_block_comment, - [82750] = 7, + [96274] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5986), 1, + ACTIONS(5418), 1, + anon_sym_COLON_COLON, + ACTIONS(5490), 1, + anon_sym_BANG, + ACTIONS(6889), 1, sym_identifier, - STATE(2102), 1, - sym_type_arguments, - STATE(2753), 2, + STATE(3257), 2, sym_line_comment, sym_block_comment, - [82773] = 7, + [96294] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, - STATE(2754), 2, + ACTIONS(6891), 1, + anon_sym_RBRACE, + ACTIONS(6893), 1, + anon_sym_COMMA, + STATE(3312), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3258), 2, sym_line_comment, sym_block_comment, - [82796] = 7, + [96314] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, - STATE(2755), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6895), 1, + anon_sym_SEMI, + STATE(4270), 1, + sym_where_clause, + STATE(3259), 2, sym_line_comment, sym_block_comment, - [82819] = 7, + [96334] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1810), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2756), 2, + STATE(3260), 2, sym_line_comment, sym_block_comment, - [82842] = 4, + ACTIONS(6897), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [96350] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2757), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6899), 1, + anon_sym_SEMI, + STATE(4126), 1, + sym_where_clause, + STATE(3261), 2, sym_line_comment, sym_block_comment, - ACTIONS(1023), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [82859] = 7, + [96370] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1816), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2758), 2, + ACTIONS(6901), 1, + anon_sym_SEMI, + STATE(1486), 1, + sym_declaration_list, + STATE(3262), 2, sym_line_comment, sym_block_comment, - [82882] = 6, + [96390] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5990), 1, - anon_sym_DQUOTE, - STATE(2763), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2759), 2, + ACTIONS(5528), 1, + anon_sym_RBRACE, + ACTIONS(6903), 1, + anon_sym_COMMA, + STATE(3403), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3263), 2, sym_line_comment, sym_block_comment, - [82903] = 7, + [96410] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1821), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2760), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(6905), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(3264), 2, sym_line_comment, sym_block_comment, - [82926] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [96430] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(421), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2761), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6907), 1, + anon_sym_SEMI, + STATE(3998), 1, + sym_where_clause, + STATE(3265), 2, sym_line_comment, sym_block_comment, - [82949] = 7, + [96450] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5992), 1, - anon_sym_LPAREN, - ACTIONS(5994), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - anon_sym_LBRACE, - STATE(1826), 1, - sym_delim_token_tree, - STATE(2762), 2, + ACTIONS(4882), 1, + anon_sym_RBRACE, + ACTIONS(6909), 1, + anon_sym_COMMA, + STATE(3397), 1, + aux_sym_use_list_repeat1, + STATE(3266), 2, sym_line_comment, sym_block_comment, - [82972] = 6, + [96470] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5998), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2763), 2, + ACTIONS(1023), 1, + anon_sym_RPAREN, + ACTIONS(4774), 1, + anon_sym_COMMA, + STATE(3164), 1, + aux_sym_arguments_repeat1, + STATE(3267), 2, sym_line_comment, sym_block_comment, - [82993] = 7, + [96490] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5992), 1, - anon_sym_LPAREN, - ACTIONS(5994), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - anon_sym_LBRACE, - STATE(1830), 1, - sym_delim_token_tree, - STATE(2764), 2, + STATE(3268), 2, sym_line_comment, sym_block_comment, - [83016] = 7, + ACTIONS(6911), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [96506] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(6000), 1, - sym_identifier, - STATE(2099), 1, - sym_type_arguments, - STATE(2765), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6913), 1, + anon_sym_SEMI, + STATE(4187), 1, + sym_where_clause, + STATE(3269), 2, sym_line_comment, sym_block_comment, - [83039] = 7, + [96526] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(6000), 1, - sym_identifier, - STATE(2102), 1, - sym_type_arguments, - STATE(2766), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(6915), 1, + anon_sym_SEMI, + STATE(1512), 1, + sym_declaration_list, + STATE(3270), 2, sym_line_comment, sym_block_comment, - [83062] = 7, + [96546] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, - STATE(2767), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6917), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3271), 2, sym_line_comment, sym_block_comment, - [83085] = 7, + [96564] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, - STATE(2768), 2, + ACTIONS(917), 1, + anon_sym_RBRACK, + ACTIONS(6919), 1, + anon_sym_COMMA, + STATE(3164), 1, + aux_sym_arguments_repeat1, + STATE(3272), 2, sym_line_comment, sym_block_comment, - [83108] = 5, + [96584] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, + ACTIONS(6234), 1, anon_sym_PIPE, - STATE(2769), 2, + ACTIONS(6921), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3273), 2, sym_line_comment, sym_block_comment, - ACTIONS(6002), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [83127] = 6, + [96602] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6004), 1, - anon_sym_DQUOTE, - STATE(2771), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2770), 2, + ACTIONS(1637), 1, + anon_sym_GT, + ACTIONS(6923), 1, + anon_sym_COMMA, + STATE(3330), 1, + aux_sym_type_arguments_repeat1, + STATE(3274), 2, sym_line_comment, sym_block_comment, - [83148] = 6, + [96622] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6006), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2771), 2, + ACTIONS(1637), 1, + anon_sym_GT, + ACTIONS(6923), 1, + anon_sym_COMMA, + STATE(3503), 1, + aux_sym_type_arguments_repeat1, + STATE(3275), 2, sym_line_comment, sym_block_comment, - [83169] = 7, + [96642] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(6008), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, - STATE(2772), 2, + ACTIONS(3550), 1, + anon_sym_RPAREN, + ACTIONS(6925), 1, + anon_sym_COMMA, + STATE(3057), 1, + aux_sym_slice_pattern_repeat1, + STATE(3276), 2, sym_line_comment, sym_block_comment, - [83192] = 7, + [96662] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(6008), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, - STATE(2773), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(6927), 1, + anon_sym_SEMI, + STATE(687), 1, + sym_declaration_list, + STATE(3277), 2, sym_line_comment, sym_block_comment, - [83215] = 5, + [96682] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6010), 1, + ACTIONS(5913), 1, + anon_sym_RBRACE, + ACTIONS(6929), 1, anon_sym_COMMA, - ACTIONS(6002), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2774), 3, + STATE(3507), 1, + aux_sym_struct_pattern_repeat1, + STATE(3278), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [83234] = 4, + [96702] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2775), 2, + STATE(3279), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [83251] = 7, + ACTIONS(5554), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [96718] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5808), 1, - sym_identifier, - STATE(1430), 1, - sym_type_arguments, - STATE(2776), 2, + ACTIONS(3552), 1, + anon_sym_RPAREN, + ACTIONS(6931), 1, + anon_sym_COMMA, + STATE(3057), 1, + aux_sym_slice_pattern_repeat1, + STATE(3280), 2, sym_line_comment, sym_block_comment, - [83274] = 5, + [96738] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - STATE(2777), 2, + STATE(3281), 2, sym_line_comment, sym_block_comment, - ACTIONS(6013), 3, - anon_sym_RPAREN, + ACTIONS(5556), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_COMMA, - [83293] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + anon_sym_if, + [96754] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(405), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2778), 2, + ACTIONS(5915), 1, + anon_sym_RBRACE, + ACTIONS(6933), 1, + anon_sym_COMMA, + STATE(3507), 1, + aux_sym_struct_pattern_repeat1, + STATE(3282), 2, sym_line_comment, sym_block_comment, - [83316] = 5, + [96774] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6015), 1, - anon_sym_DQUOTE, - ACTIONS(6017), 2, - sym_string_content, - sym_escape_sequence, - STATE(2779), 3, + ACTIONS(6935), 1, + anon_sym_GT, + ACTIONS(6937), 1, + anon_sym_COMMA, + STATE(3283), 3, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [83335] = 7, + aux_sym_type_parameters_repeat1, + [96792] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(6008), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, - STATE(2780), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6940), 1, + anon_sym_SEMI, + ACTIONS(6942), 1, + anon_sym_EQ, + STATE(3284), 2, sym_line_comment, sym_block_comment, - [83358] = 7, + [96812] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(6008), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, - STATE(2781), 2, + ACTIONS(5370), 1, + anon_sym_GT, + ACTIONS(6944), 1, + anon_sym_COMMA, + STATE(3283), 1, + aux_sym_type_parameters_repeat1, + STATE(3285), 2, sym_line_comment, sym_block_comment, - [83381] = 7, + [96832] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(6020), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2782), 2, + ACTIONS(5302), 1, + anon_sym_COLON_COLON, + ACTIONS(6946), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3286), 2, sym_line_comment, sym_block_comment, - [83404] = 7, + [96850] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - STATE(2783), 2, + ACTIONS(1365), 1, + anon_sym_RPAREN, + ACTIONS(6377), 1, + anon_sym_COMMA, + STATE(3521), 1, + aux_sym_parameters_repeat1, + STATE(3287), 2, sym_line_comment, sym_block_comment, - [83427] = 7, + [96870] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3493), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2784), 2, + STATE(3288), 2, sym_line_comment, sym_block_comment, - [83450] = 6, + ACTIONS(6948), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [96886] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2785), 2, + ACTIONS(1365), 1, + anon_sym_RPAREN, + ACTIONS(6377), 1, + anon_sym_COMMA, + STATE(3332), 1, + aux_sym_parameters_repeat1, + STATE(3289), 2, sym_line_comment, sym_block_comment, - [83471] = 7, + [96906] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6022), 1, - anon_sym_RPAREN, - ACTIONS(6024), 1, - anon_sym_COMMA, - STATE(2998), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2786), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(6950), 1, + anon_sym_SEMI, + STATE(847), 1, + sym_declaration_list, + STATE(3290), 2, sym_line_comment, sym_block_comment, - [83494] = 7, + [96926] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2312), 1, - sym_parameters, - STATE(3321), 1, - sym_type_parameters, - STATE(2787), 2, + ACTIONS(6639), 1, + anon_sym_GT, + ACTIONS(6952), 1, + anon_sym_COMMA, + STATE(3538), 1, + aux_sym_use_bounds_repeat1, + STATE(3291), 2, sym_line_comment, sym_block_comment, - [83517] = 7, + [96946] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(6026), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2788), 2, + STATE(3292), 2, sym_line_comment, sym_block_comment, - [83540] = 5, + ACTIONS(6954), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [96962] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6028), 1, - anon_sym_in, - STATE(2789), 2, + ACTIONS(6641), 1, + anon_sym_GT, + ACTIONS(6956), 1, + anon_sym_COMMA, + STATE(3538), 1, + aux_sym_use_bounds_repeat1, + STATE(3293), 2, sym_line_comment, sym_block_comment, - ACTIONS(6030), 3, - sym_self, - sym_super, - sym_crate, - [83559] = 7, + [96982] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6032), 1, - anon_sym_RPAREN, - ACTIONS(6034), 1, + ACTIONS(6958), 1, + anon_sym_RBRACE, + ACTIONS(6960), 1, anon_sym_COMMA, - STATE(3011), 1, - aux_sym_tuple_type_repeat1, - STATE(2790), 2, + STATE(3356), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3294), 2, sym_line_comment, sym_block_comment, - [83582] = 7, + [97002] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6036), 1, - anon_sym_LBRACE, - ACTIONS(6038), 1, - anon_sym_for, - ACTIONS(6040), 1, - anon_sym_loop, - ACTIONS(6042), 1, - anon_sym_while, - STATE(2791), 2, + ACTIONS(5674), 1, + anon_sym_RBRACE, + ACTIONS(6962), 1, + anon_sym_COMMA, + STATE(3553), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3295), 2, sym_line_comment, sym_block_comment, - [83605] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [97022] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(319), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2792), 2, + ACTIONS(5674), 1, + anon_sym_RBRACE, + ACTIONS(6962), 1, + anon_sym_COMMA, + STATE(3334), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3296), 2, sym_line_comment, sym_block_comment, - [83628] = 7, + [97042] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6044), 1, - anon_sym_LBRACE, - ACTIONS(6046), 1, - anon_sym_for, - ACTIONS(6048), 1, - anon_sym_loop, - ACTIONS(6050), 1, - anon_sym_while, - STATE(2793), 2, + STATE(3297), 2, sym_line_comment, sym_block_comment, - [83651] = 5, + ACTIONS(6964), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [97058] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5894), 1, - anon_sym_COLON_COLON, - STATE(2794), 2, + STATE(3298), 2, sym_line_comment, sym_block_comment, - ACTIONS(4883), 3, + ACTIONS(5540), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83670] = 7, + [97074] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3510), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2795), 2, + STATE(3299), 2, sym_line_comment, sym_block_comment, - [83693] = 5, + ACTIONS(5542), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [97090] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5898), 1, - anon_sym_COLON_COLON, - STATE(2796), 2, + STATE(3300), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, + ACTIONS(5420), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83712] = 5, + [97106] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_COLON_COLON, - STATE(2797), 2, + STATE(3301), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, + ACTIONS(5544), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83731] = 5, + [97122] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6052), 1, - anon_sym_COLON, - STATE(2798), 2, + ACTIONS(5382), 1, + anon_sym_GT, + ACTIONS(6966), 1, + anon_sym_COMMA, + STATE(3283), 1, + aux_sym_type_parameters_repeat1, + STATE(3302), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [83750] = 7, + [97142] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2301), 1, - sym_parameters, - STATE(3353), 1, - sym_type_parameters, - STATE(2799), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(6968), 1, + anon_sym_SEMI, + STATE(1549), 1, + sym_declaration_list, + STATE(3303), 2, sym_line_comment, sym_block_comment, - [83773] = 7, + [97162] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3665), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2800), 2, + STATE(3304), 2, sym_line_comment, sym_block_comment, - [83796] = 5, + ACTIONS(5546), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [97178] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_COLON_COLON, - STATE(2801), 2, + STATE(3305), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, + ACTIONS(5548), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83815] = 7, + [97194] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(6970), 1, + anon_sym_SEMI, + STATE(1562), 1, + sym_declaration_list, + STATE(3306), 2, + sym_line_comment, + sym_block_comment, + [97214] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6972), 1, anon_sym_RPAREN, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5724), 1, + ACTIONS(6974), 1, anon_sym_COMMA, - STATE(3015), 1, - aux_sym_parameters_repeat1, - STATE(2802), 2, + STATE(3339), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3307), 2, sym_line_comment, sym_block_comment, - [83838] = 6, + [97234] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3605), 1, - sym_type_arguments, - ACTIONS(5312), 2, - sym_identifier, - sym_super, - STATE(2803), 2, + STATE(3308), 2, sym_line_comment, sym_block_comment, - [83859] = 6, + ACTIONS(5550), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [97250] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3759), 1, - sym_type_arguments, - ACTIONS(5312), 2, - sym_identifier, - sym_super, - STATE(2804), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6976), 1, + anon_sym_SEMI, + ACTIONS(6978), 1, + anon_sym_EQ, + STATE(3309), 2, sym_line_comment, sym_block_comment, - [83880] = 5, + [97270] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5894), 1, - anon_sym_COLON_COLON, - STATE(2805), 2, + STATE(3310), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6980), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [97286] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(3311), 2, sym_line_comment, sym_block_comment, - ACTIONS(4915), 3, + ACTIONS(5558), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83899] = 7, + [97302] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(6054), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2806), 2, + ACTIONS(5676), 1, + anon_sym_RBRACE, + ACTIONS(6982), 1, + anon_sym_COMMA, + STATE(3355), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3312), 2, sym_line_comment, sym_block_comment, - [83922] = 7, + [97322] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3550), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2807), 2, + ACTIONS(5676), 1, + anon_sym_RBRACE, + ACTIONS(6982), 1, + anon_sym_COMMA, + STATE(3345), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3313), 2, sym_line_comment, sym_block_comment, - [83945] = 7, + [97342] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(6056), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2808), 2, + STATE(3314), 2, sym_line_comment, sym_block_comment, - [83968] = 5, + ACTIONS(6984), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [97358] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5898), 1, - anon_sym_COLON_COLON, - STATE(2809), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(6986), 1, + anon_sym_SEMI, + STATE(1583), 1, + sym_declaration_list, + STATE(3315), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83987] = 5, + [97378] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_COLON_COLON, - STATE(2810), 2, + STATE(3316), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, + ACTIONS(5560), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [84006] = 5, + [97394] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_COLON_COLON, - STATE(2811), 2, + STATE(3317), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, + ACTIONS(5564), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [84025] = 7, + [97410] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2296), 1, - sym_parameters, - STATE(3366), 1, - sym_type_parameters, - STATE(2812), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6988), 1, + anon_sym_SEMI, + ACTIONS(6990), 1, + anon_sym_EQ, + STATE(3318), 2, sym_line_comment, sym_block_comment, - [84048] = 7, + [97430] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2286), 1, - sym_parameters, - STATE(3331), 1, - sym_type_parameters, - STATE(2813), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6992), 1, + anon_sym_SEMI, + STATE(4172), 1, + sym_where_clause, + STATE(3319), 2, sym_line_comment, sym_block_comment, - [84071] = 7, + [97450] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3703), 1, - sym_block, - STATE(2814), 2, + ACTIONS(6994), 1, + anon_sym_SEMI, + STATE(853), 1, + sym_declaration_list, + STATE(3320), 2, sym_line_comment, sym_block_comment, - [84094] = 7, + [97470] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3704), 1, - sym_block, - STATE(2815), 2, + STATE(3321), 2, sym_line_comment, sym_block_comment, - [84117] = 6, + ACTIONS(5566), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [97486] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3222), 1, - sym_trait_bounds, - ACTIONS(5606), 2, - anon_sym_GT, + ACTIONS(919), 1, + anon_sym_RPAREN, + ACTIONS(6996), 1, anon_sym_COMMA, - STATE(2816), 2, + STATE(3164), 1, + aux_sym_arguments_repeat1, + STATE(3322), 2, sym_line_comment, sym_block_comment, - [84138] = 7, + [97506] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3667), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2817), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6998), 1, + anon_sym_SEMI, + STATE(4275), 1, + sym_where_clause, + STATE(3323), 2, sym_line_comment, sym_block_comment, - [84161] = 7, + [97526] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3530), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2818), 2, + ACTIONS(7000), 1, + anon_sym_SEMI, + STATE(1619), 1, + sym_declaration_list, + STATE(3324), 2, sym_line_comment, sym_block_comment, - [84184] = 7, + [97546] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3541), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2819), 2, + ACTIONS(6691), 1, + anon_sym_RPAREN, + ACTIONS(6693), 1, + anon_sym_COMMA, + STATE(3406), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3325), 2, sym_line_comment, sym_block_comment, - [84207] = 7, + [97566] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3597), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2820), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(7002), 1, + anon_sym_SEMI, + STATE(3925), 1, + sym_where_clause, + STATE(3326), 2, sym_line_comment, sym_block_comment, - [84230] = 7, + [97586] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3622), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2821), 2, + STATE(3327), 2, sym_line_comment, sym_block_comment, - [84253] = 7, + ACTIONS(5450), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [97602] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - STATE(1123), 1, - sym_type_arguments, - STATE(2822), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6635), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3328), 2, sym_line_comment, sym_block_comment, - [84276] = 7, + [97620] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - STATE(1643), 1, - sym_type_arguments, - STATE(2823), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7004), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3329), 2, sym_line_comment, sym_block_comment, - [84299] = 6, + [97638] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6058), 1, - anon_sym_EQ, - ACTIONS(6060), 2, + ACTIONS(1643), 1, anon_sym_GT, + ACTIONS(7006), 1, anon_sym_COMMA, - STATE(2824), 2, + STATE(3503), 1, + aux_sym_type_arguments_repeat1, + STATE(3330), 2, sym_line_comment, sym_block_comment, - [84320] = 6, + [97658] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5354), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2825), 2, + STATE(3331), 2, sym_line_comment, sym_block_comment, - [84341] = 7, + ACTIONS(7008), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [97674] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6062), 1, - anon_sym_LBRACE, - ACTIONS(6064), 1, - anon_sym_for, - ACTIONS(6066), 1, - anon_sym_loop, - ACTIONS(6068), 1, - anon_sym_while, - STATE(2826), 2, + ACTIONS(1361), 1, + anon_sym_RPAREN, + ACTIONS(7010), 1, + anon_sym_COMMA, + STATE(3521), 1, + aux_sym_parameters_repeat1, + STATE(3332), 2, sym_line_comment, sym_block_comment, - [84364] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [97694] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(409), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2827), 2, + STATE(3333), 2, sym_line_comment, sym_block_comment, - [84387] = 7, + ACTIONS(5570), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [97710] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5802), 1, - anon_sym_LPAREN, - ACTIONS(5804), 1, - anon_sym_LBRACK, - ACTIONS(5806), 1, - anon_sym_LBRACE, - STATE(404), 1, - sym_delim_token_tree, - STATE(2828), 2, + ACTIONS(5686), 1, + anon_sym_RBRACE, + ACTIONS(7012), 1, + anon_sym_COMMA, + STATE(3553), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3334), 2, sym_line_comment, sym_block_comment, - [84410] = 6, + [97730] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5320), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2829), 2, + ACTIONS(5562), 1, + anon_sym_RBRACE, + ACTIONS(7014), 1, + anon_sym_COMMA, + STATE(3403), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3335), 2, sym_line_comment, sym_block_comment, - [84431] = 7, + [97750] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6070), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - ACTIONS(6072), 1, - anon_sym_for, - ACTIONS(6074), 1, - anon_sym_loop, - ACTIONS(6076), 1, - anon_sym_while, - STATE(2830), 2, + ACTIONS(7016), 1, + anon_sym_SEMI, + STATE(1646), 1, + sym_declaration_list, + STATE(3336), 2, sym_line_comment, sym_block_comment, - [84454] = 7, + [97770] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6078), 1, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7018), 1, anon_sym_SEMI, - STATE(3587), 1, - sym_where_clause, - STATE(2831), 2, + STATE(1650), 1, + sym_declaration_list, + STATE(3337), 2, sym_line_comment, sym_block_comment, - [84477] = 5, + [97790] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, - sym_identifier, - STATE(2832), 2, + STATE(3338), 2, sym_line_comment, sym_block_comment, - ACTIONS(6082), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [84496] = 7, + ACTIONS(5574), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [97806] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(2008), 1, - sym_type_arguments, - STATE(2565), 1, - sym_trait_bounds, - STATE(2833), 2, + ACTIONS(7020), 1, + anon_sym_RPAREN, + ACTIONS(7022), 1, + anon_sym_COMMA, + STATE(3339), 3, sym_line_comment, sym_block_comment, - [84519] = 7, + aux_sym_ordered_field_declaration_list_repeat1, + [97824] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4905), 1, - anon_sym_for, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2834), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7025), 1, + anon_sym_SEMI, + STATE(1657), 1, + sym_declaration_list, + STATE(3340), 2, sym_line_comment, sym_block_comment, - [84542] = 5, + [97844] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_in, - STATE(2835), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7027), 1, + anon_sym_SEMI, + STATE(1660), 1, + sym_declaration_list, + STATE(3341), 2, sym_line_comment, sym_block_comment, - ACTIONS(6086), 3, - sym_self, - sym_super, - sym_crate, - [84561] = 7, + [97864] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - ACTIONS(6088), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2836), 2, + STATE(3342), 2, sym_line_comment, sym_block_comment, - [84584] = 7, + ACTIONS(5576), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [97880] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - ACTIONS(6090), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2837), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7029), 1, + anon_sym_SEMI, + ACTIONS(7031), 1, + anon_sym_EQ, + STATE(3343), 2, sym_line_comment, sym_block_comment, - [84607] = 5, + [97900] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6092), 1, - anon_sym_COLON, - STATE(2838), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7033), 1, + anon_sym_SEMI, + ACTIONS(7035), 1, + anon_sym_EQ, + STATE(3344), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [84626] = 7, + [97920] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - ACTIONS(6094), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2839), 2, + ACTIONS(5695), 1, + anon_sym_RBRACE, + ACTIONS(7037), 1, + anon_sym_COMMA, + STATE(3355), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3345), 2, sym_line_comment, sym_block_comment, - [84649] = 7, + [97940] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(6096), 1, - anon_sym_SEMI, - ACTIONS(6098), 1, - anon_sym_EQ, - ACTIONS(6100), 1, - anon_sym_else, - STATE(2840), 2, + ACTIONS(7039), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3346), 2, sym_line_comment, sym_block_comment, - [84672] = 7, + [97958] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(6102), 1, + ACTIONS(7041), 1, anon_sym_SEMI, - STATE(3758), 1, + STATE(4022), 1, sym_where_clause, - STATE(2841), 2, + STATE(3347), 2, sym_line_comment, sym_block_comment, - [84695] = 7, + [97978] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1460), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2842), 2, + STATE(3348), 2, sym_line_comment, sym_block_comment, - [84718] = 7, + ACTIONS(963), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [97994] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2076), 1, - sym_parameters, - STATE(2843), 2, + ACTIONS(3502), 1, + anon_sym_SQUOTE, + ACTIONS(6470), 1, + sym_identifier, + STATE(3842), 1, + sym_lifetime, + STATE(3349), 2, sym_line_comment, sym_block_comment, - [84741] = 7, + [98014] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6104), 1, + ACTIONS(7043), 1, anon_sym_RPAREN, - ACTIONS(6106), 1, + ACTIONS(7045), 1, anon_sym_COMMA, - STATE(3071), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2844), 2, + STATE(3339), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3350), 2, sym_line_comment, sym_block_comment, - [84764] = 7, + [98034] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6108), 1, - anon_sym_SEMI, - STATE(3577), 1, - sym_where_clause, - STATE(2845), 2, + ACTIONS(7049), 1, + anon_sym_COLON, + ACTIONS(7047), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3351), 2, sym_line_comment, sym_block_comment, - [84787] = 6, + [98052] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1357), 1, - anon_sym_RPAREN, - ACTIONS(6110), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, - STATE(2846), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7051), 1, + anon_sym_SEMI, + STATE(1278), 1, + sym_declaration_list, + STATE(3352), 2, sym_line_comment, sym_block_comment, - [84807] = 6, + [98072] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2572), 1, - anon_sym_RPAREN, - ACTIONS(6112), 1, - anon_sym_COMMA, - STATE(3041), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2847), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7053), 1, + anon_sym_SEMI, + ACTIONS(7055), 1, + anon_sym_EQ, + STATE(3353), 2, sym_line_comment, sym_block_comment, - [84827] = 4, + [98092] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2848), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(7057), 1, + anon_sym_SEMI, + STATE(4107), 1, + sym_where_clause, + STATE(3354), 2, sym_line_comment, sym_block_comment, - ACTIONS(6114), 3, - anon_sym_SEMI, + [98112] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7059), 1, anon_sym_RBRACE, + ACTIONS(7061), 1, anon_sym_COMMA, - [84843] = 6, + STATE(3355), 3, + sym_line_comment, + sym_block_comment, + aux_sym_field_declaration_list_repeat1, + [98130] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3120), 1, - anon_sym_RBRACK, - ACTIONS(6116), 1, + ACTIONS(5688), 1, + anon_sym_RBRACE, + ACTIONS(7064), 1, anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, - STATE(2849), 2, + STATE(3355), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3356), 2, sym_line_comment, sym_block_comment, - [84863] = 6, + [98150] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(5688), 1, anon_sym_RBRACE, - ACTIONS(6120), 1, + ACTIONS(7064), 1, anon_sym_COMMA, - STATE(2868), 1, + STATE(3360), 1, aux_sym_field_declaration_list_repeat1, - STATE(2850), 2, + STATE(3357), 2, sym_line_comment, sym_block_comment, - [84883] = 6, + [98170] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6122), 1, - anon_sym_RBRACE, - ACTIONS(6124), 1, + ACTIONS(1035), 1, + anon_sym_RBRACK, + ACTIONS(4778), 1, anon_sym_COMMA, - STATE(2901), 1, - aux_sym_struct_pattern_repeat1, - STATE(2851), 2, + STATE(3164), 1, + aux_sym_arguments_repeat1, + STATE(3358), 2, sym_line_comment, sym_block_comment, - [84903] = 4, + [98190] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2852), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5348), 1, + anon_sym_COLON, + STATE(2913), 1, + sym_trait_bounds, + STATE(3359), 2, sym_line_comment, sym_block_comment, - ACTIONS(4963), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84919] = 6, + [98210] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6126), 1, + ACTIONS(5707), 1, anon_sym_RBRACE, - ACTIONS(6128), 1, + ACTIONS(7066), 1, anon_sym_COMMA, - STATE(2904), 1, - aux_sym_struct_pattern_repeat1, - STATE(2853), 2, + STATE(3355), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3360), 2, sym_line_comment, sym_block_comment, - [84939] = 4, + [98230] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2854), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7068), 1, + anon_sym_SEMI, + STATE(1298), 1, + sym_declaration_list, + STATE(3361), 2, sym_line_comment, sym_block_comment, - ACTIONS(6130), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84955] = 6, + [98250] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3276), 1, - anon_sym_RPAREN, - ACTIONS(6132), 1, - anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, - STATE(2855), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7070), 1, + anon_sym_SEMI, + STATE(1300), 1, + sym_declaration_list, + STATE(3362), 2, sym_line_comment, sym_block_comment, - [84975] = 4, + [98270] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2856), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5584), 1, + anon_sym_LBRACE, + STATE(2292), 1, + sym_type_arguments, + STATE(3363), 2, sym_line_comment, sym_block_comment, - ACTIONS(6134), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84991] = 4, + [98290] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2857), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(7072), 1, + anon_sym_SEMI, + STATE(744), 1, + sym_declaration_list, + STATE(3364), 2, sym_line_comment, sym_block_comment, - ACTIONS(6136), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85007] = 4, + [98310] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2858), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7074), 1, + anon_sym_SEMI, + STATE(1308), 1, + sym_declaration_list, + STATE(3365), 2, sym_line_comment, sym_block_comment, - ACTIONS(4999), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85023] = 6, + [98330] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5646), 1, - anon_sym_RPAREN, - ACTIONS(5648), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_parameters_repeat1, - STATE(2859), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7076), 1, + anon_sym_SEMI, + STATE(1310), 1, + sym_declaration_list, + STATE(3366), 2, sym_line_comment, sym_block_comment, - [85043] = 4, + [98350] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2860), 2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(7078), 1, + anon_sym_GT, + ACTIONS(7080), 1, + anon_sym_as, + STATE(3367), 2, sym_line_comment, sym_block_comment, - ACTIONS(5007), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85059] = 4, + [98370] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2861), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7082), 1, + anon_sym_SEMI, + STATE(1316), 1, + sym_declaration_list, + STATE(3368), 2, sym_line_comment, sym_block_comment, - ACTIONS(6138), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85075] = 6, + [98390] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6140), 1, - anon_sym_GT, - ACTIONS(6142), 1, - anon_sym_COMMA, - STATE(2910), 1, - aux_sym_use_bounds_repeat1, - STATE(2862), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7084), 1, + anon_sym_SEMI, + STATE(1318), 1, + sym_declaration_list, + STATE(3369), 2, sym_line_comment, sym_block_comment, - [85095] = 6, + [98410] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6144), 1, - anon_sym_GT, - ACTIONS(6146), 1, - anon_sym_COMMA, - STATE(2911), 1, - aux_sym_use_bounds_repeat1, - STATE(2863), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7086), 1, + anon_sym_SEMI, + ACTIONS(7088), 1, + anon_sym_EQ, + STATE(3370), 2, sym_line_comment, sym_block_comment, - [85115] = 4, + [98430] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2864), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + anon_sym_SEMI, + STATE(781), 1, + sym_declaration_list, + STATE(3371), 2, sym_line_comment, sym_block_comment, - ACTIONS(6148), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85131] = 6, + [98450] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6150), 1, - anon_sym_SEMI, - ACTIONS(6152), 1, - anon_sym_EQ, - STATE(2865), 2, + STATE(3372), 2, sym_line_comment, sym_block_comment, - [85151] = 6, + ACTIONS(5508), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [98466] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6154), 1, - anon_sym_RBRACE, - ACTIONS(6156), 1, - anon_sym_COMMA, - STATE(2912), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2866), 2, + STATE(3373), 2, sym_line_comment, sym_block_comment, - [85171] = 6, + ACTIONS(5578), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [98482] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(5199), 1, anon_sym_LT2, - ACTIONS(6158), 1, + ACTIONS(5684), 1, anon_sym_for, - STATE(2008), 1, + STATE(2292), 1, sym_type_arguments, - STATE(2867), 2, + STATE(3374), 2, sym_line_comment, sym_block_comment, - [85191] = 6, + [98502] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5102), 1, - anon_sym_RBRACE, - ACTIONS(6160), 1, - anon_sym_COMMA, - STATE(2949), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2868), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7092), 1, + anon_sym_SEMI, + STATE(1356), 1, + sym_declaration_list, + STATE(3375), 2, sym_line_comment, sym_block_comment, - [85211] = 4, + [98522] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2869), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7094), 1, + anon_sym_SEMI, + STATE(1358), 1, + sym_declaration_list, + STATE(3376), 2, sym_line_comment, sym_block_comment, - ACTIONS(5023), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85227] = 4, + [98542] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2870), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7096), 1, + anon_sym_SEMI, + STATE(1370), 1, + sym_declaration_list, + STATE(3377), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85243] = 6, + [98562] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4823), 1, - anon_sym_GT, - ACTIONS(6162), 1, - anon_sym_COMMA, - STATE(3128), 1, - aux_sym_type_parameters_repeat1, - STATE(2871), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7098), 1, + anon_sym_SEMI, + STATE(1372), 1, + sym_declaration_list, + STATE(3378), 2, sym_line_comment, sym_block_comment, - [85263] = 6, + [98582] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4823), 1, + ACTIONS(6097), 1, anon_sym_GT, - ACTIONS(6162), 1, + ACTIONS(6099), 1, anon_sym_COMMA, - STATE(2914), 1, + STATE(3578), 1, aux_sym_type_parameters_repeat1, - STATE(2872), 2, + STATE(3379), 2, sym_line_comment, sym_block_comment, - [85283] = 4, + [98602] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2873), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7100), 1, + anon_sym_SEMI, + STATE(1378), 1, + sym_declaration_list, + STATE(3380), 2, sym_line_comment, sym_block_comment, - ACTIONS(4987), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85299] = 6, + [98622] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - ACTIONS(6164), 1, + ACTIONS(7102), 1, anon_sym_SEMI, - STATE(1207), 1, + STATE(1380), 1, sym_declaration_list, - STATE(2874), 2, + STATE(3381), 2, sym_line_comment, sym_block_comment, - [85319] = 4, + [98642] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2875), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7104), 1, + anon_sym_SEMI, + ACTIONS(7106), 1, + anon_sym_EQ, + STATE(3382), 2, sym_line_comment, sym_block_comment, - ACTIONS(4981), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85335] = 5, + [98662] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6166), 1, - anon_sym_RPAREN, - ACTIONS(6168), 1, - anon_sym_COMMA, - STATE(2876), 3, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(7108), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(3383), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [85353] = 6, + [98682] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6171), 1, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7110), 1, anon_sym_SEMI, - ACTIONS(6173), 1, - anon_sym_EQ, - STATE(2877), 2, + STATE(1396), 1, + sym_declaration_list, + STATE(3384), 2, sym_line_comment, sym_block_comment, - [85373] = 6, + [98702] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6175), 1, - anon_sym_RBRACE, - ACTIONS(6177), 1, - anon_sym_COMMA, - STATE(2919), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2878), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7112), 1, + anon_sym_SEMI, + STATE(1398), 1, + sym_declaration_list, + STATE(3385), 2, sym_line_comment, sym_block_comment, - [85393] = 6, + [98722] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6179), 1, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(7114), 1, anon_sym_SEMI, - STATE(3672), 1, - sym_where_clause, - STATE(2879), 2, + STATE(874), 1, + sym_declaration_list, + STATE(3386), 2, sym_line_comment, sym_block_comment, - [85413] = 4, + [98742] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2880), 2, + ACTIONS(7116), 1, + anon_sym_move, + STATE(215), 1, + sym_closure_parameters, + STATE(3387), 2, sym_line_comment, sym_block_comment, - ACTIONS(6181), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [85429] = 6, + [98762] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6183), 1, - anon_sym_SEMI, - STATE(3471), 1, - sym_where_clause, - STATE(2881), 2, + STATE(3388), 2, sym_line_comment, sym_block_comment, - [85449] = 6, + ACTIONS(5592), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [98778] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6185), 1, - anon_sym_SEMI, - STATE(1228), 1, - sym_declaration_list, - STATE(2882), 2, + STATE(3389), 2, sym_line_comment, sym_block_comment, - [85469] = 4, + ACTIONS(5594), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [98794] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2883), 2, + ACTIONS(6272), 1, + anon_sym_COMMA, + ACTIONS(7118), 1, + anon_sym_PIPE, + STATE(3488), 1, + aux_sym_closure_parameters_repeat1, + STATE(3390), 2, sym_line_comment, sym_block_comment, - ACTIONS(6187), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [85485] = 6, + [98814] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_RBRACE, - ACTIONS(6189), 1, - anon_sym_COMMA, - STATE(3004), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2884), 2, + STATE(3391), 2, sym_line_comment, sym_block_comment, - [85505] = 6, + ACTIONS(5530), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [98830] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6191), 1, - anon_sym_SEMI, - STATE(3601), 1, - sym_where_clause, - STATE(2885), 2, + STATE(3392), 2, sym_line_comment, sym_block_comment, - [85525] = 4, + ACTIONS(5532), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [98846] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2886), 2, + STATE(3393), 2, sym_line_comment, sym_block_comment, - ACTIONS(977), 3, - anon_sym_COLON, - anon_sym_GT, + ACTIONS(7120), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [85541] = 5, + [98862] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6193), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2887), 2, + STATE(3394), 2, sym_line_comment, sym_block_comment, - [85559] = 6, + ACTIONS(5534), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [98878] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RPAREN, - ACTIONS(4292), 1, - anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(2888), 2, + STATE(3395), 2, sym_line_comment, sym_block_comment, - [85579] = 6, + ACTIONS(5536), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [98894] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_GT, - ACTIONS(6195), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, - STATE(2889), 2, + STATE(3396), 2, sym_line_comment, sym_block_comment, - [85599] = 6, + ACTIONS(7122), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [98910] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6197), 1, - anon_sym_SEMI, - STATE(3616), 1, - sym_where_clause, - STATE(2890), 2, + ACTIONS(7124), 1, + anon_sym_RBRACE, + ACTIONS(7126), 1, + anon_sym_COMMA, + STATE(3397), 3, sym_line_comment, sym_block_comment, - [85619] = 6, + aux_sym_use_list_repeat1, + [98928] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6199), 1, - sym_identifier, - ACTIONS(6201), 1, - anon_sym_ref, - ACTIONS(6203), 1, - sym_mutable_specifier, - STATE(2891), 2, + ACTIONS(3997), 1, + anon_sym_LBRACE, + ACTIONS(7129), 1, + anon_sym_COLON_COLON, + STATE(1684), 1, + sym_field_initializer_list, + STATE(3398), 2, sym_line_comment, sym_block_comment, - [85639] = 6, + [98948] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4945), 1, - anon_sym_RBRACE, - ACTIONS(6205), 1, - anon_sym_COMMA, - STATE(3004), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2892), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7131), 1, + anon_sym_SEMI, + ACTIONS(7133), 1, + anon_sym_RBRACK, + STATE(3399), 2, sym_line_comment, sym_block_comment, - [85659] = 5, + [98968] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6209), 1, - anon_sym_COLON, - ACTIONS(6207), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2893), 2, + ACTIONS(7135), 1, + anon_sym_LPAREN, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7139), 1, + anon_sym_LBRACE, + STATE(3400), 2, sym_line_comment, sym_block_comment, - [85677] = 5, + [98988] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5652), 1, - anon_sym_GT, - ACTIONS(6211), 1, - anon_sym_COMMA, - STATE(2894), 3, + STATE(3401), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [85695] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6216), 1, - anon_sym_COLON, - ACTIONS(6214), 2, + ACTIONS(7141), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2895), 2, - sym_line_comment, - sym_block_comment, - [85713] = 6, + [99004] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1029), 1, - anon_sym_RBRACK, - ACTIONS(6218), 1, - anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(2896), 2, + ACTIONS(3880), 1, + anon_sym_LT2, + ACTIONS(5635), 1, + anon_sym_COLON_COLON, + STATE(1553), 1, + sym_type_arguments, + STATE(3402), 2, sym_line_comment, sym_block_comment, - [85733] = 6, + [99024] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6220), 1, + ACTIONS(7143), 1, anon_sym_RBRACE, - ACTIONS(6222), 1, + ACTIONS(7145), 1, anon_sym_COMMA, - STATE(3057), 1, - aux_sym_struct_pattern_repeat1, - STATE(2897), 2, + STATE(3403), 3, sym_line_comment, sym_block_comment, - [85753] = 6, + aux_sym_field_initializer_list_repeat1, + [99042] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1653), 1, - anon_sym_GT, - ACTIONS(6224), 1, - anon_sym_COMMA, - STATE(2931), 1, - aux_sym_type_arguments_repeat1, - STATE(2898), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(7148), 1, + anon_sym_SEMI, + STATE(653), 1, + sym_declaration_list, + STATE(3404), 2, sym_line_comment, sym_block_comment, - [85773] = 6, + [99062] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1653), 1, - anon_sym_GT, - ACTIONS(6224), 1, + ACTIONS(959), 1, + anon_sym_RBRACK, + ACTIONS(4658), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, - STATE(2899), 2, + STATE(3164), 1, + aux_sym_arguments_repeat1, + STATE(3405), 2, sym_line_comment, sym_block_comment, - [85793] = 6, + [99082] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3128), 1, + ACTIONS(1962), 1, anon_sym_RPAREN, - ACTIONS(6226), 1, + ACTIONS(7150), 1, anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, - STATE(2900), 2, + STATE(3420), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3406), 2, sym_line_comment, sym_block_comment, - [85813] = 6, + [99102] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5310), 1, - anon_sym_RBRACE, - ACTIONS(6228), 1, - anon_sym_COMMA, - STATE(2954), 1, - aux_sym_struct_pattern_repeat1, - STATE(2901), 2, + STATE(3407), 2, sym_line_comment, sym_block_comment, - [85833] = 6, + ACTIONS(5390), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [99118] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3106), 1, - anon_sym_RPAREN, - ACTIONS(6230), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, - STATE(2902), 2, + ACTIONS(7152), 1, + anon_sym_LPAREN, + ACTIONS(7154), 1, + anon_sym_LBRACK, + ACTIONS(7156), 1, + anon_sym_LBRACE, + STATE(3408), 2, sym_line_comment, sym_block_comment, - [85853] = 6, + [99138] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6232), 1, - anon_sym_SEMI, - STATE(722), 1, - sym_declaration_list, - STATE(2903), 2, + ACTIONS(3570), 1, + anon_sym_RBRACK, + ACTIONS(7158), 1, + anon_sym_COMMA, + STATE(3057), 1, + aux_sym_slice_pattern_repeat1, + STATE(3409), 2, sym_line_comment, sym_block_comment, - [85873] = 6, + [99158] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5264), 1, - anon_sym_RBRACE, - ACTIONS(6234), 1, + ACTIONS(951), 1, + anon_sym_RBRACK, + ACTIONS(7160), 1, anon_sym_COMMA, - STATE(2954), 1, - aux_sym_struct_pattern_repeat1, - STATE(2904), 2, + STATE(3164), 1, + aux_sym_arguments_repeat1, + STATE(3410), 2, sym_line_comment, sym_block_comment, - [85893] = 6, + [99178] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6236), 1, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(7162), 1, anon_sym_SEMI, - STATE(3497), 1, - sym_where_clause, - STATE(2905), 2, + STATE(607), 1, + sym_declaration_list, + STATE(3411), 2, sym_line_comment, sym_block_comment, - [85913] = 6, + [99198] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, - ACTIONS(5654), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, - STATE(2906), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7164), 1, + anon_sym_SEMI, + ACTIONS(7166), 1, + anon_sym_EQ, + STATE(3412), 2, sym_line_comment, sym_block_comment, - [85933] = 6, + [99218] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6238), 1, - anon_sym_SEMI, - STATE(622), 1, - sym_declaration_list, - STATE(2907), 2, + ACTIONS(3692), 1, + anon_sym_RPAREN, + ACTIONS(7168), 1, + anon_sym_COMMA, + STATE(3489), 1, + aux_sym_tuple_type_repeat1, + STATE(3413), 2, sym_line_comment, sym_block_comment, - [85953] = 6, + [99238] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(7170), 2, anon_sym_RPAREN, - ACTIONS(5654), 1, anon_sym_COMMA, - STATE(2935), 1, - aux_sym_parameters_repeat1, - STATE(2908), 2, + STATE(3414), 2, sym_line_comment, sym_block_comment, - [85973] = 6, + [99256] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6240), 1, - sym_mutable_specifier, - ACTIONS(6242), 1, - sym_self, - STATE(2909), 2, + ACTIONS(6288), 1, + anon_sym_RPAREN, + ACTIONS(6290), 1, + anon_sym_COMMA, + STATE(3426), 1, + aux_sym_parameters_repeat1, + STATE(3415), 2, sym_line_comment, sym_block_comment, - [85993] = 6, + [99276] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, + ACTIONS(7172), 1, anon_sym_GT, - ACTIONS(6244), 1, + ACTIONS(7174), 1, anon_sym_COMMA, - STATE(3063), 1, + STATE(3428), 1, aux_sym_use_bounds_repeat1, - STATE(2910), 2, + STATE(3416), 2, sym_line_comment, sym_block_comment, - [86013] = 6, + [99296] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5868), 1, + ACTIONS(7176), 1, anon_sym_GT, - ACTIONS(6246), 1, + ACTIONS(7178), 1, anon_sym_COMMA, - STATE(3063), 1, + STATE(3584), 1, aux_sym_use_bounds_repeat1, - STATE(2911), 2, + STATE(3417), 2, sym_line_comment, sym_block_comment, - [86033] = 6, + [99316] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5092), 1, - anon_sym_RBRACE, - ACTIONS(6248), 1, - anon_sym_COMMA, - STATE(3134), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2912), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(7180), 1, + anon_sym_SEMI, + STATE(524), 1, + sym_declaration_list, + STATE(3418), 2, sym_line_comment, sym_block_comment, - [86053] = 6, + [99336] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5092), 1, - anon_sym_RBRACE, - ACTIONS(6248), 1, - anon_sym_COMMA, - STATE(2938), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2913), 2, + STATE(3419), 2, sym_line_comment, sym_block_comment, - [86073] = 6, + ACTIONS(5552), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [99352] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4827), 1, - anon_sym_GT, - ACTIONS(6250), 1, + ACTIONS(7170), 1, + anon_sym_RPAREN, + ACTIONS(7182), 1, anon_sym_COMMA, - STATE(3128), 1, - aux_sym_type_parameters_repeat1, - STATE(2914), 2, + STATE(3420), 3, sym_line_comment, sym_block_comment, - [86093] = 6, + aux_sym_tuple_pattern_repeat1, + [99370] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6252), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(7185), 1, anon_sym_SEMI, - STATE(1258), 1, - sym_declaration_list, - STATE(2915), 2, + STATE(4057), 1, + sym_where_clause, + STATE(3421), 2, sym_line_comment, sym_block_comment, - [86113] = 6, + [99390] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(6254), 1, + ACTIONS(7187), 1, anon_sym_SEMI, - STATE(1264), 1, + STATE(526), 1, sym_declaration_list, - STATE(2916), 2, + STATE(3422), 2, sym_line_comment, sym_block_comment, - [86133] = 5, + [99410] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6258), 1, - anon_sym_COLON, - ACTIONS(6256), 2, - anon_sym_RBRACE, + ACTIONS(1641), 1, + anon_sym_GT, + ACTIONS(7189), 1, anon_sym_COMMA, - STATE(2917), 2, + STATE(3430), 1, + aux_sym_type_arguments_repeat1, + STATE(3423), 2, sym_line_comment, sym_block_comment, - [86151] = 6, + [99430] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6260), 1, - anon_sym_SEMI, - ACTIONS(6262), 1, - anon_sym_EQ, - STATE(2918), 2, + ACTIONS(1641), 1, + anon_sym_GT, + ACTIONS(7189), 1, + anon_sym_COMMA, + STATE(3503), 1, + aux_sym_type_arguments_repeat1, + STATE(3424), 2, sym_line_comment, sym_block_comment, - [86171] = 6, + [99450] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5096), 1, - anon_sym_RBRACE, - ACTIONS(6264), 1, + ACTIONS(6272), 1, anon_sym_COMMA, - STATE(2949), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2919), 2, + ACTIONS(7191), 1, + anon_sym_PIPE, + STATE(3390), 1, + aux_sym_closure_parameters_repeat1, + STATE(3425), 2, sym_line_comment, sym_block_comment, - [86191] = 6, + [99470] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5096), 1, - anon_sym_RBRACE, - ACTIONS(6264), 1, + ACTIONS(1349), 1, + anon_sym_RPAREN, + ACTIONS(6317), 1, anon_sym_COMMA, - STATE(2948), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2920), 2, + STATE(3521), 1, + aux_sym_parameters_repeat1, + STATE(3426), 2, sym_line_comment, sym_block_comment, - [86211] = 4, + [99490] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2921), 2, + ACTIONS(1349), 1, + anon_sym_RPAREN, + ACTIONS(6317), 1, + anon_sym_COMMA, + STATE(3432), 1, + aux_sym_parameters_repeat1, + STATE(3427), 2, sym_line_comment, sym_block_comment, - ACTIONS(6266), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86227] = 6, + [99510] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6268), 1, - anon_sym_SEMI, - STATE(1419), 1, - sym_declaration_list, - STATE(2922), 2, + ACTIONS(6820), 1, + anon_sym_GT, + ACTIONS(7193), 1, + anon_sym_COMMA, + STATE(3538), 1, + aux_sym_use_bounds_repeat1, + STATE(3428), 2, sym_line_comment, sym_block_comment, - [86247] = 5, + [99530] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6270), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2923), 2, + ACTIONS(5348), 1, + anon_sym_COLON, + ACTIONS(5619), 1, + anon_sym_COLON_COLON, + STATE(2913), 1, + sym_trait_bounds, + STATE(3429), 2, sym_line_comment, sym_block_comment, - [86265] = 4, + [99550] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2924), 2, + ACTIONS(1655), 1, + anon_sym_GT, + ACTIONS(7195), 1, + anon_sym_COMMA, + STATE(3503), 1, + aux_sym_type_arguments_repeat1, + STATE(3430), 2, sym_line_comment, sym_block_comment, - ACTIONS(6272), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86281] = 6, + [99570] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6274), 1, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(7197), 1, anon_sym_SEMI, - ACTIONS(6276), 1, - anon_sym_EQ, - STATE(2925), 2, + STATE(599), 1, + sym_declaration_list, + STATE(3431), 2, sym_line_comment, sym_block_comment, - [86301] = 6, + [99590] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6278), 1, - anon_sym_SEMI, - STATE(3486), 1, - sym_where_clause, - STATE(2926), 2, + ACTIONS(1355), 1, + anon_sym_RPAREN, + ACTIONS(7199), 1, + anon_sym_COMMA, + STATE(3521), 1, + aux_sym_parameters_repeat1, + STATE(3432), 2, sym_line_comment, sym_block_comment, - [86321] = 6, + [99610] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4176), 1, - anon_sym_LBRACE, - ACTIONS(6280), 1, - anon_sym_COLON_COLON, - STATE(1832), 1, - sym_field_initializer_list, - STATE(2927), 2, + ACTIONS(7201), 1, + anon_sym_move, + STATE(218), 1, + sym_closure_parameters, + STATE(3433), 2, sym_line_comment, sym_block_comment, - [86341] = 5, + [99630] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5600), 1, - anon_sym_COLON, - ACTIONS(6282), 2, - anon_sym_PIPE, + ACTIONS(973), 1, + anon_sym_RPAREN, + ACTIONS(7203), 1, anon_sym_COMMA, - STATE(2928), 2, + STATE(3164), 1, + aux_sym_arguments_repeat1, + STATE(3434), 2, sym_line_comment, sym_block_comment, - [86359] = 6, + [99650] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1031), 1, - anon_sym_RPAREN, - ACTIONS(6284), 1, - anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(2929), 2, + STATE(3435), 2, sym_line_comment, sym_block_comment, - [86379] = 6, + ACTIONS(6220), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [99666] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(6286), 1, + ACTIONS(7205), 1, anon_sym_SEMI, - STATE(3755), 1, + STATE(3954), 1, sym_where_clause, - STATE(2930), 2, + STATE(3436), 2, sym_line_comment, sym_block_comment, - [86399] = 6, + [99686] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(1613), 1, anon_sym_GT, - ACTIONS(6288), 1, + ACTIONS(7207), 1, anon_sym_COMMA, - STATE(2894), 1, + STATE(3499), 1, aux_sym_type_arguments_repeat1, - STATE(2931), 2, + STATE(3437), 2, sym_line_comment, sym_block_comment, - [86419] = 4, + [99706] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2932), 2, + ACTIONS(1613), 1, + anon_sym_GT, + ACTIONS(7207), 1, + anon_sym_COMMA, + STATE(3503), 1, + aux_sym_type_arguments_repeat1, + STATE(3438), 2, sym_line_comment, sym_block_comment, - ACTIONS(4973), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86435] = 4, + [99726] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2933), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(7209), 1, + anon_sym_SEMI, + STATE(609), 1, + sym_declaration_list, + STATE(3439), 2, sym_line_comment, sym_block_comment, - ACTIONS(5015), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86451] = 6, + [99746] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4586), 1, + anon_sym_LT2, + ACTIONS(5610), 1, + anon_sym_COLON_COLON, + STATE(1951), 1, + sym_type_arguments, + STATE(3440), 2, + sym_line_comment, + sym_block_comment, + [99766] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5631), 1, anon_sym_where, - ACTIONS(6290), 1, - anon_sym_EQ, - STATE(3511), 1, + ACTIONS(7211), 1, + anon_sym_SEMI, + STATE(3964), 1, sym_where_clause, - STATE(2934), 2, + STATE(3441), 2, sym_line_comment, sym_block_comment, - [86471] = 6, + [99786] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1361), 1, + ACTIONS(3560), 1, anon_sym_RPAREN, - ACTIONS(6292), 1, + ACTIONS(7213), 1, anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, - STATE(2935), 2, + STATE(3057), 1, + aux_sym_slice_pattern_repeat1, + STATE(3442), 2, sym_line_comment, sym_block_comment, - [86491] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [99806] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6294), 1, - anon_sym_move, - STATE(237), 1, - sym_closure_parameters, - STATE(2936), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(7215), 1, + anon_sym_SEMI, + STATE(4142), 1, + sym_where_clause, + STATE(3443), 2, sym_line_comment, sym_block_comment, - [86511] = 4, + [99826] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2937), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6210), 1, + anon_sym_EQ, + STATE(4009), 1, + sym_where_clause, + STATE(3444), 2, sym_line_comment, sym_block_comment, - ACTIONS(4971), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86527] = 6, + [99846] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5126), 1, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(7217), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(3445), 2, + sym_line_comment, + sym_block_comment, + [99866] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7221), 1, + anon_sym_COLON, + ACTIONS(7219), 2, anon_sym_RBRACE, - ACTIONS(6296), 1, anon_sym_COMMA, - STATE(3134), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2938), 2, + STATE(3446), 2, sym_line_comment, sym_block_comment, - [86547] = 6, + [99884] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6298), 1, - anon_sym_SEMI, - STATE(1308), 1, - sym_declaration_list, - STATE(2939), 2, + ACTIONS(1649), 1, + anon_sym_GT, + ACTIONS(7223), 1, + anon_sym_COMMA, + STATE(3449), 1, + aux_sym_type_arguments_repeat1, + STATE(3447), 2, sym_line_comment, sym_block_comment, - [86567] = 6, + [99904] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6300), 1, - anon_sym_SEMI, - STATE(1310), 1, - sym_declaration_list, - STATE(2940), 2, + ACTIONS(1649), 1, + anon_sym_GT, + ACTIONS(7223), 1, + anon_sym_COMMA, + STATE(3503), 1, + aux_sym_type_arguments_repeat1, + STATE(3448), 2, sym_line_comment, sym_block_comment, - [86587] = 5, + [99924] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6282), 1, - anon_sym_PIPE, - ACTIONS(6302), 1, + ACTIONS(1651), 1, + anon_sym_GT, + ACTIONS(7225), 1, anon_sym_COMMA, - STATE(2941), 3, + STATE(3503), 1, + aux_sym_type_arguments_repeat1, + STATE(3449), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [86605] = 6, + [99944] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(6305), 1, + ACTIONS(7227), 1, anon_sym_SEMI, - STATE(1316), 1, + STATE(621), 1, sym_declaration_list, - STATE(2942), 2, + STATE(3450), 2, sym_line_comment, sym_block_comment, - [86625] = 6, + [99964] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6307), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7229), 1, anon_sym_SEMI, - STATE(1318), 1, - sym_declaration_list, - STATE(2943), 2, + ACTIONS(7231), 1, + anon_sym_RBRACK, + STATE(3451), 2, sym_line_comment, sym_block_comment, - [86645] = 4, + [99984] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2944), 2, + ACTIONS(7233), 1, + anon_sym_move, + STATE(221), 1, + sym_closure_parameters, + STATE(3452), 2, sym_line_comment, sym_block_comment, - ACTIONS(4957), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86661] = 6, + [100004] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6309), 1, + ACTIONS(5987), 1, + anon_sym_RBRACE, + ACTIONS(7235), 1, + anon_sym_COMMA, + STATE(3507), 1, + aux_sym_struct_pattern_repeat1, + STATE(3453), 2, + sym_line_comment, + sym_block_comment, + [100024] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(7237), 1, anon_sym_SEMI, - ACTIONS(6311), 1, - anon_sym_EQ, - STATE(2945), 2, + STATE(4018), 1, + sym_where_clause, + STATE(3454), 2, sym_line_comment, sym_block_comment, - [86681] = 4, + [100044] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2946), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7239), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3455), 2, + sym_line_comment, + sym_block_comment, + [100062] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(3456), 2, sym_line_comment, sym_block_comment, - ACTIONS(4969), 3, + ACTIONS(1463), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86697] = 6, + [100078] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5132), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2947), 2, + ACTIONS(7241), 1, + anon_sym_RPAREN, + ACTIONS(7243), 1, + anon_sym_COMMA, + STATE(3339), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3457), 2, sym_line_comment, sym_block_comment, - [86717] = 6, + [100098] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5027), 1, + ACTIONS(7247), 1, + anon_sym_COLON, + ACTIONS(7245), 2, anon_sym_RBRACE, - ACTIONS(6313), 1, anon_sym_COMMA, - STATE(2949), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2948), 2, + STATE(3458), 2, sym_line_comment, sym_block_comment, - [86737] = 5, + [100116] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, - anon_sym_RBRACE, - ACTIONS(6317), 1, - anon_sym_COMMA, - STATE(2949), 3, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(7249), 1, + anon_sym_SEMI, + STATE(4289), 1, + sym_where_clause, + STATE(3459), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [86755] = 4, + [100136] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2950), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(7251), 1, + anon_sym_EQ, + STATE(4076), 1, + sym_where_clause, + STATE(3460), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86771] = 6, + [100156] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_RBRACE, - ACTIONS(6320), 1, + ACTIONS(3572), 1, + anon_sym_RPAREN, + ACTIONS(7253), 1, anon_sym_COMMA, - STATE(2949), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2951), 2, + STATE(3057), 1, + aux_sym_slice_pattern_repeat1, + STATE(3461), 2, sym_line_comment, sym_block_comment, - [86791] = 4, + [100176] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2952), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7255), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3462), 2, sym_line_comment, sym_block_comment, - ACTIONS(5564), 3, - anon_sym_SEMI, + [100194] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7257), 1, anon_sym_RBRACE, + ACTIONS(7259), 1, anon_sym_COMMA, - [86807] = 6, + STATE(3453), 1, + aux_sym_struct_pattern_repeat1, + STATE(3463), 2, + sym_line_comment, + sym_block_comment, + [100214] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6322), 1, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(7261), 1, anon_sym_SEMI, - STATE(3713), 1, - sym_where_clause, - STATE(2953), 2, + STATE(628), 1, + sym_declaration_list, + STATE(3464), 2, sym_line_comment, sym_block_comment, - [86827] = 5, + [100234] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6324), 1, - anon_sym_RBRACE, - ACTIONS(6326), 1, - anon_sym_COMMA, - STATE(2954), 3, + STATE(3465), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [86845] = 4, + ACTIONS(5568), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [100250] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2955), 2, + STATE(3466), 2, sym_line_comment, sym_block_comment, - ACTIONS(4953), 3, + ACTIONS(5572), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86861] = 6, + [100266] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6329), 1, - anon_sym_SEMI, - STATE(1358), 1, - sym_declaration_list, - STATE(2956), 2, + ACTIONS(7263), 1, + sym_identifier, + ACTIONS(7265), 1, + anon_sym_ref, + ACTIONS(7267), 1, + sym_mutable_specifier, + STATE(3467), 2, sym_line_comment, sym_block_comment, - [86881] = 6, + [100286] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(7269), 1, anon_sym_SEMI, - STATE(1360), 1, + STATE(535), 1, sym_declaration_list, - STATE(2957), 2, + STATE(3468), 2, sym_line_comment, sym_block_comment, - [86901] = 4, + [100306] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2958), 2, + ACTIONS(921), 1, + anon_sym_RPAREN, + ACTIONS(4722), 1, + anon_sym_COMMA, + STATE(3164), 1, + aux_sym_arguments_repeat1, + STATE(3469), 2, sym_line_comment, sym_block_comment, - ACTIONS(6333), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86917] = 6, + [100326] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6335), 1, - anon_sym_SEMI, - STATE(1367), 1, - sym_declaration_list, - STATE(2959), 2, + STATE(3470), 2, sym_line_comment, sym_block_comment, - [86937] = 6, + ACTIONS(5580), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [100342] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6337), 1, - anon_sym_SEMI, - STATE(1369), 1, - sym_declaration_list, - STATE(2960), 2, + STATE(3471), 2, sym_line_comment, sym_block_comment, - [86957] = 6, + ACTIONS(5582), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [100358] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6339), 1, - anon_sym_SEMI, - ACTIONS(6341), 1, - anon_sym_EQ, - STATE(2961), 2, + STATE(3472), 2, sym_line_comment, sym_block_comment, - [86977] = 6, + ACTIONS(5586), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [100374] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(6343), 1, + ACTIONS(7271), 1, anon_sym_SEMI, - STATE(1375), 1, + STATE(537), 1, sym_declaration_list, - STATE(2962), 2, + STATE(3473), 2, sym_line_comment, sym_block_comment, - [86997] = 6, + [100394] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6345), 1, - anon_sym_SEMI, - STATE(1377), 1, - sym_declaration_list, - STATE(2963), 2, + STATE(3474), 2, sym_line_comment, sym_block_comment, - [87017] = 6, + ACTIONS(5590), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [100410] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(6347), 1, + ACTIONS(7273), 1, anon_sym_SEMI, - STATE(741), 1, + STATE(543), 1, sym_declaration_list, - STATE(2964), 2, + STATE(3475), 2, sym_line_comment, sym_block_comment, - [87037] = 6, + [100430] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6349), 1, - anon_sym_SEMI, - ACTIONS(6351), 1, - anon_sym_EQ, - STATE(2965), 2, + ACTIONS(5991), 1, + anon_sym_RBRACE, + ACTIONS(7275), 1, + anon_sym_COMMA, + STATE(3507), 1, + aux_sym_struct_pattern_repeat1, + STATE(3476), 2, sym_line_comment, sym_block_comment, - [87057] = 6, + [100450] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5102), 1, - anon_sym_RBRACE, - ACTIONS(6160), 1, + ACTIONS(7277), 1, + anon_sym_EQ, + ACTIONS(7279), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2951), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2966), 2, + STATE(3477), 2, sym_line_comment, sym_block_comment, - [87077] = 6, + [100468] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(3997), 1, anon_sym_LBRACE, - ACTIONS(6353), 1, - anon_sym_SEMI, - STATE(1395), 1, - sym_declaration_list, - STATE(2967), 2, + ACTIONS(7281), 1, + anon_sym_COLON_COLON, + STATE(1684), 1, + sym_field_initializer_list, + STATE(3478), 2, sym_line_comment, sym_block_comment, - [87097] = 6, + [100488] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(6355), 1, + ACTIONS(7283), 1, anon_sym_SEMI, - STATE(1397), 1, + STATE(630), 1, sym_declaration_list, - STATE(2968), 2, + STATE(3479), 2, sym_line_comment, sym_block_comment, - [87117] = 5, + [100508] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6357), 1, - anon_sym_RBRACE, - ACTIONS(6359), 1, - anon_sym_COMMA, - STATE(2969), 3, + ACTIONS(7285), 1, + anon_sym_LPAREN, + ACTIONS(7287), 1, + anon_sym_LBRACK, + ACTIONS(7289), 1, + anon_sym_LBRACE, + STATE(3480), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [87135] = 6, + [100528] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(7291), 1, + anon_sym_LPAREN, + ACTIONS(7293), 1, + anon_sym_LBRACK, + ACTIONS(7295), 1, anon_sym_LBRACE, - ACTIONS(6362), 1, - anon_sym_SEMI, - STATE(708), 1, - sym_declaration_list, - STATE(2970), 2, + STATE(3481), 2, sym_line_comment, sym_block_comment, - [87155] = 6, + [100548] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6364), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7297), 2, anon_sym_RPAREN, - ACTIONS(6366), 1, anon_sym_COMMA, - STATE(2876), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2971), 2, + STATE(3482), 2, sym_line_comment, sym_block_comment, - [87175] = 5, + [100566] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6368), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2972), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(7299), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(3483), 2, sym_line_comment, sym_block_comment, - [87193] = 5, + [100586] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6370), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2973), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(7301), 1, + anon_sym_LBRACE, + STATE(2292), 1, + sym_type_arguments, + STATE(3484), 2, sym_line_comment, sym_block_comment, - [87211] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [100606] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6372), 1, - anon_sym_move, - STATE(252), 1, - sym_closure_parameters, - STATE(2974), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(7303), 1, + anon_sym_SEMI, + STATE(545), 1, + sym_declaration_list, + STATE(3485), 2, sym_line_comment, sym_block_comment, - [87231] = 6, + [100626] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, - anon_sym_RPAREN, - ACTIONS(4298), 1, + ACTIONS(6268), 1, + anon_sym_COLON, + ACTIONS(7305), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(2975), 2, + STATE(3486), 2, sym_line_comment, sym_block_comment, - [87251] = 5, + [100644] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - ACTIONS(5441), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2976), 2, + STATE(3487), 2, sym_line_comment, sym_block_comment, - [87269] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6374), 1, - anon_sym_GT, - ACTIONS(6376), 1, + ACTIONS(7307), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3091), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2977), 2, - sym_line_comment, - sym_block_comment, - [87289] = 6, + [100660] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5070), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - STATE(2978), 2, + ACTIONS(7305), 1, + anon_sym_PIPE, + ACTIONS(7309), 1, + anon_sym_COMMA, + STATE(3488), 3, sym_line_comment, sym_block_comment, - [87309] = 6, + aux_sym_closure_parameters_repeat1, + [100678] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, + ACTIONS(7297), 1, anon_sym_RPAREN, - ACTIONS(6378), 1, + ACTIONS(7312), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(2979), 2, + STATE(3489), 3, sym_line_comment, sym_block_comment, - [87329] = 5, + aux_sym_tuple_type_repeat1, + [100696] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - ACTIONS(6380), 2, - anon_sym_RPAREN, + ACTIONS(7315), 1, + anon_sym_RBRACE, + ACTIONS(7317), 1, anon_sym_COMMA, - STATE(2980), 2, + STATE(3266), 1, + aux_sym_use_list_repeat1, + STATE(3490), 2, sym_line_comment, sym_block_comment, - [87347] = 4, + [100716] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2981), 2, + STATE(3491), 2, sym_line_comment, sym_block_comment, - ACTIONS(4975), 3, + ACTIONS(5506), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87363] = 6, + [100732] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6382), 1, - anon_sym_RBRACE, - ACTIONS(6384), 1, - anon_sym_COMMA, - STATE(3069), 1, - aux_sym_struct_pattern_repeat1, - STATE(2982), 2, + ACTIONS(4632), 1, + anon_sym_LBRACE, + ACTIONS(7319), 1, + anon_sym_COLON_COLON, + STATE(2015), 1, + sym_field_initializer_list, + STATE(3492), 2, sym_line_comment, sym_block_comment, - [87383] = 5, + [100752] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5928), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2983), 2, + ACTIONS(7321), 1, + anon_sym_move, + STATE(238), 1, + sym_closure_parameters, + STATE(3493), 2, sym_line_comment, sym_block_comment, - [87401] = 6, + [100772] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_GT, - ACTIONS(6386), 1, - anon_sym_COMMA, - STATE(3128), 1, - aux_sym_type_parameters_repeat1, - STATE(2984), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7323), 1, + anon_sym_SEMI, + ACTIONS(7325), 1, + anon_sym_EQ, + STATE(3494), 2, sym_line_comment, sym_block_comment, - [87421] = 6, + [100792] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(6388), 1, + ACTIONS(7327), 1, anon_sym_SEMI, - STATE(1139), 1, + STATE(891), 1, sym_declaration_list, - STATE(2985), 2, + STATE(3495), 2, sym_line_comment, sym_block_comment, - [87441] = 6, + [100812] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, - anon_sym_RBRACK, - ACTIONS(4304), 1, - anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(2986), 2, + ACTIONS(7329), 1, + anon_sym_EQ_GT, + ACTIONS(7331), 1, + anon_sym_PIPE, + ACTIONS(7333), 1, + anon_sym_if, + STATE(3496), 2, sym_line_comment, sym_block_comment, - [87461] = 6, + [100832] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6390), 1, - anon_sym_SEMI, - ACTIONS(6392), 1, - anon_sym_RBRACK, - STATE(2987), 2, + STATE(3497), 2, sym_line_comment, sym_block_comment, - [87481] = 6, + ACTIONS(7335), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [100848] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5052), 1, - anon_sym_COLON_COLON, - STATE(1123), 1, - sym_type_arguments, - STATE(2988), 2, + ACTIONS(7337), 1, + anon_sym_RBRACE, + ACTIONS(7339), 1, + anon_sym_COMMA, + STATE(3476), 1, + aux_sym_struct_pattern_repeat1, + STATE(3498), 2, sym_line_comment, sym_block_comment, - [87501] = 4, + [100868] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2989), 2, + ACTIONS(1647), 1, + anon_sym_GT, + ACTIONS(7341), 1, + anon_sym_COMMA, + STATE(3503), 1, + aux_sym_type_arguments_repeat1, + STATE(3499), 2, sym_line_comment, sym_block_comment, - ACTIONS(6394), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [87517] = 4, + [100888] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2990), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7343), 1, + anon_sym_SEMI, + ACTIONS(7345), 1, + anon_sym_EQ, + STATE(3500), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87533] = 6, + [100908] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6396), 1, - anon_sym_SEMI, - ACTIONS(6398), 1, - anon_sym_EQ, - STATE(2991), 2, + ACTIONS(3688), 1, + anon_sym_RPAREN, + ACTIONS(7347), 1, + anon_sym_COMMA, + STATE(3489), 1, + aux_sym_tuple_type_repeat1, + STATE(3501), 2, sym_line_comment, sym_block_comment, - [87553] = 5, + [100928] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5942), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2992), 2, + ACTIONS(7349), 1, + sym_identifier, + ACTIONS(7351), 1, + anon_sym_ref, + ACTIONS(7353), 1, + sym_mutable_specifier, + STATE(3502), 2, sym_line_comment, sym_block_comment, - [87571] = 6, + [100948] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3274), 1, - anon_sym_RPAREN, - ACTIONS(6400), 1, + ACTIONS(6218), 1, + anon_sym_GT, + ACTIONS(7355), 1, anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, - STATE(2993), 2, + STATE(3503), 3, sym_line_comment, sym_block_comment, - [87591] = 5, + aux_sym_type_arguments_repeat1, + [100966] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6402), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2994), 2, + STATE(3504), 2, sym_line_comment, sym_block_comment, - [87609] = 6, + ACTIONS(7358), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [100982] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5688), 1, - anon_sym_RPAREN, - ACTIONS(5690), 1, + ACTIONS(7362), 1, + anon_sym_COLON, + ACTIONS(7360), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3005), 1, - aux_sym_parameters_repeat1, - STATE(2995), 2, + STATE(3505), 2, sym_line_comment, sym_block_comment, - [87629] = 6, + [101000] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6404), 1, - anon_sym_GT, - ACTIONS(6406), 1, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(7364), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3007), 1, - aux_sym_use_bounds_repeat1, - STATE(2996), 2, + STATE(3506), 2, sym_line_comment, sym_block_comment, - [87649] = 6, + [101018] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6408), 1, - anon_sym_GT, - ACTIONS(6410), 1, + ACTIONS(7366), 1, + anon_sym_RBRACE, + ACTIONS(7368), 1, anon_sym_COMMA, - STATE(3008), 1, - aux_sym_use_bounds_repeat1, - STATE(2997), 2, + STATE(3507), 3, sym_line_comment, sym_block_comment, - [87669] = 6, + aux_sym_struct_pattern_repeat1, + [101036] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6412), 1, + ACTIONS(1363), 1, anon_sym_RPAREN, - ACTIONS(6414), 1, + ACTIONS(6434), 1, anon_sym_COMMA, - STATE(2876), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2998), 2, + STATE(3521), 1, + aux_sym_parameters_repeat1, + STATE(3508), 2, sym_line_comment, sym_block_comment, - [87689] = 5, + [101056] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5942), 1, - anon_sym_RPAREN, - ACTIONS(6416), 1, - anon_sym_COMMA, - STATE(2999), 3, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7371), 1, + anon_sym_SEMI, + STATE(1592), 1, + sym_declaration_list, + STATE(3509), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [87707] = 6, + [101076] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - STATE(3278), 1, - sym_lifetime, - STATE(3000), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(7373), 1, + anon_sym_SEMI, + STATE(4237), 1, + sym_where_clause, + STATE(3510), 2, sym_line_comment, sym_block_comment, - [87727] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [101096] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6419), 1, - anon_sym_move, - STATE(238), 1, - sym_closure_parameters, - STATE(3001), 2, + ACTIONS(7375), 1, + anon_sym_AMP_AMP, + ACTIONS(4812), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(3511), 2, sym_line_comment, sym_block_comment, - [87747] = 6, + [101114] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1641), 1, - anon_sym_GT, - ACTIONS(6421), 1, + ACTIONS(1363), 1, + anon_sym_RPAREN, + ACTIONS(6434), 1, anon_sym_COMMA, - STATE(3009), 1, - aux_sym_type_arguments_repeat1, - STATE(3002), 2, + STATE(3529), 1, + aux_sym_parameters_repeat1, + STATE(3512), 2, sym_line_comment, sym_block_comment, - [87767] = 6, + [101134] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1641), 1, - anon_sym_GT, - ACTIONS(6421), 1, + ACTIONS(5302), 1, + anon_sym_COLON_COLON, + ACTIONS(6045), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, - STATE(3003), 2, + STATE(3513), 2, sym_line_comment, sym_block_comment, - [87787] = 5, + [101152] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, - anon_sym_RBRACE, - ACTIONS(6425), 1, - anon_sym_COMMA, - STATE(3004), 3, + STATE(3514), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [87805] = 6, + ACTIONS(5181), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [101168] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, - anon_sym_RPAREN, - ACTIONS(5700), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, - STATE(3005), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7377), 1, + sym_mutable_specifier, + ACTIONS(7379), 1, + sym_self, + STATE(3515), 2, sym_line_comment, sym_block_comment, - [87825] = 6, + [101188] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, - anon_sym_RPAREN, - ACTIONS(5700), 1, - anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, - STATE(3006), 2, + ACTIONS(7381), 1, + sym_identifier, + ACTIONS(7383), 1, + anon_sym_await, + ACTIONS(7385), 1, + sym_integer_literal, + STATE(3516), 2, sym_line_comment, sym_block_comment, - [87845] = 6, + [101208] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5962), 1, + ACTIONS(7387), 1, anon_sym_GT, - ACTIONS(6428), 1, + ACTIONS(7389), 1, anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, - STATE(3007), 2, + STATE(3539), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3517), 2, sym_line_comment, sym_block_comment, - [87865] = 6, + [101228] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5964), 1, - anon_sym_GT, - ACTIONS(6430), 1, - anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, - STATE(3008), 2, + STATE(3518), 2, sym_line_comment, sym_block_comment, - [87885] = 6, + ACTIONS(7391), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [101244] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1643), 1, - anon_sym_GT, - ACTIONS(6432), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(6655), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, - STATE(3009), 2, + STATE(3519), 2, sym_line_comment, sym_block_comment, - [87905] = 6, + [101262] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6434), 1, - sym_identifier, - ACTIONS(6436), 1, - anon_sym_await, - ACTIONS(6438), 1, - sym_integer_literal, - STATE(3010), 2, + ACTIONS(7375), 1, + anon_sym_AMP_AMP, + ACTIONS(7393), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(3520), 2, sym_line_comment, sym_block_comment, - [87925] = 6, + [101280] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3270), 1, + ACTIONS(6655), 1, anon_sym_RPAREN, - ACTIONS(6440), 1, + ACTIONS(7395), 1, anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, - STATE(3011), 2, + STATE(3521), 3, sym_line_comment, sym_block_comment, - [87945] = 4, + aux_sym_parameters_repeat1, + [101298] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3012), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(7398), 1, + anon_sym_SEMI, + STATE(4000), 1, + sym_where_clause, + STATE(3522), 2, sym_line_comment, sym_block_comment, - ACTIONS(4967), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87961] = 6, + [101318] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6442), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(3013), 2, + ACTIONS(1025), 1, + anon_sym_RBRACK, + ACTIONS(4708), 1, + anon_sym_COMMA, + STATE(3164), 1, + aux_sym_arguments_repeat1, + STATE(3523), 2, sym_line_comment, sym_block_comment, - [87981] = 6, + [101338] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4440), 1, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(7400), 2, anon_sym_RBRACE, - ACTIONS(6444), 1, anon_sym_COMMA, - STATE(2969), 1, - aux_sym_use_list_repeat1, - STATE(3014), 2, + STATE(3524), 2, sym_line_comment, sym_block_comment, - [88001] = 6, + [101356] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1349), 1, + ACTIONS(6631), 1, anon_sym_RPAREN, - ACTIONS(6446), 1, + ACTIONS(6633), 1, anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, - STATE(3015), 2, + STATE(3577), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3525), 2, sym_line_comment, sym_block_comment, - [88021] = 6, + [101376] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6448), 1, - anon_sym_SEMI, - STATE(3504), 1, - sym_where_clause, - STATE(3016), 2, + ACTIONS(7402), 1, + anon_sym_GT, + ACTIONS(7404), 1, + anon_sym_COMMA, + STATE(3551), 1, + aux_sym_use_bounds_repeat1, + STATE(3526), 2, sym_line_comment, sym_block_comment, - [88041] = 6, + [101396] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(901), 1, - anon_sym_RBRACK, - ACTIONS(4256), 1, + ACTIONS(7406), 1, + anon_sym_GT, + ACTIONS(7408), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(3017), 2, + STATE(3554), 1, + aux_sym_use_bounds_repeat1, + STATE(3527), 2, sym_line_comment, sym_block_comment, - [88061] = 6, + [101416] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6450), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(7410), 1, anon_sym_SEMI, - STATE(714), 1, - sym_declaration_list, - STATE(3018), 2, + STATE(4185), 1, + sym_where_clause, + STATE(3528), 2, sym_line_comment, sym_block_comment, - [88081] = 4, + [101436] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3019), 2, + ACTIONS(1359), 1, + anon_sym_RPAREN, + ACTIONS(7412), 1, + anon_sym_COMMA, + STATE(3521), 1, + aux_sym_parameters_repeat1, + STATE(3529), 2, sym_line_comment, sym_block_comment, - ACTIONS(6452), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88097] = 6, + [101456] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5820), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7414), 2, anon_sym_RPAREN, - ACTIONS(5822), 1, anon_sym_COMMA, - STATE(2847), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3020), 2, + STATE(3530), 2, sym_line_comment, sym_block_comment, - [88117] = 6, + [101474] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(5043), 1, - anon_sym_COLON_COLON, - STATE(1643), 1, - sym_type_arguments, - STATE(3021), 2, + ACTIONS(3502), 1, + anon_sym_SQUOTE, + ACTIONS(7416), 1, + anon_sym_GT, + STATE(3832), 1, + sym_lifetime, + STATE(3531), 2, sym_line_comment, sym_block_comment, - [88137] = 6, + [101494] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, + ACTIONS(3594), 1, anon_sym_PLUS, - ACTIONS(6454), 1, - anon_sym_GT, - ACTIONS(6456), 1, - anon_sym_as, - STATE(3022), 2, + ACTIONS(7418), 1, + anon_sym_SEMI, + ACTIONS(7420), 1, + anon_sym_RBRACK, + STATE(3532), 2, sym_line_comment, sym_block_comment, - [88157] = 6, + [101514] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6458), 1, - anon_sym_RBRACE, - ACTIONS(6460), 1, + ACTIONS(7422), 1, + anon_sym_GT, + ACTIONS(7424), 1, anon_sym_COMMA, - STATE(3014), 1, - aux_sym_use_list_repeat1, - STATE(3023), 2, + STATE(3533), 3, sym_line_comment, sym_block_comment, - [88177] = 6, + aux_sym_for_lifetimes_repeat1, + [101532] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1639), 1, - anon_sym_GT, - ACTIONS(6462), 1, - anon_sym_COMMA, - STATE(3028), 1, - aux_sym_type_arguments_repeat1, - STATE(3024), 2, + STATE(3534), 2, sym_line_comment, sym_block_comment, - [88197] = 6, + ACTIONS(7427), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [101548] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1639), 1, + ACTIONS(3502), 1, + anon_sym_SQUOTE, + ACTIONS(7429), 1, anon_sym_GT, - ACTIONS(6462), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, - STATE(3025), 2, + STATE(3832), 1, + sym_lifetime, + STATE(3535), 2, sym_line_comment, sym_block_comment, - [88217] = 4, + [101568] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3026), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(7431), 1, + anon_sym_COLON_COLON, + STATE(2285), 1, + sym_type_arguments, + STATE(3536), 2, sym_line_comment, sym_block_comment, - ACTIONS(6464), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88233] = 4, + [101588] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3027), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7433), 1, + anon_sym_SEMI, + ACTIONS(7435), 1, + anon_sym_EQ, + STATE(3537), 2, sym_line_comment, sym_block_comment, - ACTIONS(6466), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88249] = 6, + [101608] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1637), 1, + ACTIONS(7437), 1, anon_sym_GT, - ACTIONS(6468), 1, + ACTIONS(7439), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, - STATE(3028), 2, + STATE(3538), 3, sym_line_comment, sym_block_comment, - [88269] = 6, + aux_sym_use_bounds_repeat1, + [101626] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(6470), 1, + ACTIONS(7429), 1, anon_sym_GT, - STATE(3234), 1, - sym_lifetime, - STATE(3029), 2, + ACTIONS(7442), 1, + anon_sym_COMMA, + STATE(3533), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3539), 2, sym_line_comment, sym_block_comment, - [88289] = 6, + [101646] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(6472), 1, - anon_sym_COLON_COLON, - STATE(1518), 1, - sym_field_initializer_list, - STATE(3030), 2, - sym_line_comment, - sym_block_comment, - [88309] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_GT, - ACTIONS(6386), 1, - anon_sym_COMMA, - STATE(3129), 1, - aux_sym_type_parameters_repeat1, - STATE(3031), 2, + ACTIONS(7444), 1, + anon_sym_SEMI, + STATE(585), 1, + sym_declaration_list, + STATE(3540), 2, sym_line_comment, sym_block_comment, - [88329] = 6, + [101666] = 6, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6474), 1, + ACTIONS(7446), 1, anon_sym_move, - STATE(229), 1, + STATE(243), 1, sym_closure_parameters, - STATE(3032), 2, + STATE(3541), 2, sym_line_comment, sym_block_comment, - [88349] = 5, + [101686] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6476), 1, - anon_sym_GT, - ACTIONS(6478), 1, - anon_sym_COMMA, - STATE(3033), 3, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(7448), 1, + anon_sym_SEMI, + STATE(587), 1, + sym_declaration_list, + STATE(3542), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [88367] = 6, + [101706] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5490), 1, + ACTIONS(7450), 1, anon_sym_GT, - ACTIONS(5492), 1, + ACTIONS(7452), 1, anon_sym_COMMA, - STATE(2984), 1, + STATE(3250), 1, aux_sym_type_parameters_repeat1, - STATE(3034), 2, + STATE(3543), 2, sym_line_comment, sym_block_comment, - [88387] = 4, + [101726] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3035), 2, + STATE(3544), 2, sym_line_comment, sym_block_comment, - ACTIONS(1499), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88403] = 6, + ACTIONS(7454), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [101742] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6481), 1, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7456), 1, anon_sym_SEMI, - ACTIONS(6483), 1, - anon_sym_EQ, - STATE(3036), 2, + STATE(1471), 1, + sym_declaration_list, + STATE(3545), 2, sym_line_comment, sym_block_comment, - [88423] = 4, + [101762] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3037), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(7458), 1, + anon_sym_SEMI, + STATE(812), 1, + sym_declaration_list, + STATE(3546), 2, sym_line_comment, sym_block_comment, - ACTIONS(5025), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88439] = 6, + [101782] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6485), 1, - sym_identifier, - ACTIONS(6487), 1, - anon_sym_await, - ACTIONS(6489), 1, - sym_integer_literal, - STATE(3038), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7460), 1, + anon_sym_SEMI, + ACTIONS(7462), 1, + anon_sym_EQ, + STATE(3547), 2, sym_line_comment, sym_block_comment, - [88459] = 6, + [101802] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(979), 1, - anon_sym_RBRACK, - ACTIONS(6491), 1, - anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(3039), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(7464), 1, + anon_sym_SEMI, + STATE(4194), 1, + sym_where_clause, + STATE(3548), 2, sym_line_comment, sym_block_comment, - [88479] = 5, + [101822] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6493), 2, - anon_sym_RPAREN, + ACTIONS(7466), 1, + anon_sym_RBRACE, + ACTIONS(7468), 1, anon_sym_COMMA, - STATE(3040), 2, + STATE(3245), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3549), 2, sym_line_comment, sym_block_comment, - [88497] = 5, + [101842] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 1, - anon_sym_RPAREN, - ACTIONS(6495), 1, + ACTIONS(7470), 1, + anon_sym_RBRACE, + ACTIONS(7472), 1, anon_sym_COMMA, - STATE(3041), 3, + STATE(3282), 1, + aux_sym_struct_pattern_repeat1, + STATE(3550), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [88515] = 6, + [101862] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6498), 1, - anon_sym_SEMI, - STATE(506), 1, - sym_declaration_list, - STATE(3042), 2, + ACTIONS(6832), 1, + anon_sym_GT, + ACTIONS(7474), 1, + anon_sym_COMMA, + STATE(3538), 1, + aux_sym_use_bounds_repeat1, + STATE(3551), 2, sym_line_comment, sym_block_comment, - [88535] = 6, + [101882] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6500), 1, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(7476), 1, anon_sym_SEMI, - ACTIONS(6502), 1, - anon_sym_RBRACK, - STATE(3043), 2, + STATE(3956), 1, + sym_where_clause, + STATE(3552), 2, sym_line_comment, sym_block_comment, - [88555] = 6, + [101902] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6504), 1, - anon_sym_SEMI, - STATE(508), 1, - sym_declaration_list, - STATE(3044), 2, + ACTIONS(7478), 1, + anon_sym_RBRACE, + ACTIONS(7480), 1, + anon_sym_COMMA, + STATE(3553), 3, sym_line_comment, sym_block_comment, - [88575] = 6, + aux_sym_enum_variant_list_repeat1, + [101920] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6506), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(3045), 2, + ACTIONS(6839), 1, + anon_sym_GT, + ACTIONS(7483), 1, + anon_sym_COMMA, + STATE(3538), 1, + aux_sym_use_bounds_repeat1, + STATE(3554), 2, sym_line_comment, sym_block_comment, - [88595] = 4, + [101940] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3046), 2, + ACTIONS(7487), 1, + anon_sym_EQ, + ACTIONS(7485), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3555), 2, sym_line_comment, sym_block_comment, - ACTIONS(4983), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88611] = 4, + [101958] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3047), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5709), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(3556), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88627] = 6, + [101978] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 1, - anon_sym_GT, - ACTIONS(6508), 1, + ACTIONS(7489), 1, + anon_sym_RBRACE, + ACTIONS(7491), 1, anon_sym_COMMA, - STATE(2889), 1, - aux_sym_type_arguments_repeat1, - STATE(3048), 2, + STATE(3263), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3557), 2, sym_line_comment, sym_block_comment, - [88647] = 6, + [101998] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, - anon_sym_GT, - ACTIONS(6512), 1, + ACTIONS(5621), 1, + anon_sym_RBRACE, + ACTIONS(7493), 1, anon_sym_COMMA, - STATE(3096), 1, - aux_sym_use_bounds_repeat1, - STATE(3049), 2, + STATE(3553), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3558), 2, sym_line_comment, sym_block_comment, - [88667] = 6, + [102018] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 1, - anon_sym_GT, - ACTIONS(6508), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, - STATE(3050), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5602), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(3559), 2, sym_line_comment, sym_block_comment, - [88687] = 6, + [102038] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6514), 1, - anon_sym_GT, - ACTIONS(6516), 1, - anon_sym_COMMA, - STATE(3098), 1, - aux_sym_use_bounds_repeat1, - STATE(3051), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + ACTIONS(7495), 1, + anon_sym_SEMI, + STATE(1422), 1, + sym_declaration_list, + STATE(3560), 2, sym_line_comment, sym_block_comment, - [88707] = 6, + [102058] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(5199), 1, anon_sym_LT2, - ACTIONS(6518), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, + ACTIONS(7497), 1, + anon_sym_for, + STATE(2292), 1, sym_type_arguments, - STATE(3052), 2, + STATE(3561), 2, sym_line_comment, sym_block_comment, - [88727] = 5, + [102078] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6520), 2, - anon_sym_RPAREN, + ACTIONS(7501), 1, + anon_sym_COLON, + ACTIONS(7499), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3053), 2, + STATE(3562), 2, sym_line_comment, sym_block_comment, - [88745] = 6, + [102096] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3138), 1, - anon_sym_RPAREN, - ACTIONS(6522), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, - STATE(3054), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(5713), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(3563), 2, sym_line_comment, sym_block_comment, - [88765] = 5, + [102116] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6526), 1, - anon_sym_COLON, - ACTIONS(6524), 2, + ACTIONS(7503), 1, anon_sym_RBRACE, + ACTIONS(7505), 1, anon_sym_COMMA, - STATE(3055), 2, + STATE(3335), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3564), 2, sym_line_comment, sym_block_comment, - [88783] = 4, + [102136] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3056), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(6019), 1, + anon_sym_EQ, + STATE(4227), 1, + sym_where_clause, + STATE(3565), 2, sym_line_comment, sym_block_comment, - ACTIONS(6528), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88799] = 6, + [102156] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5374), 1, - anon_sym_RBRACE, - ACTIONS(6530), 1, - anon_sym_COMMA, - STATE(2954), 1, - aux_sym_struct_pattern_repeat1, - STATE(3057), 2, + ACTIONS(7507), 1, + sym_identifier, + ACTIONS(7509), 1, + anon_sym_await, + ACTIONS(7511), 1, + sym_integer_literal, + STATE(3566), 2, sym_line_comment, sym_block_comment, - [88819] = 6, + [102176] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - anon_sym_LBRACE, - ACTIONS(6532), 1, - anon_sym_COLON_COLON, - STATE(1518), 1, - sym_field_initializer_list, - STATE(3058), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(7513), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(3567), 2, sym_line_comment, sym_block_comment, - [88839] = 5, + [102196] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6536), 1, - anon_sym_COLON, - ACTIONS(6534), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3059), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(7515), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(3568), 2, sym_line_comment, sym_block_comment, - [88857] = 6, + [102216] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6538), 1, - anon_sym_LPAREN, - ACTIONS(6540), 1, - anon_sym_LBRACK, - ACTIONS(6542), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - STATE(3060), 2, + ACTIONS(7517), 1, + anon_sym_SEMI, + STATE(703), 1, + sym_declaration_list, + STATE(3569), 2, sym_line_comment, sym_block_comment, - [88877] = 6, + [102236] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6544), 1, - anon_sym_LPAREN, - ACTIONS(6546), 1, - anon_sym_LBRACK, - ACTIONS(6548), 1, - anon_sym_LBRACE, - STATE(3061), 2, + ACTIONS(5631), 1, + anon_sym_where, + ACTIONS(7519), 1, + anon_sym_EQ, + STATE(4240), 1, + sym_where_clause, + STATE(3570), 2, sym_line_comment, sym_block_comment, - [88897] = 6, + [102256] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6550), 1, - anon_sym_RBRACE, - ACTIONS(6552), 1, - anon_sym_COMMA, - STATE(2892), 1, - aux_sym_field_initializer_list_repeat1, - STATE(3062), 2, + ACTIONS(5199), 1, + anon_sym_LT2, + ACTIONS(7521), 1, + anon_sym_for, + STATE(2292), 1, + sym_type_arguments, + STATE(3571), 2, sym_line_comment, sym_block_comment, - [88917] = 5, + [102276] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6554), 1, - anon_sym_GT, - ACTIONS(6556), 1, - anon_sym_COMMA, - STATE(3063), 3, + ACTIONS(5608), 1, + anon_sym_LBRACE, + ACTIONS(7523), 1, + anon_sym_SEMI, + STATE(705), 1, + sym_declaration_list, + STATE(3572), 2, sym_line_comment, sym_block_comment, - aux_sym_use_bounds_repeat1, - [88935] = 6, + [102296] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6559), 1, - anon_sym_LBRACE, - STATE(2008), 1, - sym_type_arguments, - STATE(3064), 2, + STATE(3573), 2, sym_line_comment, sym_block_comment, - [88955] = 4, + ACTIONS(7525), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [102312] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3065), 2, + ACTIONS(995), 1, + anon_sym_RBRACK, + ACTIONS(4772), 1, + anon_sym_COMMA, + STATE(3164), 1, + aux_sym_arguments_repeat1, + STATE(3574), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88971] = 6, + [102332] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - anon_sym_COMMA, - ACTIONS(6561), 1, - anon_sym_PIPE, - STATE(3083), 1, - aux_sym_closure_parameters_repeat1, - STATE(3066), 2, + ACTIONS(7527), 1, + sym_identifier, + ACTIONS(7529), 1, + anon_sym_ref, + ACTIONS(7531), 1, + sym_mutable_specifier, + STATE(3575), 2, sym_line_comment, sym_block_comment, - [88991] = 6, + [102352] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3112), 1, - anon_sym_RPAREN, - ACTIONS(6563), 1, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7533), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, - STATE(3067), 2, + STATE(3576), 2, sym_line_comment, sym_block_comment, - [89011] = 6, + [102370] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5547), 1, + ACTIONS(2982), 1, anon_sym_RPAREN, - ACTIONS(5549), 1, + ACTIONS(7535), 1, anon_sym_COMMA, - STATE(3079), 1, - aux_sym_parameters_repeat1, - STATE(3068), 2, + STATE(3420), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3577), 2, sym_line_comment, sym_block_comment, - [89031] = 6, + [102390] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5298), 1, - anon_sym_RBRACE, - ACTIONS(6565), 1, + ACTIONS(5384), 1, + anon_sym_GT, + ACTIONS(6869), 1, anon_sym_COMMA, - STATE(2954), 1, - aux_sym_struct_pattern_repeat1, - STATE(3069), 2, + STATE(3283), 1, + aux_sym_type_parameters_repeat1, + STATE(3578), 2, sym_line_comment, sym_block_comment, - [89051] = 5, + [102410] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6567), 2, - anon_sym_RPAREN, + ACTIONS(3568), 1, + anon_sym_RBRACK, + ACTIONS(7537), 1, anon_sym_COMMA, - STATE(3070), 2, + STATE(3057), 1, + aux_sym_slice_pattern_repeat1, + STATE(3579), 2, sym_line_comment, sym_block_comment, - [89069] = 6, + [102430] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2570), 1, - anon_sym_RPAREN, - ACTIONS(6569), 1, - anon_sym_COMMA, - STATE(3041), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3071), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7539), 1, + anon_sym_SEMI, + ACTIONS(7541), 1, + anon_sym_EQ, + STATE(3580), 2, sym_line_comment, sym_block_comment, - [89089] = 5, + [102450] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, - anon_sym_AMP_AMP, - ACTIONS(4332), 2, + ACTIONS(5608), 1, anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(3072), 2, + ACTIONS(7543), 1, + anon_sym_SEMI, + STATE(601), 1, + sym_declaration_list, + STATE(3581), 2, sym_line_comment, sym_block_comment, - [89107] = 5, + [102470] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, - anon_sym_AMP_AMP, - ACTIONS(6573), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(3073), 2, + ACTIONS(7545), 1, + sym_identifier, + ACTIONS(7547), 1, + anon_sym_ref, + ACTIONS(7549), 1, + sym_mutable_specifier, + STATE(3582), 2, sym_line_comment, sym_block_comment, - [89125] = 6, + [102490] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6575), 1, - anon_sym_SEMI, - ACTIONS(6577), 1, - anon_sym_EQ, - STATE(3074), 2, + ACTIONS(7551), 1, + anon_sym_RBRACE, + ACTIONS(7553), 1, + anon_sym_COMMA, + STATE(3278), 1, + aux_sym_struct_pattern_repeat1, + STATE(3583), 2, sym_line_comment, sym_block_comment, - [89145] = 5, + [102510] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6567), 1, - anon_sym_RPAREN, - ACTIONS(6579), 1, + ACTIONS(6830), 1, + anon_sym_GT, + ACTIONS(7555), 1, anon_sym_COMMA, - STATE(3075), 3, + STATE(3538), 1, + aux_sym_use_bounds_repeat1, + STATE(3584), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [89163] = 4, + [102530] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3076), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(7557), 1, + anon_sym_in, + STATE(3585), 2, sym_line_comment, sym_block_comment, - ACTIONS(4959), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89179] = 4, + [102547] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3077), 2, + ACTIONS(7349), 1, + sym_identifier, + ACTIONS(7353), 1, + sym_mutable_specifier, + STATE(3586), 2, sym_line_comment, sym_block_comment, - ACTIONS(4961), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89195] = 6, + [102564] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6582), 1, - anon_sym_GT, - ACTIONS(6584), 1, - anon_sym_COMMA, - STATE(2871), 1, - aux_sym_type_parameters_repeat1, - STATE(3078), 2, + ACTIONS(6478), 1, + sym_super, + ACTIONS(6512), 1, + sym_identifier, + STATE(3587), 2, sym_line_comment, sym_block_comment, - [89215] = 6, + [102581] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(5724), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, - STATE(3079), 2, + ACTIONS(7559), 1, + sym_identifier, + ACTIONS(7561), 1, + sym_super, + STATE(3588), 2, sym_line_comment, sym_block_comment, - [89235] = 6, + [102598] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6586), 1, - anon_sym_SEMI, - STATE(1164), 1, - sym_declaration_list, - STATE(3080), 2, + ACTIONS(7563), 2, + sym_identifier, + sym_metavariable, + STATE(3589), 2, sym_line_comment, sym_block_comment, - [89255] = 6, + [102613] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6588), 1, - anon_sym_SEMI, - STATE(3599), 1, - sym_where_clause, - STATE(3081), 2, + STATE(215), 1, + sym_closure_parameters, + STATE(3590), 2, sym_line_comment, sym_block_comment, - [89275] = 4, + [102630] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3082), 2, + STATE(217), 1, + sym_closure_parameters, + STATE(3591), 2, sym_line_comment, sym_block_comment, - ACTIONS(6590), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [89291] = 6, + [102647] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - anon_sym_COMMA, - ACTIONS(6592), 1, - anon_sym_PIPE, - STATE(2941), 1, - aux_sym_closure_parameters_repeat1, - STATE(3083), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + STATE(875), 1, + sym_declaration_list, + STATE(3592), 2, sym_line_comment, sym_block_comment, - [89311] = 6, + [102664] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(5724), 1, - anon_sym_COMMA, - STATE(3015), 1, - aux_sym_parameters_repeat1, - STATE(3084), 2, + ACTIONS(6454), 2, + sym_identifier, + sym_super, + STATE(3593), 2, sym_line_comment, sym_block_comment, - [89331] = 6, + [102679] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6594), 1, - anon_sym_SEMI, - STATE(3675), 1, - sym_where_clause, - STATE(3085), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + STATE(876), 1, + sym_declaration_list, + STATE(3594), 2, sym_line_comment, sym_block_comment, - [89351] = 4, + [102696] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3086), 2, + ACTIONS(7565), 1, + sym_identifier, + ACTIONS(7567), 1, + sym_super, + STATE(3595), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89367] = 6, + [102713] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6596), 1, - anon_sym_SEMI, - ACTIONS(6598), 1, - anon_sym_RBRACK, - STATE(3087), 2, + ACTIONS(7569), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3596), 2, sym_line_comment, sym_block_comment, - [89387] = 6, + [102728] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6600), 1, - anon_sym_SEMI, - STATE(546), 1, - sym_declaration_list, - STATE(3088), 2, + ACTIONS(6337), 1, + sym_super, + ACTIONS(7571), 1, + sym_identifier, + STATE(3597), 2, sym_line_comment, sym_block_comment, - [89407] = 4, + [102745] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3089), 2, + ACTIONS(7573), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3598), 2, sym_line_comment, sym_block_comment, - ACTIONS(4965), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89423] = 6, + [102760] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(6602), 1, - anon_sym_GT, - STATE(3234), 1, - sym_lifetime, - STATE(3090), 2, + ACTIONS(5418), 1, + anon_sym_COLON_COLON, + ACTIONS(5490), 1, + anon_sym_BANG, + STATE(3599), 2, sym_line_comment, sym_block_comment, - [89443] = 6, + [102777] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6602), 1, - anon_sym_GT, - ACTIONS(6604), 1, - anon_sym_COMMA, - STATE(3033), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3091), 2, + ACTIONS(7575), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3600), 2, sym_line_comment, sym_block_comment, - [89463] = 4, + [102792] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3092), 2, + ACTIONS(4582), 1, + anon_sym_LPAREN, + STATE(1955), 1, + sym_parameters, + STATE(3601), 2, sym_line_comment, sym_block_comment, - ACTIONS(5005), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89479] = 4, + [102809] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3093), 2, + ACTIONS(6454), 1, + sym_super, + ACTIONS(7577), 1, + sym_identifier, + STATE(3602), 2, sym_line_comment, sym_block_comment, - ACTIONS(5017), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89495] = 4, + [102826] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3094), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + STATE(1585), 1, + sym_declaration_list, + STATE(3603), 2, sym_line_comment, sym_block_comment, - ACTIONS(4989), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89511] = 6, + [102843] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(6606), 1, - anon_sym_SEMI, - STATE(642), 1, + STATE(799), 1, sym_declaration_list, - STATE(3095), 2, + STATE(3604), 2, sym_line_comment, sym_block_comment, - [89531] = 6, + [102860] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6054), 1, - anon_sym_GT, - ACTIONS(6608), 1, - anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, - STATE(3096), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + STATE(1586), 1, + sym_declaration_list, + STATE(3605), 2, sym_line_comment, sym_block_comment, - [89551] = 6, + [102877] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6610), 1, + ACTIONS(7579), 1, anon_sym_SEMI, - STATE(3608), 1, - sym_where_clause, - STATE(3097), 2, + ACTIONS(7581), 1, + anon_sym_EQ, + STATE(3606), 2, sym_line_comment, sym_block_comment, - [89571] = 6, + [102894] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6056), 1, - anon_sym_GT, - ACTIONS(6612), 1, + ACTIONS(7124), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, - STATE(3098), 2, + STATE(3607), 2, sym_line_comment, sym_block_comment, - [89591] = 5, + [102909] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6614), 1, - anon_sym_EQ, - ACTIONS(6616), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3099), 2, + STATE(232), 1, + sym_closure_parameters, + STATE(3608), 2, sym_line_comment, sym_block_comment, - [89609] = 4, + [102926] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3100), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + STATE(777), 1, + sym_declaration_list, + STATE(3609), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89625] = 5, + [102943] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6618), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3101), 2, + ACTIONS(6717), 1, + sym_identifier, + ACTIONS(6719), 1, + sym_super, + STATE(3610), 2, sym_line_comment, sym_block_comment, - [89643] = 4, + [102960] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3102), 2, + ACTIONS(6502), 2, + sym_identifier, + sym_super, + STATE(3611), 2, sym_line_comment, sym_block_comment, - ACTIONS(5019), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89659] = 4, + [102975] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3103), 2, + ACTIONS(7583), 1, + sym_identifier, + ACTIONS(7585), 1, + sym_super, + STATE(3612), 2, sym_line_comment, sym_block_comment, - ACTIONS(4937), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89675] = 6, + [102992] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6620), 1, - anon_sym_SEMI, - STATE(710), 1, - sym_declaration_list, - STATE(3104), 2, + ACTIONS(6337), 2, + sym_identifier, + sym_super, + STATE(3613), 2, sym_line_comment, sym_block_comment, - [89695] = 6, + [103007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, - anon_sym_RBRACE, - ACTIONS(6624), 1, - anon_sym_COMMA, - STATE(3110), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3105), 2, + ACTIONS(7587), 1, + sym_identifier, + ACTIONS(7589), 1, + sym_super, + STATE(3614), 2, sym_line_comment, sym_block_comment, - [89715] = 6, + [103024] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6626), 1, - anon_sym_SEMI, - STATE(548), 1, - sym_declaration_list, - STATE(3106), 2, + ACTIONS(7591), 1, + sym_identifier, + ACTIONS(7593), 1, + sym_super, + STATE(3615), 2, sym_line_comment, sym_block_comment, - [89735] = 4, + [103041] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3107), 2, + ACTIONS(5923), 1, + sym_super, + ACTIONS(6476), 1, + sym_identifier, + STATE(3616), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89751] = 4, + [103058] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3108), 2, + ACTIONS(7595), 1, + sym_identifier, + ACTIONS(7597), 1, + sym_super, + STATE(3617), 2, sym_line_comment, sym_block_comment, - ACTIONS(4977), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89767] = 5, + [103075] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - anon_sym_EQ, - ACTIONS(6628), 2, + ACTIONS(7143), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(3109), 2, + STATE(3618), 2, sym_line_comment, sym_block_comment, - [89785] = 6, + [103090] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5088), 1, - anon_sym_RBRACE, - ACTIONS(6632), 1, - anon_sym_COMMA, - STATE(3134), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3110), 2, + ACTIONS(6039), 1, + anon_sym_LBRACE, + STATE(1599), 1, + sym_enum_variant_list, + STATE(3619), 2, sym_line_comment, sym_block_comment, - [89805] = 6, + [103107] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5088), 1, - anon_sym_RBRACE, - ACTIONS(6632), 1, - anon_sym_COMMA, - STATE(3143), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3111), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + STATE(764), 1, + sym_declaration_list, + STATE(3620), 2, sym_line_comment, sym_block_comment, - [89825] = 6, + [103124] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6634), 1, - anon_sym_RBRACE, - ACTIONS(6636), 1, - anon_sym_COMMA, - STATE(2884), 1, - aux_sym_field_initializer_list_repeat1, - STATE(3112), 2, + ACTIONS(7599), 1, + anon_sym_LT, + STATE(1033), 1, + sym_type_parameters, + STATE(3621), 2, sym_line_comment, sym_block_comment, - [89845] = 6, + [103141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4774), 1, - anon_sym_COLON, - ACTIONS(5070), 1, - anon_sym_COLON_COLON, - STATE(2565), 1, - sym_trait_bounds, - STATE(3113), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2809), 1, + sym_parameters, + STATE(3622), 2, sym_line_comment, sym_block_comment, - [89865] = 6, + [103158] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6638), 1, - anon_sym_RPAREN, - ACTIONS(6640), 1, - anon_sym_COMMA, - STATE(2876), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(3114), 2, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(1602), 1, + sym_field_declaration_list, + STATE(3623), 2, sym_line_comment, sym_block_comment, - [89885] = 6, + [103175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6642), 1, - anon_sym_EQ_GT, - ACTIONS(6644), 1, - anon_sym_PIPE, - ACTIONS(6646), 1, - anon_sym_if, - STATE(3115), 2, + ACTIONS(4582), 1, + anon_sym_LPAREN, + STATE(1912), 1, + sym_parameters, + STATE(3624), 2, sym_line_comment, sym_block_comment, - [89905] = 6, + [103192] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(6648), 1, - anon_sym_SEMI, - STATE(1185), 1, + STATE(1604), 1, + sym_field_declaration_list, + STATE(3625), 2, + sym_line_comment, + sym_block_comment, + [103209] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5608), 1, + anon_sym_LBRACE, + STATE(765), 1, sym_declaration_list, - STATE(3116), 2, + STATE(3626), 2, + sym_line_comment, + sym_block_comment, + [103226] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5614), 1, + anon_sym_LBRACE, + STATE(1605), 1, + sym_declaration_list, + STATE(3627), 2, sym_line_comment, sym_block_comment, - [89925] = 6, + [103243] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, - anon_sym_RBRACK, - ACTIONS(4248), 1, - anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(3117), 2, + ACTIONS(5893), 1, + anon_sym_RBRACE, + ACTIONS(7601), 1, + anon_sym_SEMI, + STATE(3628), 2, sym_line_comment, sym_block_comment, - [89945] = 5, + [103260] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6650), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3118), 2, + ACTIONS(7603), 2, + sym_identifier, + sym_super, + STATE(3629), 2, sym_line_comment, sym_block_comment, - [89963] = 6, + [103275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6652), 1, - anon_sym_SEMI, - ACTIONS(6654), 1, - anon_sym_EQ, - STATE(3119), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + STATE(616), 1, + sym_declaration_list, + STATE(3630), 2, sym_line_comment, sym_block_comment, - [89983] = 6, + [103292] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6656), 1, - anon_sym_LPAREN, - ACTIONS(6658), 1, - anon_sym_LBRACK, - ACTIONS(6660), 1, - anon_sym_LBRACE, - STATE(3120), 2, + ACTIONS(6635), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3631), 2, sym_line_comment, sym_block_comment, - [90003] = 5, + [103307] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6662), 2, - anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3121), 2, + STATE(3632), 2, sym_line_comment, sym_block_comment, - [90021] = 6, + [103322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6664), 1, - sym_identifier, - ACTIONS(6666), 1, - anon_sym_ref, - ACTIONS(6668), 1, - sym_mutable_specifier, - STATE(3122), 2, + ACTIONS(5731), 1, + anon_sym_COLON, + STATE(2913), 1, + sym_trait_bounds, + STATE(3633), 2, sym_line_comment, sym_block_comment, - [90041] = 6, + [103339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4979), 1, - anon_sym_LBRACE, - STATE(2008), 1, - sym_type_arguments, - STATE(3123), 2, + ACTIONS(7605), 1, + anon_sym_SEMI, + ACTIONS(7607), 1, + anon_sym_EQ, + STATE(3634), 2, sym_line_comment, sym_block_comment, - [90061] = 6, + [103356] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6670), 1, - anon_sym_LPAREN, - ACTIONS(6672), 1, - anon_sym_LBRACK, - ACTIONS(6674), 1, + ACTIONS(6134), 1, anon_sym_LBRACE, - STATE(3124), 2, + STATE(887), 1, + sym_enum_variant_list, + STATE(3635), 2, sym_line_comment, sym_block_comment, - [90081] = 6, + [103373] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4991), 1, - anon_sym_BANG, - ACTIONS(6676), 1, - sym_identifier, - STATE(3125), 2, + ACTIONS(4582), 1, + anon_sym_LPAREN, + STATE(1919), 1, + sym_parameters, + STATE(3636), 2, sym_line_comment, sym_block_comment, - [90101] = 6, + [103390] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(6039), 1, anon_sym_LBRACE, - ACTIONS(6678), 1, - anon_sym_SEMI, - STATE(517), 1, - sym_declaration_list, - STATE(3126), 2, + STATE(1620), 1, + sym_enum_variant_list, + STATE(3637), 2, sym_line_comment, sym_block_comment, - [90121] = 6, + [103407] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6680), 1, - anon_sym_SEMI, - STATE(565), 1, - sym_declaration_list, - STATE(3127), 2, + ACTIONS(7609), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3638), 2, sym_line_comment, sym_block_comment, - [90141] = 5, + [103422] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6682), 1, - anon_sym_GT, - ACTIONS(6684), 1, - anon_sym_COMMA, - STATE(3128), 3, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(1625), 1, + sym_field_declaration_list, + STATE(3639), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [90159] = 6, + [103439] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4825), 1, - anon_sym_GT, - ACTIONS(6687), 1, - anon_sym_COMMA, - STATE(3128), 1, - aux_sym_type_parameters_repeat1, - STATE(3129), 2, + ACTIONS(5654), 1, + anon_sym_LBRACE, + STATE(890), 1, + sym_field_declaration_list, + STATE(3640), 2, sym_line_comment, sym_block_comment, - [90179] = 6, + [103456] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - ACTIONS(6689), 1, - anon_sym_SEMI, - STATE(613), 1, - sym_declaration_list, - STATE(3130), 2, + STATE(1628), 1, + sym_field_declaration_list, + STATE(3641), 2, sym_line_comment, sym_block_comment, - [90199] = 6, + [103473] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6691), 1, - anon_sym_SEMI, - STATE(519), 1, - sym_declaration_list, - STATE(3131), 2, + ACTIONS(7611), 1, + anon_sym_LBRACK, + ACTIONS(7613), 1, + anon_sym_BANG, + STATE(3642), 2, sym_line_comment, sym_block_comment, - [90219] = 4, + [103490] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3132), 2, + ACTIONS(6134), 1, + anon_sym_LBRACE, + STATE(787), 1, + sym_enum_variant_list, + STATE(3643), 2, sym_line_comment, sym_block_comment, - ACTIONS(5021), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90235] = 6, + [103507] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3110), 1, - anon_sym_RBRACK, - ACTIONS(6693), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, - STATE(3133), 2, + ACTIONS(7593), 2, + sym_identifier, + sym_super, + STATE(3644), 2, sym_line_comment, sym_block_comment, - [90255] = 5, + [103522] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6695), 1, - anon_sym_RBRACE, - ACTIONS(6697), 1, - anon_sym_COMMA, - STATE(3134), 3, + ACTIONS(7615), 1, + anon_sym_SEMI, + ACTIONS(7617), 1, + anon_sym_as, + STATE(3645), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [90273] = 6, + [103539] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5654), 1, anon_sym_LBRACE, - ACTIONS(6700), 1, - anon_sym_SEMI, - STATE(525), 1, - sym_declaration_list, - STATE(3135), 2, + STATE(893), 1, + sym_field_declaration_list, + STATE(3646), 2, sym_line_comment, sym_block_comment, - [90293] = 6, + [103556] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6104), 1, - anon_sym_RPAREN, - ACTIONS(6106), 1, - anon_sym_COMMA, - STATE(3071), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3136), 2, + ACTIONS(3997), 1, + anon_sym_LBRACE, + STATE(1684), 1, + sym_field_initializer_list, + STATE(3647), 2, sym_line_comment, sym_block_comment, - [90313] = 6, + [103573] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - ACTIONS(6702), 1, - anon_sym_SEMI, - STATE(620), 1, + STATE(895), 1, sym_declaration_list, - STATE(3137), 2, + STATE(3648), 2, sym_line_comment, sym_block_comment, - [90333] = 5, + [103590] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6704), 2, + ACTIONS(7601), 1, + anon_sym_SEMI, + ACTIONS(7619), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3138), 2, + STATE(3649), 2, sym_line_comment, sym_block_comment, - [90351] = 6, + [103607] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(4774), 1, - anon_sym_COLON, - STATE(2565), 1, - sym_trait_bounds, - STATE(3139), 2, + ACTIONS(6454), 1, + sym_super, + ACTIONS(7621), 1, + sym_identifier, + STATE(3650), 2, sym_line_comment, sym_block_comment, - [90371] = 4, + [103624] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3140), 2, + ACTIONS(7577), 1, + sym_identifier, + ACTIONS(7593), 1, + sym_super, + STATE(3651), 2, sym_line_comment, sym_block_comment, - ACTIONS(4929), 3, - anon_sym_EQ_GT, + [103641] = 5, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [90387] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6706), 1, - anon_sym_SEMI, - STATE(527), 1, - sym_declaration_list, - STATE(3141), 2, + STATE(218), 1, + sym_closure_parameters, + STATE(3652), 2, sym_line_comment, sym_block_comment, - [90407] = 5, + [103658] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6710), 1, - anon_sym_EQ, - ACTIONS(6708), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3142), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2562), 1, + sym_parameters, + STATE(3653), 2, sym_line_comment, sym_block_comment, - [90425] = 6, + [103675] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5114), 1, - anon_sym_RBRACE, - ACTIONS(6712), 1, + ACTIONS(7623), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3134), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3143), 2, + STATE(3654), 2, sym_line_comment, sym_block_comment, - [90445] = 6, + [103690] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5118), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(3144), 2, + STATE(243), 1, + sym_closure_parameters, + STATE(3655), 2, sym_line_comment, sym_block_comment, - [90465] = 6, + [103707] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6714), 1, - anon_sym_SEMI, - STATE(765), 1, - sym_declaration_list, - STATE(3145), 2, + ACTIONS(7625), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3656), 2, sym_line_comment, sym_block_comment, - [90485] = 6, + [103722] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6716), 1, - anon_sym_SEMI, - STATE(630), 1, - sym_declaration_list, - STATE(3146), 2, + ACTIONS(6337), 1, + sym_super, + ACTIONS(7627), 1, + sym_identifier, + STATE(3657), 2, sym_line_comment, sym_block_comment, - [90505] = 6, + [103739] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6718), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(3147), 2, + ACTIONS(5923), 1, + sym_super, + ACTIONS(6566), 1, + sym_identifier, + STATE(3658), 2, sym_line_comment, sym_block_comment, - [90525] = 6, + [103756] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6720), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(3148), 2, + ACTIONS(5654), 1, + anon_sym_LBRACE, + STATE(790), 1, + sym_field_declaration_list, + STATE(3659), 2, sym_line_comment, sym_block_comment, - [90545] = 6, + [103773] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6722), 1, - anon_sym_SEMI, - ACTIONS(6724), 1, - anon_sym_EQ, - STATE(3149), 2, + STATE(219), 1, + sym_closure_parameters, + STATE(3660), 2, sym_line_comment, sym_block_comment, - [90565] = 6, + [103790] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6726), 1, - anon_sym_EQ, - STATE(3727), 1, - sym_where_clause, - STATE(3150), 2, + ACTIONS(7601), 1, + anon_sym_SEMI, + ACTIONS(7629), 1, + anon_sym_RBRACE, + STATE(3661), 2, sym_line_comment, sym_block_comment, - [90585] = 6, + [103807] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6728), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(3151), 2, + ACTIONS(6719), 2, + sym_identifier, + sym_super, + STATE(3662), 2, sym_line_comment, sym_block_comment, - [90605] = 4, + [103822] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3152), 2, + ACTIONS(7593), 1, + sym_super, + ACTIONS(7631), 1, + sym_identifier, + STATE(3663), 2, sym_line_comment, sym_block_comment, - ACTIONS(6730), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90621] = 6, + [103839] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6732), 1, + ACTIONS(5923), 1, + sym_super, + ACTIONS(6512), 1, sym_identifier, - ACTIONS(6734), 1, - anon_sym_ref, - ACTIONS(6736), 1, - sym_mutable_specifier, - STATE(3153), 2, + STATE(3664), 2, sym_line_comment, sym_block_comment, - [90641] = 6, + [103856] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(999), 1, - anon_sym_RBRACK, - ACTIONS(4270), 1, - anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(3154), 2, + ACTIONS(7587), 1, + sym_identifier, + ACTIONS(7597), 1, + sym_super, + STATE(3665), 2, sym_line_comment, sym_block_comment, - [90661] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [103873] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6738), 1, - anon_sym_move, - STATE(248), 1, - sym_closure_parameters, - STATE(3155), 2, + ACTIONS(7633), 2, + sym_identifier, + sym_metavariable, + STATE(3666), 2, sym_line_comment, sym_block_comment, - [90681] = 5, + [103888] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6740), 1, - anon_sym_RPAREN, - ACTIONS(6742), 1, - anon_sym_COLON_COLON, - STATE(3156), 2, + ACTIONS(3502), 1, + anon_sym_SQUOTE, + STATE(3832), 1, + sym_lifetime, + STATE(3667), 2, sym_line_comment, sym_block_comment, - [90698] = 5, + [103905] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6744), 1, - sym_identifier, - STATE(3157), 2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(4456), 1, + anon_sym_COLON, + STATE(3668), 2, sym_line_comment, sym_block_comment, - [90715] = 5, + [103922] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - STATE(1662), 1, - sym_parameters, - STATE(3158), 2, + ACTIONS(5654), 1, + anon_sym_LBRACE, + STATE(661), 1, + sym_field_declaration_list, + STATE(3669), 2, sym_line_comment, sym_block_comment, - [90732] = 5, + [103939] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1218), 1, - sym_declaration_list, - STATE(3159), 2, + ACTIONS(7635), 1, + anon_sym_SEMI, + ACTIONS(7637), 1, + anon_sym_EQ, + STATE(3670), 2, sym_line_comment, sym_block_comment, - [90749] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [103956] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(238), 1, - sym_closure_parameters, - STATE(3160), 2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(4460), 1, + anon_sym_COLON, + STATE(3671), 2, sym_line_comment, sym_block_comment, - [90766] = 5, + [103973] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5773), 1, - sym_identifier, - ACTIONS(5775), 1, - sym_super, - STATE(3161), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(7217), 1, + anon_sym_for, + STATE(3672), 2, sym_line_comment, sym_block_comment, - [90783] = 5, + [103990] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(6746), 1, - anon_sym_AMP_AMP, - STATE(3162), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + STATE(829), 1, + sym_declaration_list, + STATE(3673), 2, sym_line_comment, sym_block_comment, - [90800] = 4, + [104007] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5928), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3163), 2, + ACTIONS(7639), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3674), 2, sym_line_comment, sym_block_comment, - [90815] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [104022] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(236), 1, - sym_closure_parameters, - STATE(3164), 2, + ACTIONS(5654), 1, + anon_sym_LBRACE, + STATE(795), 1, + sym_field_declaration_list, + STATE(3675), 2, sym_line_comment, sym_block_comment, - [90832] = 5, + [104039] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6573), 1, - anon_sym_EQ_GT, - ACTIONS(6746), 1, - anon_sym_AMP_AMP, - STATE(3165), 2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(4232), 1, + anon_sym_COLON, + STATE(3676), 2, sym_line_comment, sym_block_comment, - [90849] = 5, + [104056] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - STATE(645), 1, + STATE(830), 1, sym_declaration_list, - STATE(3166), 2, + STATE(3677), 2, sym_line_comment, sym_block_comment, - [90866] = 5, + [104073] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5288), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3167), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(7641), 1, + anon_sym_in, + STATE(3678), 2, sym_line_comment, sym_block_comment, - [90883] = 5, + [104090] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - STATE(726), 1, - sym_field_declaration_list, - STATE(3168), 2, + STATE(665), 1, + sym_declaration_list, + STATE(3679), 2, sym_line_comment, sym_block_comment, - [90900] = 5, + [104107] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5938), 1, - sym_identifier, - ACTIONS(5940), 1, - sym_super, - STATE(3169), 2, + STATE(221), 1, + sym_closure_parameters, + STATE(3680), 2, sym_line_comment, sym_block_comment, - [90917] = 4, + [104124] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 2, - sym_identifier, - sym_super, - STATE(3170), 2, + ACTIONS(6134), 1, + anon_sym_LBRACE, + STATE(622), 1, + sym_enum_variant_list, + STATE(3681), 2, sym_line_comment, sym_block_comment, - [90932] = 5, + [104141] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6750), 1, + ACTIONS(3848), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3682), 2, + sym_line_comment, + sym_block_comment, + [104156] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7643), 1, sym_identifier, - ACTIONS(6752), 1, + ACTIONS(7645), 1, sym_super, - STATE(3171), 2, + STATE(3683), 2, sym_line_comment, sym_block_comment, - [90949] = 5, + [104173] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6442), 1, - anon_sym_for, - STATE(3172), 2, + STATE(222), 1, + sym_closure_parameters, + STATE(3684), 2, sym_line_comment, sym_block_comment, - [90966] = 5, + [104190] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6754), 1, + ACTIONS(7647), 1, sym_identifier, - ACTIONS(6756), 1, + ACTIONS(7649), 1, sym_super, - STATE(3173), 2, + STATE(3685), 2, sym_line_comment, sym_block_comment, - [90983] = 5, + [104207] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, + ACTIONS(6478), 1, sym_super, - ACTIONS(5836), 1, + ACTIONS(6494), 1, sym_identifier, - STATE(3174), 2, + STATE(3686), 2, sym_line_comment, sym_block_comment, - [91000] = 5, + [104224] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6758), 1, - sym_identifier, - ACTIONS(6760), 1, + ACTIONS(7589), 1, sym_super, - STATE(3175), 2, + ACTIONS(7651), 1, + sym_identifier, + STATE(3687), 2, sym_line_comment, sym_block_comment, - [91017] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [104241] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(231), 1, - sym_closure_parameters, - STATE(3176), 2, + ACTIONS(7653), 1, + anon_sym_SEMI, + ACTIONS(7655), 1, + anon_sym_EQ, + STATE(3688), 2, sym_line_comment, sym_block_comment, - [91034] = 4, + [104258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6762), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3177), 2, + ACTIONS(7657), 1, + anon_sym_STAR_SLASH, + ACTIONS(7659), 1, + sym__block_comment_content, + STATE(3689), 2, sym_line_comment, sym_block_comment, - [91049] = 5, + [104275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(937), 1, - sym_type_parameters, - STATE(3178), 2, + ACTIONS(7661), 1, + anon_sym_RPAREN, + ACTIONS(7663), 1, + anon_sym_COLON_COLON, + STATE(3690), 2, sym_line_comment, sym_block_comment, - [91066] = 5, + [104292] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6766), 1, - anon_sym_SEMI, - ACTIONS(6768), 1, - anon_sym_EQ, - STATE(3179), 2, + ACTIONS(5654), 1, + anon_sym_LBRACE, + STATE(642), 1, + sym_field_declaration_list, + STATE(3691), 2, sym_line_comment, sym_block_comment, - [91083] = 5, + [104309] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - STATE(1696), 1, - sym_parameters, - STATE(3180), 2, + ACTIONS(7665), 1, + sym_identifier, + ACTIONS(7667), 1, + sym_mutable_specifier, + STATE(3692), 2, sym_line_comment, sym_block_comment, - [91100] = 4, + [104326] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6282), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(3181), 2, + ACTIONS(7669), 1, + anon_sym_RPAREN, + ACTIONS(7671), 1, + anon_sym_COLON_COLON, + STATE(3693), 2, sym_line_comment, sym_block_comment, - [91115] = 5, + [104343] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6770), 1, - anon_sym_in, - STATE(3182), 2, + ACTIONS(7669), 1, + anon_sym_RPAREN, + ACTIONS(7673), 1, + anon_sym_COLON_COLON, + STATE(3694), 2, sym_line_comment, sym_block_comment, - [91132] = 4, + [104360] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5942), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3183), 2, + ACTIONS(7675), 1, + anon_sym_SEMI, + ACTIONS(7677), 1, + anon_sym_as, + STATE(3695), 2, sym_line_comment, sym_block_comment, - [91147] = 4, + [104377] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6772), 2, - sym_identifier, - sym_super, - STATE(3184), 2, + ACTIONS(7679), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3696), 2, sym_line_comment, sym_block_comment, - [91162] = 5, + [104392] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5132), 1, - anon_sym_for, - STATE(3185), 2, + ACTIONS(6935), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3697), 2, sym_line_comment, sym_block_comment, - [91179] = 5, + [104407] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1224), 1, - sym_field_declaration_list, - STATE(3186), 2, + ACTIONS(7645), 1, + sym_super, + ACTIONS(7681), 1, + sym_identifier, + STATE(3698), 2, sym_line_comment, sym_block_comment, - [91196] = 5, + [104424] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - anon_sym_LBRACE, - STATE(1518), 1, - sym_field_initializer_list, - STATE(3187), 2, + ACTIONS(7669), 1, + anon_sym_RPAREN, + ACTIONS(7683), 1, + anon_sym_COLON_COLON, + STATE(3699), 2, sym_line_comment, sym_block_comment, - [91213] = 4, + [104441] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3188), 2, + ACTIONS(7593), 1, + sym_super, + ACTIONS(7685), 1, + sym_identifier, + STATE(3700), 2, sym_line_comment, sym_block_comment, - [91228] = 5, + [104458] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6774), 1, - anon_sym_RPAREN, - ACTIONS(6776), 1, - anon_sym_COLON_COLON, - STATE(3189), 2, + ACTIONS(6478), 1, + sym_super, + ACTIONS(6657), 1, + sym_identifier, + STATE(3701), 2, sym_line_comment, sym_block_comment, - [91245] = 5, + [104475] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - STATE(1695), 1, - sym_parameters, - STATE(3190), 2, + ACTIONS(7589), 1, + sym_super, + ACTIONS(7687), 1, + sym_identifier, + STATE(3702), 2, sym_line_comment, sym_block_comment, - [91262] = 4, + [104492] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6778), 2, - sym_identifier, - sym_metavariable, - STATE(3191), 2, + ACTIONS(5654), 1, + anon_sym_LBRACE, + STATE(655), 1, + sym_field_declaration_list, + STATE(3703), 2, sym_line_comment, sym_block_comment, - [91277] = 5, + [104509] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(677), 1, - sym_declaration_list, - STATE(3192), 2, + ACTIONS(7627), 1, + sym_identifier, + ACTIONS(7645), 1, + sym_super, + STATE(3704), 2, sym_line_comment, sym_block_comment, - [91294] = 5, + [104526] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(1048), 1, - sym_type_parameters, - STATE(3193), 2, + ACTIONS(7645), 2, + sym_identifier, + sym_super, + STATE(3705), 2, sym_line_comment, sym_block_comment, - [91311] = 5, + [104541] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - STATE(3234), 1, - sym_lifetime, - STATE(3194), 2, + ACTIONS(7689), 1, + anon_sym_SEMI, + ACTIONS(7691), 1, + anon_sym_as, + STATE(3706), 2, sym_line_comment, sym_block_comment, - [91328] = 5, + [104558] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5654), 1, anon_sym_LBRACE, - STATE(1229), 1, - sym_declaration_list, - STATE(3195), 2, + STATE(671), 1, + sym_field_declaration_list, + STATE(3707), 2, sym_line_comment, sym_block_comment, - [91345] = 5, + [104575] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, + ACTIONS(6454), 1, sym_super, - ACTIONS(5816), 1, + ACTIONS(7693), 1, sym_identifier, - STATE(3196), 2, + STATE(3708), 2, sym_line_comment, sym_block_comment, - [91362] = 5, + [104592] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1270), 1, - sym_declaration_list, - STATE(3197), 2, + ACTIONS(7695), 1, + sym_identifier, + ACTIONS(7697), 1, + sym_super, + STATE(3709), 2, sym_line_comment, sym_block_comment, - [91379] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [104609] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(237), 1, - sym_closure_parameters, - STATE(3198), 2, + ACTIONS(7699), 2, + sym_identifier, + sym_metavariable, + STATE(3710), 2, sym_line_comment, sym_block_comment, - [91396] = 4, + [104624] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 2, - sym_identifier, + ACTIONS(7593), 1, sym_super, - STATE(3199), 2, + ACTIONS(7701), 1, + sym_identifier, + STATE(3711), 2, sym_line_comment, sym_block_comment, - [91411] = 5, + [104641] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2303), 1, - sym_parameters, - STATE(3200), 2, + ACTIONS(6502), 1, + sym_super, + ACTIONS(6721), 1, + sym_identifier, + STATE(3712), 2, sym_line_comment, sym_block_comment, - [91428] = 5, + [104658] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, + ACTIONS(7603), 1, sym_super, - ACTIONS(6780), 1, + ACTIONS(7703), 1, sym_identifier, - STATE(3201), 2, + STATE(3713), 2, sym_line_comment, sym_block_comment, - [91445] = 5, + [104675] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - STATE(1277), 1, + STATE(1526), 1, sym_declaration_list, - STATE(3202), 2, + STATE(3714), 2, sym_line_comment, sym_block_comment, - [91462] = 5, + [104692] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1278), 1, - sym_declaration_list, - STATE(3203), 2, + ACTIONS(7059), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3715), 2, sym_line_comment, sym_block_comment, - [91479] = 5, + [104707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6782), 1, - anon_sym_RPAREN, - STATE(3204), 2, + ACTIONS(6337), 1, + sym_super, + ACTIONS(7643), 1, + sym_identifier, + STATE(3716), 2, sym_line_comment, sym_block_comment, - [91496] = 5, + [104724] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, + ACTIONS(7593), 1, sym_super, - ACTIONS(5808), 1, + ACTIONS(7621), 1, sym_identifier, - STATE(3205), 2, + STATE(3717), 2, sym_line_comment, sym_block_comment, - [91513] = 4, + [104741] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3206), 2, + ACTIONS(5923), 1, + sym_super, + ACTIONS(6494), 1, + sym_identifier, + STATE(3718), 2, sym_line_comment, sym_block_comment, - [91528] = 5, + [104758] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6782), 1, - anon_sym_RBRACK, - STATE(3207), 2, + ACTIONS(7597), 1, + sym_super, + ACTIONS(7651), 1, + sym_identifier, + STATE(3719), 2, sym_line_comment, sym_block_comment, - [91545] = 5, + [104775] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, + ACTIONS(7645), 1, sym_super, - ACTIONS(6786), 1, + ACTIONS(7705), 1, sym_identifier, - STATE(3208), 2, + STATE(3720), 2, sym_line_comment, sym_block_comment, - [91562] = 5, + [104792] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6788), 1, - anon_sym_RBRACE, - STATE(3209), 2, + ACTIONS(6478), 1, + sym_super, + ACTIONS(6492), 1, + sym_identifier, + STATE(3721), 2, sym_line_comment, sym_block_comment, - [91579] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [104809] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(248), 1, - sym_closure_parameters, - STATE(3210), 2, + ACTIONS(7589), 1, + sym_super, + ACTIONS(7707), 1, + sym_identifier, + STATE(3722), 2, sym_line_comment, sym_block_comment, - [91596] = 5, + [104826] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1754), 1, - sym_type_arguments, - STATE(3211), 2, + ACTIONS(7645), 1, + sym_super, + ACTIONS(7709), 1, + sym_identifier, + STATE(3723), 2, sym_line_comment, sym_block_comment, - [91613] = 5, + [104843] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6790), 1, - anon_sym_SEMI, - ACTIONS(6792), 1, - anon_sym_EQ, - STATE(3212), 2, + ACTIONS(6478), 1, + sym_super, + ACTIONS(6540), 1, + sym_identifier, + STATE(3724), 2, sym_line_comment, sym_block_comment, - [91630] = 5, + [104860] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5704), 1, - anon_sym_COLON, - STATE(3213), 2, + ACTIONS(7589), 1, + sym_super, + ACTIONS(7711), 1, + sym_identifier, + STATE(3725), 2, sym_line_comment, sym_block_comment, - [91647] = 5, + [104877] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1199), 1, - sym_enum_variant_list, - STATE(3214), 2, + ACTIONS(7645), 1, + sym_super, + ACTIONS(7713), 1, + sym_identifier, + STATE(3726), 2, sym_line_comment, sym_block_comment, - [91664] = 4, + [104894] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3215), 2, + ACTIONS(6478), 1, + sym_super, + ACTIONS(6560), 1, + sym_identifier, + STATE(3727), 2, sym_line_comment, sym_block_comment, - [91679] = 4, + [104911] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6794), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3216), 2, + ACTIONS(7589), 1, + sym_super, + ACTIONS(7715), 1, + sym_identifier, + STATE(3728), 2, sym_line_comment, sym_block_comment, - [91694] = 5, + [104928] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, + ACTIONS(6337), 1, sym_super, - ACTIONS(6796), 1, + ACTIONS(7713), 1, sym_identifier, - STATE(3217), 2, + STATE(3729), 2, sym_line_comment, sym_block_comment, - [91711] = 5, + [104945] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1286), 1, - sym_enum_variant_list, - STATE(3218), 2, + ACTIONS(5923), 1, + sym_super, + ACTIONS(6560), 1, + sym_identifier, + STATE(3730), 2, sym_line_comment, sym_block_comment, - [91728] = 4, + [104962] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6798), 2, + ACTIONS(7597), 1, + sym_super, + ACTIONS(7715), 1, sym_identifier, - sym_metavariable, - STATE(3219), 2, + STATE(3731), 2, sym_line_comment, sym_block_comment, - [91743] = 4, + [104979] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6800), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3220), 2, + ACTIONS(7717), 2, + sym_identifier, + sym_metavariable, + STATE(3732), 2, sym_line_comment, sym_block_comment, - [91758] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [104994] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(250), 1, - sym_closure_parameters, - STATE(3221), 2, + ACTIONS(3880), 1, + anon_sym_LT2, + STATE(1716), 1, + sym_type_arguments, + STATE(3733), 2, sym_line_comment, sym_block_comment, - [91775] = 4, + [105011] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6802), 2, - anon_sym_GT, + ACTIONS(7305), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(3222), 2, + STATE(3734), 2, sym_line_comment, sym_block_comment, - [91790] = 5, + [105026] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - STATE(1234), 1, - sym_enum_variant_list, - STATE(3223), 2, + STATE(1265), 1, + sym_declaration_list, + STATE(3735), 2, sym_line_comment, sym_block_comment, - [91807] = 4, + [105043] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5940), 2, - sym_identifier, - sym_super, - STATE(3224), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + STATE(1266), 1, + sym_declaration_list, + STATE(3736), 2, sym_line_comment, sym_block_comment, - [91822] = 5, + [105060] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(6039), 1, anon_sym_LBRACE, - STATE(1289), 1, - sym_field_declaration_list, - STATE(3225), 2, + STATE(1452), 1, + sym_enum_variant_list, + STATE(3737), 2, sym_line_comment, sym_block_comment, - [91839] = 5, + [105077] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - sym_super, - ACTIONS(6804), 1, - sym_identifier, - STATE(3226), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(7299), 1, + anon_sym_for, + STATE(3738), 2, sym_line_comment, sym_block_comment, - [91856] = 5, + [105094] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5773), 1, - sym_identifier, - STATE(3227), 2, + ACTIONS(7719), 1, + anon_sym_LPAREN, + ACTIONS(7721), 1, + anon_sym_COLON_COLON, + STATE(3739), 2, sym_line_comment, sym_block_comment, - [91873] = 5, + [105111] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - sym_super, - ACTIONS(6806), 1, - sym_identifier, - STATE(3228), 2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(4464), 1, + anon_sym_COLON, + STATE(3740), 2, sym_line_comment, sym_block_comment, - [91890] = 5, + [105128] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(1291), 1, + STATE(1472), 1, sym_field_declaration_list, - STATE(3229), 2, + STATE(3741), 2, sym_line_comment, sym_block_comment, - [91907] = 5, + [105145] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6808), 1, - anon_sym_RPAREN, - STATE(3230), 2, + ACTIONS(7723), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3742), 2, sym_line_comment, sym_block_comment, - [91924] = 5, + [105160] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6808), 1, - anon_sym_RBRACK, - STATE(3231), 2, + ACTIONS(3973), 1, + anon_sym_PLUS, + ACTIONS(4104), 1, + anon_sym_COLON_COLON, + STATE(3743), 2, sym_line_comment, sym_block_comment, - [91941] = 5, + [105177] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6810), 1, - anon_sym_RBRACE, - STATE(3232), 2, + ACTIONS(3973), 1, + anon_sym_PLUS, + ACTIONS(4106), 1, + anon_sym_COLON_COLON, + STATE(3744), 2, sym_line_comment, sym_block_comment, - [91958] = 5, + [105194] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - sym_super, - ACTIONS(6812), 1, - sym_identifier, - STATE(3233), 2, + ACTIONS(7725), 1, + anon_sym_BANG, + ACTIONS(7727), 1, + anon_sym_COLON_COLON, + STATE(3745), 2, sym_line_comment, sym_block_comment, - [91975] = 4, + [105211] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6476), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3234), 2, + ACTIONS(6337), 1, + sym_super, + ACTIONS(7729), 1, + sym_identifier, + STATE(3746), 2, sym_line_comment, sym_block_comment, - [91990] = 5, + [105228] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - sym_super, - ACTIONS(6814), 1, - sym_identifier, - STATE(3235), 2, + ACTIONS(6134), 1, + anon_sym_LBRACE, + STATE(645), 1, + sym_enum_variant_list, + STATE(3747), 2, sym_line_comment, sym_block_comment, - [92007] = 5, + [105245] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - STATE(1292), 1, + STATE(1474), 1, sym_declaration_list, - STATE(3236), 2, + STATE(3748), 2, sym_line_comment, sym_block_comment, - [92024] = 5, + [105262] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6742), 1, - anon_sym_COLON_COLON, - ACTIONS(6774), 1, - anon_sym_RPAREN, - STATE(3237), 2, + STATE(238), 1, + sym_closure_parameters, + STATE(3749), 2, sym_line_comment, sym_block_comment, - [92041] = 4, + [105279] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 2, - sym_identifier, - sym_super, - STATE(3238), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + STATE(1475), 1, + sym_declaration_list, + STATE(3750), 2, sym_line_comment, sym_block_comment, - [92056] = 5, + [105296] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(4632), 1, anon_sym_LBRACE, - STATE(729), 1, - sym_declaration_list, - STATE(3239), 2, + STATE(2015), 1, + sym_field_initializer_list, + STATE(3751), 2, sym_line_comment, sym_block_comment, - [92073] = 5, + [105313] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6818), 1, - sym_identifier, - STATE(3240), 2, + ACTIONS(6039), 1, + anon_sym_LBRACE, + STATE(1280), 1, + sym_enum_variant_list, + STATE(3752), 2, sym_line_comment, sym_block_comment, - [92090] = 5, + [105330] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1237), 1, - sym_field_declaration_list, - STATE(3241), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(7731), 1, + anon_sym_in, + STATE(3753), 2, sym_line_comment, sym_block_comment, - [92107] = 5, + [105347] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4176), 1, - anon_sym_LBRACE, - STATE(1832), 1, - sym_field_initializer_list, - STATE(3242), 2, + ACTIONS(5358), 1, + anon_sym_BANG, + ACTIONS(5454), 1, + anon_sym_COLON_COLON, + STATE(3754), 2, sym_line_comment, sym_block_comment, - [92124] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [105364] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(229), 1, - sym_closure_parameters, - STATE(3243), 2, + ACTIONS(7599), 1, + anon_sym_LT, + STATE(1089), 1, + sym_type_parameters, + STATE(3755), 2, sym_line_comment, sym_block_comment, - [92141] = 4, + [105381] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6324), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3244), 2, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(1283), 1, + sym_field_declaration_list, + STATE(3756), 2, sym_line_comment, sym_block_comment, - [92156] = 5, + [105398] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, - sym_identifier, - ACTIONS(6822), 1, - sym_super, - STATE(3245), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2576), 1, + sym_parameters, + STATE(3757), 2, sym_line_comment, sym_block_comment, - [92173] = 5, + [105415] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, + ACTIONS(6454), 1, sym_super, - ACTIONS(5836), 1, + ACTIONS(7733), 1, sym_identifier, - STATE(3246), 2, + STATE(3758), 2, sym_line_comment, sym_block_comment, - [92190] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [105432] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(235), 1, - sym_closure_parameters, - STATE(3247), 2, + ACTIONS(7735), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3759), 2, sym_line_comment, sym_block_comment, - [92207] = 5, + [105447] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(561), 1, + STATE(1285), 1, sym_field_declaration_list, - STATE(3248), 2, + STATE(3760), 2, sym_line_comment, sym_block_comment, - [92224] = 5, + [105464] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2397), 1, - sym_parameters, - STATE(3249), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + STATE(556), 1, + sym_declaration_list, + STATE(3761), 2, sym_line_comment, sym_block_comment, - [92241] = 5, + [105481] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6824), 1, - sym_identifier, - ACTIONS(6826), 1, - sym_super, - STATE(3250), 2, + ACTIONS(7737), 2, + sym_float_literal, + sym_integer_literal, + STATE(3762), 2, sym_line_comment, sym_block_comment, - [92258] = 5, + [105496] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6758), 1, + ACTIONS(7571), 1, sym_identifier, - ACTIONS(6828), 1, + ACTIONS(7645), 1, sym_super, - STATE(3251), 2, + STATE(3763), 2, sym_line_comment, sym_block_comment, - [92275] = 5, + [105513] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3252), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + STATE(1286), 1, + sym_declaration_list, + STATE(3764), 2, sym_line_comment, sym_block_comment, - [92292] = 5, + [105530] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, - sym_super, - ACTIONS(6830), 1, - sym_identifier, - STATE(3253), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2622), 1, + sym_parameters, + STATE(3765), 2, sym_line_comment, sym_block_comment, - [92309] = 5, + [105547] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(576), 1, - sym_field_declaration_list, - STATE(3254), 2, + ACTIONS(7739), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3766), 2, sym_line_comment, sym_block_comment, - [92326] = 5, + [105562] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(5654), 1, anon_sym_LBRACE, - STATE(1240), 1, + STATE(761), 1, sym_field_declaration_list, - STATE(3255), 2, + STATE(3767), 2, sym_line_comment, sym_block_comment, - [92343] = 5, + [105579] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(652), 1, - sym_declaration_list, - STATE(3256), 2, + ACTIONS(7741), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3768), 2, sym_line_comment, sym_block_comment, - [92360] = 4, + [105594] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 2, - sym_identifier, - sym_super, - STATE(3257), 2, + ACTIONS(7743), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3769), 2, sym_line_comment, sym_block_comment, - [92375] = 4, + [105609] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 2, + ACTIONS(5975), 1, anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3258), 2, + ACTIONS(7601), 1, + anon_sym_SEMI, + STATE(3770), 2, sym_line_comment, sym_block_comment, - [92390] = 4, + [105626] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 2, - sym_identifier, - sym_super, - STATE(3259), 2, + ACTIONS(5975), 1, + anon_sym_RBRACK, + ACTIONS(7601), 1, + anon_sym_SEMI, + STATE(3771), 2, sym_line_comment, sym_block_comment, - [92405] = 5, + [105643] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6832), 1, - anon_sym_in, - STATE(3260), 2, + ACTIONS(3872), 1, + anon_sym_LPAREN, + STATE(1561), 1, + sym_parameters, + STATE(3772), 2, sym_line_comment, sym_block_comment, - [92422] = 5, + [105660] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6834), 1, + ACTIONS(7601), 1, anon_sym_SEMI, - ACTIONS(6836), 1, - anon_sym_as, - STATE(3261), 2, + ACTIONS(7745), 1, + anon_sym_RBRACE, + STATE(3773), 2, sym_line_comment, sym_block_comment, - [92439] = 5, + [105677] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6774), 1, - anon_sym_RPAREN, - ACTIONS(6838), 1, - anon_sym_COLON_COLON, - STATE(3262), 2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(4198), 1, + anon_sym_COLON, + STATE(3774), 2, sym_line_comment, sym_block_comment, - [92456] = 5, + [105694] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6840), 1, - sym_identifier, - STATE(3263), 2, + ACTIONS(5977), 1, + anon_sym_RBRACK, + ACTIONS(7601), 1, + anon_sym_SEMI, + STATE(3775), 2, sym_line_comment, sym_block_comment, - [92473] = 5, + [105711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6506), 1, - anon_sym_for, - STATE(3264), 2, + ACTIONS(6134), 1, + anon_sym_LBRACE, + STATE(509), 1, + sym_enum_variant_list, + STATE(3776), 2, sym_line_comment, sym_block_comment, - [92490] = 5, + [105728] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - sym_super, - ACTIONS(6842), 1, - sym_identifier, - STATE(3265), 2, + ACTIONS(7747), 1, + anon_sym_SEMI, + ACTIONS(7749), 1, + anon_sym_EQ, + STATE(3777), 2, sym_line_comment, sym_block_comment, - [92507] = 5, + [105745] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5828), 1, - sym_identifier, - STATE(3266), 2, + ACTIONS(7366), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3778), 2, sym_line_comment, sym_block_comment, - [92524] = 5, + [105760] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, - sym_super, - ACTIONS(6844), 1, - sym_identifier, - STATE(3267), 2, + ACTIONS(4812), 1, + anon_sym_EQ_GT, + ACTIONS(7751), 1, + anon_sym_AMP_AMP, + STATE(3779), 2, + sym_line_comment, + sym_block_comment, + [105777] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7393), 1, + anon_sym_EQ_GT, + ACTIONS(7751), 1, + anon_sym_AMP_AMP, + STATE(3780), 2, sym_line_comment, sym_block_comment, - [92541] = 5, + [105794] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6846), 1, - anon_sym_SEMI, - ACTIONS(6848), 1, - anon_sym_as, - STATE(3268), 2, + ACTIONS(7719), 1, + anon_sym_LPAREN, + ACTIONS(7753), 1, + anon_sym_COLON_COLON, + STATE(3781), 2, sym_line_comment, sym_block_comment, - [92558] = 4, + [105811] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6850), 2, - anon_sym_GT, + ACTIONS(7755), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3269), 2, + STATE(3782), 2, sym_line_comment, sym_block_comment, - [92573] = 4, + [105826] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6852), 2, - anon_sym_const, + ACTIONS(7263), 1, + sym_identifier, + ACTIONS(7267), 1, sym_mutable_specifier, - STATE(3270), 2, + STATE(3783), 2, sym_line_comment, sym_block_comment, - [92588] = 5, + [105843] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(981), 1, - sym_type_parameters, - STATE(3271), 2, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(1482), 1, + sym_field_declaration_list, + STATE(3784), 2, sym_line_comment, sym_block_comment, - [92605] = 4, + [105860] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6854), 2, - anon_sym_GT, + ACTIONS(7757), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3272), 2, + STATE(3785), 2, sym_line_comment, sym_block_comment, - [92620] = 5, + [105875] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, - sym_super, - ACTIONS(6856), 1, - sym_identifier, - STATE(3273), 2, + ACTIONS(7759), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3786), 2, sym_line_comment, sym_block_comment, - [92637] = 5, + [105890] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - sym_super, - ACTIONS(6858), 1, - sym_identifier, - STATE(3274), 2, + STATE(242), 1, + sym_closure_parameters, + STATE(3787), 2, sym_line_comment, sym_block_comment, - [92654] = 5, + [105907] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - sym_super, - ACTIONS(5944), 1, - sym_identifier, - STATE(3275), 2, + ACTIONS(7761), 1, + anon_sym_SEMI, + ACTIONS(7763), 1, + anon_sym_EQ, + STATE(3788), 2, sym_line_comment, sym_block_comment, - [92671] = 5, + [105924] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6772), 1, - sym_super, - ACTIONS(6860), 1, - sym_identifier, - STATE(3276), 2, + ACTIONS(7663), 1, + anon_sym_COLON_COLON, + ACTIONS(7765), 1, + anon_sym_RPAREN, + STATE(3789), 2, sym_line_comment, sym_block_comment, - [92688] = 5, + [105941] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(5201), 1, anon_sym_LPAREN, - STATE(1153), 1, + STATE(2582), 1, sym_parameters, - STATE(3277), 2, + STATE(3790), 2, sym_line_comment, sym_block_comment, - [92705] = 4, + [105958] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6554), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3278), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + STATE(1487), 1, + sym_declaration_list, + STATE(3791), 2, sym_line_comment, sym_block_comment, - [92720] = 5, + [105975] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(675), 1, - sym_field_declaration_list, - STATE(3279), 2, + ACTIONS(7597), 2, + sym_identifier, + sym_super, + STATE(3792), 2, sym_line_comment, sym_block_comment, - [92737] = 5, + [105990] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6820), 1, - sym_identifier, - STATE(3280), 2, + ACTIONS(7601), 1, + anon_sym_SEMI, + ACTIONS(7767), 1, + anon_sym_RPAREN, + STATE(3793), 2, sym_line_comment, sym_block_comment, - [92754] = 5, + [106007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - sym_super, - ACTIONS(6786), 1, - sym_identifier, - STATE(3281), 2, + ACTIONS(7601), 1, + anon_sym_SEMI, + ACTIONS(7767), 1, + anon_sym_RBRACK, + STATE(3794), 2, sym_line_comment, sym_block_comment, - [92771] = 5, + [106024] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3282), 2, + ACTIONS(7601), 1, + anon_sym_SEMI, + ACTIONS(7769), 1, + anon_sym_RPAREN, + STATE(3795), 2, sym_line_comment, sym_block_comment, - [92788] = 5, + [106041] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - sym_super, - ACTIONS(6830), 1, - sym_identifier, - STATE(3283), 2, + ACTIONS(7601), 1, + anon_sym_SEMI, + ACTIONS(7769), 1, + anon_sym_RBRACK, + STATE(3796), 2, sym_line_comment, sym_block_comment, - [92805] = 5, + [106058] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6862), 1, - sym_identifier, - STATE(3284), 2, + ACTIONS(5629), 1, + anon_sym_LT, + STATE(1090), 1, + sym_type_parameters, + STATE(3797), 2, sym_line_comment, sym_block_comment, - [92822] = 5, + [106075] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, + ACTIONS(5923), 1, sym_super, - ACTIONS(5986), 1, + ACTIONS(6582), 1, sym_identifier, - STATE(3285), 2, + STATE(3798), 2, sym_line_comment, sym_block_comment, - [92839] = 5, + [106092] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, - sym_super, - ACTIONS(6864), 1, - sym_identifier, - STATE(3286), 2, + ACTIONS(5935), 1, + anon_sym_RPAREN, + ACTIONS(7601), 1, + anon_sym_SEMI, + STATE(3799), 2, sym_line_comment, sym_block_comment, - [92856] = 5, + [106109] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6866), 1, - sym_identifier, - STATE(3287), 2, + ACTIONS(6003), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3800), 2, sym_line_comment, sym_block_comment, - [92873] = 5, + [106124] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - sym_super, - ACTIONS(6000), 1, + ACTIONS(6478), 2, sym_identifier, - STATE(3288), 2, + sym_super, + STATE(3801), 2, sym_line_comment, sym_block_comment, - [92890] = 5, + [106139] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, + ACTIONS(7597), 1, sym_super, - ACTIONS(6868), 1, + ACTIONS(7771), 1, sym_identifier, - STATE(3289), 2, + STATE(3802), 2, sym_line_comment, sym_block_comment, - [92907] = 5, + [106156] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6870), 1, - sym_identifier, - STATE(3290), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + STATE(573), 1, + sym_declaration_list, + STATE(3803), 2, sym_line_comment, sym_block_comment, - [92924] = 5, + [106173] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - sym_super, - ACTIONS(6008), 1, - sym_identifier, - STATE(3291), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(6278), 1, + anon_sym_COLON, + STATE(3804), 2, sym_line_comment, sym_block_comment, - [92941] = 5, + [106190] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, - sym_super, - ACTIONS(6872), 1, - sym_identifier, - STATE(3292), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + STATE(574), 1, + sym_declaration_list, + STATE(3805), 2, sym_line_comment, sym_block_comment, - [92958] = 5, + [106207] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6870), 1, - sym_identifier, - STATE(3293), 2, + ACTIONS(6655), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3806), 2, sym_line_comment, sym_block_comment, - [92975] = 5, + [106222] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - sym_super, - ACTIONS(6008), 1, - sym_identifier, - STATE(3294), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2591), 1, + sym_parameters, + STATE(3807), 2, sym_line_comment, sym_block_comment, - [92992] = 5, + [106239] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - sym_super, - ACTIONS(6872), 1, - sym_identifier, - STATE(3295), 2, + ACTIONS(4586), 1, + anon_sym_LT2, + STATE(2158), 1, + sym_type_arguments, + STATE(3808), 2, sym_line_comment, sym_block_comment, - [93009] = 5, + [106256] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6814), 1, - sym_identifier, - STATE(3296), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(6905), 1, + anon_sym_for, + STATE(3809), 2, sym_line_comment, sym_block_comment, - [93026] = 4, + [106273] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6874), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3297), 2, + ACTIONS(5935), 1, + anon_sym_RBRACK, + ACTIONS(7601), 1, + anon_sym_SEMI, + STATE(3810), 2, sym_line_comment, sym_block_comment, - [93041] = 5, + [106290] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6876), 1, - anon_sym_RPAREN, - ACTIONS(6878), 1, + ACTIONS(5358), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_COLON_COLON, - STATE(3298), 2, + STATE(3811), 2, sym_line_comment, sym_block_comment, - [93058] = 5, + [106307] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6880), 1, - anon_sym_SEMI, - ACTIONS(6882), 1, - anon_sym_EQ, - STATE(3299), 2, + ACTIONS(6039), 1, + anon_sym_LBRACE, + STATE(1492), 1, + sym_enum_variant_list, + STATE(3812), 2, sym_line_comment, sym_block_comment, - [93075] = 4, + [106324] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 2, - sym_identifier, - sym_super, - STATE(3300), 2, + ACTIONS(7773), 1, + anon_sym_SEMI, + ACTIONS(7775), 1, + anon_sym_as, + STATE(3813), 2, sym_line_comment, sym_block_comment, - [93090] = 5, + [106341] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, - anon_sym_LPAREN, - ACTIONS(6886), 1, - anon_sym_COLON_COLON, - STATE(3301), 2, + ACTIONS(7777), 1, + anon_sym_SEMI, + ACTIONS(7779), 1, + anon_sym_EQ, + STATE(3814), 2, sym_line_comment, sym_block_comment, - [93107] = 5, + [106358] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6888), 1, - anon_sym_RBRACE, - STATE(3302), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2564), 1, + sym_parameters, + STATE(3815), 2, sym_line_comment, sym_block_comment, - [93124] = 5, + [106375] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6890), 1, - anon_sym_GT, - STATE(3303), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(7781), 1, + anon_sym_EQ, + STATE(3816), 2, sym_line_comment, sym_block_comment, - [93141] = 4, + [106392] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6892), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3304), 2, + ACTIONS(3872), 1, + anon_sym_LPAREN, + STATE(1447), 1, + sym_parameters, + STATE(3817), 2, sym_line_comment, sym_block_comment, - [93156] = 5, + [106409] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - STATE(3305), 2, + ACTIONS(5923), 2, + sym_identifier, + sym_super, + STATE(3818), 2, sym_line_comment, sym_block_comment, - [93173] = 5, + [106424] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(3604), 1, - anon_sym_COLON_COLON, - STATE(3306), 2, + ACTIONS(7783), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3819), 2, sym_line_comment, sym_block_comment, - [93190] = 5, + [106439] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6894), 1, - anon_sym_RBRACE, - STATE(3307), 2, + ACTIONS(7597), 1, + sym_super, + ACTIONS(7785), 1, + sym_identifier, + STATE(3820), 2, sym_line_comment, sym_block_comment, - [93207] = 5, + [106456] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6896), 1, - anon_sym_BANG, - ACTIONS(6898), 1, - anon_sym_COLON_COLON, - STATE(3308), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(7787), 1, + anon_sym_GT, + STATE(3821), 2, sym_line_comment, sym_block_comment, - [93224] = 5, + [106473] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2390), 1, - sym_parameters, - STATE(3309), 2, + ACTIONS(7593), 1, + sym_super, + ACTIONS(7789), 1, + sym_identifier, + STATE(3822), 2, sym_line_comment, sym_block_comment, - [93241] = 5, + [106490] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1157), 1, - sym_enum_variant_list, - STATE(3310), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2595), 1, + sym_parameters, + STATE(3823), 2, sym_line_comment, sym_block_comment, - [93258] = 4, + [106507] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 2, + ACTIONS(7697), 2, sym_identifier, sym_super, - STATE(3311), 2, + STATE(3824), 2, sym_line_comment, sym_block_comment, - [93273] = 5, + [106522] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(889), 1, - sym_type_parameters, - STATE(3312), 2, + ACTIONS(5654), 1, + anon_sym_LBRACE, + STATE(512), 1, + sym_field_declaration_list, + STATE(3825), 2, sym_line_comment, sym_block_comment, - [93290] = 5, + [106539] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_declaration_list, - STATE(3313), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2728), 1, + sym_parameters, + STATE(3826), 2, sym_line_comment, sym_block_comment, - [93307] = 5, + [106556] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1335), 1, - sym_declaration_list, - STATE(3314), 2, + ACTIONS(6045), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3827), 2, sym_line_comment, sym_block_comment, - [93324] = 5, + [106571] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(669), 1, - sym_field_declaration_list, - STATE(3315), 2, + ACTIONS(6476), 1, + sym_identifier, + ACTIONS(6478), 1, + sym_super, + STATE(3828), 2, sym_line_comment, sym_block_comment, - [93341] = 4, + [106588] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6900), 2, - sym_float_literal, - sym_integer_literal, - STATE(3316), 2, + ACTIONS(7791), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3829), 2, sym_line_comment, sym_block_comment, - [93356] = 5, + [106603] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6902), 1, - anon_sym_EQ, - STATE(3317), 2, + ACTIONS(7589), 1, + sym_super, + ACTIONS(7595), 1, + sym_identifier, + STATE(3830), 2, sym_line_comment, sym_block_comment, - [93373] = 5, + [106620] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(883), 1, - sym_type_parameters, - STATE(3318), 2, + ACTIONS(7671), 1, + anon_sym_COLON_COLON, + ACTIONS(7793), 1, + anon_sym_RPAREN, + STATE(3831), 2, sym_line_comment, sym_block_comment, - [93390] = 5, + [106637] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6904), 1, - anon_sym_EQ, - STATE(3319), 2, + ACTIONS(7422), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3832), 2, sym_line_comment, sym_block_comment, - [93407] = 5, + [106652] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - STATE(1431), 1, - sym_type_arguments, - STATE(3320), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + STATE(1328), 1, + sym_declaration_list, + STATE(3833), 2, sym_line_comment, sym_block_comment, - [93424] = 5, + [106669] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2290), 1, - sym_parameters, - STATE(3321), 2, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(1495), 1, + sym_field_declaration_list, + STATE(3834), 2, sym_line_comment, sym_block_comment, - [93441] = 4, + [106686] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6906), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3322), 2, + ACTIONS(5608), 1, + anon_sym_LBRACE, + STATE(868), 1, + sym_declaration_list, + STATE(3835), 2, sym_line_comment, sym_block_comment, - [93456] = 5, + [106703] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - STATE(1195), 1, - sym_parameters, - STATE(3323), 2, + ACTIONS(5961), 1, + anon_sym_RBRACE, + ACTIONS(7601), 1, + anon_sym_SEMI, + STATE(3836), 2, sym_line_comment, sym_block_comment, - [93473] = 5, + [106720] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(767), 1, - sym_declaration_list, - STATE(3324), 2, + ACTIONS(7795), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3837), 2, sym_line_comment, sym_block_comment, - [93490] = 5, + [106735] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6908), 1, - sym_identifier, - ACTIONS(6910), 1, - sym_mutable_specifier, - STATE(3325), 2, + ACTIONS(7797), 1, + anon_sym_LPAREN, + ACTIONS(7799), 1, + anon_sym_COLON_COLON, + STATE(3838), 2, sym_line_comment, sym_block_comment, - [93507] = 4, + [106752] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6912), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3326), 2, + ACTIONS(7599), 1, + anon_sym_LT, + STATE(1198), 1, + sym_type_parameters, + STATE(3839), 2, sym_line_comment, sym_block_comment, - [93522] = 5, + [106769] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1344), 1, - sym_declaration_list, - STATE(3327), 2, + ACTIONS(3973), 1, + anon_sym_PLUS, + ACTIONS(4736), 1, + anon_sym_COLON_COLON, + STATE(3840), 2, sym_line_comment, sym_block_comment, - [93539] = 5, + [106786] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1345), 1, - sym_declaration_list, - STATE(3328), 2, + ACTIONS(3973), 1, + anon_sym_PLUS, + ACTIONS(4760), 1, + anon_sym_COLON_COLON, + STATE(3841), 2, sym_line_comment, sym_block_comment, - [93556] = 5, + [106803] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6914), 1, - sym_identifier, - STATE(3329), 2, + ACTIONS(7437), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3842), 2, sym_line_comment, sym_block_comment, - [93573] = 5, + [106818] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5330), 1, - anon_sym_RPAREN, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3330), 2, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(7727), 1, + anon_sym_COLON_COLON, + STATE(3843), 2, sym_line_comment, sym_block_comment, - [93590] = 5, + [106835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - STATE(2280), 1, + STATE(1663), 1, sym_parameters, - STATE(3331), 2, + STATE(3844), 2, sym_line_comment, sym_block_comment, - [93607] = 5, + [106852] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5330), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3332), 2, + ACTIONS(6337), 1, + sym_super, + ACTIONS(7801), 1, + sym_identifier, + STATE(3845), 2, sym_line_comment, sym_block_comment, - [93624] = 4, + [106869] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6916), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3333), 2, + ACTIONS(7599), 1, + anon_sym_LT, + STATE(1110), 1, + sym_type_parameters, + STATE(3846), 2, sym_line_comment, sym_block_comment, - [93639] = 5, + [106886] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5346), 1, + ACTIONS(7673), 1, + anon_sym_COLON_COLON, + ACTIONS(7793), 1, anon_sym_RPAREN, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3334), 2, + STATE(3847), 2, sym_line_comment, sym_block_comment, - [93656] = 5, + [106903] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - sym_super, - ACTIONS(6918), 1, - sym_identifier, - STATE(3335), 2, + ACTIONS(5654), 1, + anon_sym_LBRACE, + STATE(514), 1, + sym_field_declaration_list, + STATE(3848), 2, sym_line_comment, sym_block_comment, - [93673] = 5, + [106920] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5346), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3336), 2, + ACTIONS(6134), 1, + anon_sym_LBRACE, + STATE(733), 1, + sym_enum_variant_list, + STATE(3849), 2, sym_line_comment, sym_block_comment, - [93690] = 5, + [106937] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6812), 1, - sym_identifier, - STATE(3337), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + STATE(1345), 1, + sym_declaration_list, + STATE(3850), 2, sym_line_comment, sym_block_comment, - [93707] = 5, + [106954] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(5608), 1, anon_sym_LBRACE, - STATE(1167), 1, - sym_field_declaration_list, - STATE(3338), 2, + STATE(515), 1, + sym_declaration_list, + STATE(3851), 2, sym_line_comment, sym_block_comment, - [93724] = 4, + [106971] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5324), 2, + ACTIONS(7683), 1, + anon_sym_COLON_COLON, + ACTIONS(7793), 1, anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3339), 2, + STATE(3852), 2, sym_line_comment, sym_block_comment, - [93739] = 5, + [106988] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, + ACTIONS(6039), 1, anon_sym_LBRACE, - STATE(579), 1, - sym_field_declaration_list, - STATE(3340), 2, + STATE(1670), 1, + sym_enum_variant_list, + STATE(3853), 2, sym_line_comment, sym_block_comment, - [93756] = 4, + [107005] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 2, - sym_identifier, - sym_super, - STATE(3341), 2, + ACTIONS(7719), 1, + anon_sym_LPAREN, + ACTIONS(7803), 1, + anon_sym_COLON_COLON, + STATE(3854), 2, sym_line_comment, sym_block_comment, - [93771] = 5, + [107022] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1170), 1, - sym_declaration_list, - STATE(3342), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(7805), 1, + anon_sym_EQ, + STATE(3855), 2, + sym_line_comment, + sym_block_comment, + [107039] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7807), 1, + anon_sym_BANG, + ACTIONS(7809), 1, + anon_sym_COLON_COLON, + STATE(3856), 2, sym_line_comment, sym_block_comment, - [93788] = 5, + [107056] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - STATE(499), 1, + STATE(1346), 1, sym_declaration_list, - STATE(3343), 2, + STATE(3857), 2, sym_line_comment, sym_block_comment, - [93805] = 5, + [107073] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6920), 1, - anon_sym_SEMI, - ACTIONS(6922), 1, - anon_sym_as, - STATE(3344), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5684), 1, + anon_sym_for, + STATE(3858), 2, sym_line_comment, sym_block_comment, - [93822] = 5, + [107090] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(3894), 1, - anon_sym_COLON, - STATE(3345), 2, + ACTIONS(7601), 1, + anon_sym_SEMI, + ACTIONS(7811), 1, + anon_sym_RPAREN, + STATE(3859), 2, sym_line_comment, sym_block_comment, - [93839] = 5, + [107107] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, + ACTIONS(5654), 1, anon_sym_LBRACE, - STATE(735), 1, + STATE(772), 1, sym_field_declaration_list, - STATE(3346), 2, + STATE(3860), 2, sym_line_comment, sym_block_comment, - [93856] = 5, + [107124] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(700), 1, - sym_enum_variant_list, - STATE(3347), 2, + ACTIONS(7719), 1, + anon_sym_LPAREN, + ACTIONS(7813), 1, + anon_sym_COLON_COLON, + STATE(3861), 2, sym_line_comment, sym_block_comment, - [93873] = 4, + [107141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6924), 2, - sym_float_literal, - sym_integer_literal, - STATE(3348), 2, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(7809), 1, + anon_sym_COLON_COLON, + STATE(3862), 2, sym_line_comment, sym_block_comment, - [93888] = 5, + [107158] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6926), 1, - anon_sym_SEMI, - ACTIONS(6928), 1, - anon_sym_EQ, - STATE(3349), 2, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(1498), 1, + sym_field_declaration_list, + STATE(3863), 2, sym_line_comment, sym_block_comment, - [93905] = 5, + [107175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6878), 1, - anon_sym_COLON_COLON, - ACTIONS(6930), 1, - anon_sym_RPAREN, - STATE(3350), 2, + ACTIONS(7815), 1, + anon_sym_LBRACK, + ACTIONS(7817), 1, + anon_sym_BANG, + STATE(3864), 2, sym_line_comment, sym_block_comment, - [93922] = 5, + [107192] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6932), 1, + ACTIONS(7819), 2, sym_identifier, - STATE(3351), 2, + sym_metavariable, + STATE(3865), 2, sym_line_comment, sym_block_comment, - [93939] = 5, + [107207] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(1176), 1, + STATE(1438), 1, sym_field_declaration_list, - STATE(3352), 2, + STATE(3866), 2, sym_line_comment, sym_block_comment, - [93956] = 5, + [107224] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2294), 1, - sym_parameters, - STATE(3353), 2, + ACTIONS(7821), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3867), 2, sym_line_comment, sym_block_comment, - [93973] = 5, + [107239] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6934), 1, - anon_sym_RPAREN, - STATE(3354), 2, + ACTIONS(7823), 1, + sym_identifier, + ACTIONS(7825), 1, + sym_mutable_specifier, + STATE(3868), 2, sym_line_comment, sym_block_comment, - [93990] = 5, + [107256] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6934), 1, - anon_sym_RBRACK, - STATE(3355), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + STATE(1448), 1, + sym_declaration_list, + STATE(3869), 2, sym_line_comment, sym_block_comment, - [94007] = 5, + [107273] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6936), 1, - anon_sym_RPAREN, - STATE(3356), 2, + ACTIONS(7478), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3870), 2, sym_line_comment, sym_block_comment, - [94024] = 5, + [107288] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6936), 1, - anon_sym_RBRACK, - STATE(3357), 2, + ACTIONS(7827), 2, + sym_identifier, + sym_metavariable, + STATE(3871), 2, sym_line_comment, sym_block_comment, - [94041] = 5, + [107303] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6740), 1, - anon_sym_RPAREN, - ACTIONS(6838), 1, - anon_sym_COLON_COLON, - STATE(3358), 2, + ACTIONS(7829), 1, + anon_sym_SEMI, + ACTIONS(7831), 1, + anon_sym_EQ, + STATE(3872), 2, sym_line_comment, sym_block_comment, - [94058] = 5, + [107320] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(779), 1, - sym_declaration_list, - STATE(3359), 2, + ACTIONS(6454), 1, + sym_super, + ACTIONS(7789), 1, + sym_identifier, + STATE(3873), 2, sym_line_comment, sym_block_comment, - [94075] = 5, + [107337] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2263), 1, - sym_parameters, - STATE(3360), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5602), 1, + anon_sym_for, + STATE(3874), 2, sym_line_comment, sym_block_comment, - [94092] = 4, + [107354] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 2, - sym_identifier, - sym_super, - STATE(3361), 2, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(1291), 1, + sym_field_declaration_list, + STATE(3875), 2, sym_line_comment, sym_block_comment, - [94107] = 5, + [107371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6938), 1, - anon_sym_SEMI, - ACTIONS(6940), 1, - anon_sym_as, - STATE(3362), 2, + ACTIONS(7599), 1, + anon_sym_LT, + STATE(1140), 1, + sym_type_parameters, + STATE(3876), 2, sym_line_comment, sym_block_comment, - [94124] = 4, + [107388] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6942), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3363), 2, + ACTIONS(7599), 1, + anon_sym_LT, + STATE(1141), 1, + sym_type_parameters, + STATE(3877), 2, sym_line_comment, sym_block_comment, - [94139] = 5, + [107405] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6740), 1, - anon_sym_RPAREN, - ACTIONS(6776), 1, + ACTIONS(5304), 1, anon_sym_COLON_COLON, - STATE(3364), 2, + ACTIONS(5709), 1, + anon_sym_for, + STATE(3878), 2, sym_line_comment, sym_block_comment, - [94156] = 4, + [107422] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6357), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3365), 2, + ACTIONS(7601), 1, + anon_sym_SEMI, + ACTIONS(7811), 1, + anon_sym_RBRACK, + STATE(3879), 2, sym_line_comment, sym_block_comment, - [94171] = 5, + [107439] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2300), 1, - sym_parameters, - STATE(3366), 2, + ACTIONS(7589), 2, + sym_identifier, + sym_super, + STATE(3880), 2, sym_line_comment, sym_block_comment, - [94188] = 5, + [107454] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5360), 1, - anon_sym_RPAREN, - ACTIONS(6748), 1, + ACTIONS(7833), 1, anon_sym_SEMI, - STATE(3367), 2, + ACTIONS(7835), 1, + anon_sym_as, + STATE(3881), 2, sym_line_comment, sym_block_comment, - [94205] = 5, + [107471] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, - anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_COLON_COLON, - STATE(3368), 2, + ACTIONS(7837), 1, + anon_sym_SEMI, + ACTIONS(7839), 1, + anon_sym_as, + STATE(3882), 2, sym_line_comment, sym_block_comment, - [94222] = 5, + [107488] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6946), 1, - anon_sym_STAR_SLASH, - ACTIONS(6948), 1, - sym__block_comment_content, - STATE(3369), 2, + ACTIONS(7841), 2, + sym_identifier, + sym_metavariable, + STATE(3883), 2, sym_line_comment, sym_block_comment, - [94239] = 4, + [107503] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 2, - sym_identifier, - sym_super, - STATE(3370), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(7497), 1, + anon_sym_for, + STATE(3884), 2, sym_line_comment, sym_block_comment, - [94254] = 5, + [107520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1387), 1, - sym_declaration_list, - STATE(3371), 2, + ACTIONS(7601), 1, + anon_sym_SEMI, + ACTIONS(7843), 1, + anon_sym_RBRACE, + STATE(3885), 2, sym_line_comment, sym_block_comment, - [94271] = 4, + [107537] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6950), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3372), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + ACTIONS(5713), 1, + anon_sym_for, + STATE(3886), 2, sym_line_comment, sym_block_comment, - [94286] = 5, + [107554] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5360), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, + ACTIONS(5957), 1, + anon_sym_RPAREN, + ACTIONS(7601), 1, anon_sym_SEMI, - STATE(3373), 2, + STATE(3887), 2, sym_line_comment, sym_block_comment, - [94303] = 5, + [107571] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6806), 1, - sym_identifier, - ACTIONS(6828), 1, - sym_super, - STATE(3374), 2, + ACTIONS(3502), 1, + anon_sym_SQUOTE, + STATE(3517), 1, + sym_lifetime, + STATE(3888), 2, sym_line_comment, sym_block_comment, - [94320] = 5, + [107588] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6952), 1, - sym_identifier, - STATE(3375), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(7845), 1, + anon_sym_in, + STATE(3889), 2, sym_line_comment, sym_block_comment, - [94337] = 5, + [107605] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(3954), 1, - anon_sym_COLON, - STATE(3376), 2, + ACTIONS(7599), 1, + anon_sym_LT, + STATE(1073), 1, + sym_type_parameters, + STATE(3890), 2, sym_line_comment, sym_block_comment, - [94354] = 5, + [107622] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6796), 1, + ACTIONS(7847), 2, sym_identifier, - ACTIONS(6822), 1, - sym_super, - STATE(3377), 2, + sym_metavariable, + STATE(3891), 2, sym_line_comment, sym_block_comment, - [94371] = 5, + [107637] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(6954), 1, - anon_sym_COLON_COLON, - STATE(3378), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2620), 1, + sym_parameters, + STATE(3892), 2, sym_line_comment, sym_block_comment, - [94388] = 4, + [107654] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6956), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3379), 2, + ACTIONS(5989), 1, + anon_sym_RBRACE, + ACTIONS(7601), 1, + anon_sym_SEMI, + STATE(3893), 2, sym_line_comment, sym_block_comment, - [94403] = 5, + [107671] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, - anon_sym_LPAREN, - ACTIONS(6960), 1, + ACTIONS(5304), 1, anon_sym_COLON_COLON, - STATE(3380), 2, + ACTIONS(7513), 1, + anon_sym_for, + STATE(3894), 2, sym_line_comment, sym_block_comment, - [94420] = 5, + [107688] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, + ACTIONS(5304), 1, anon_sym_COLON_COLON, - ACTIONS(4991), 1, - anon_sym_BANG, - STATE(3381), 2, + ACTIONS(7515), 1, + anon_sym_for, + STATE(3895), 2, sym_line_comment, sym_block_comment, - [94437] = 4, + [107705] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6962), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3382), 2, + ACTIONS(5997), 1, + anon_sym_RBRACE, + ACTIONS(7601), 1, + anon_sym_SEMI, + STATE(3896), 2, sym_line_comment, sym_block_comment, - [94452] = 5, + [107722] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(4290), 1, + ACTIONS(5304), 1, anon_sym_COLON_COLON, - STATE(3383), 2, + ACTIONS(7108), 1, + anon_sym_for, + STATE(3897), 2, sym_line_comment, sym_block_comment, - [94469] = 5, + [107739] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(4306), 1, - anon_sym_COLON_COLON, - STATE(3384), 2, + ACTIONS(7849), 2, + sym_float_literal, + sym_integer_literal, + STATE(3898), 2, sym_line_comment, sym_block_comment, - [94486] = 5, + [107754] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5614), 1, anon_sym_LBRACE, - STATE(655), 1, + STATE(1386), 1, sym_declaration_list, - STATE(3385), 2, + STATE(3899), 2, sym_line_comment, sym_block_comment, - [94503] = 5, + [107771] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(6898), 1, + ACTIONS(5304), 1, anon_sym_COLON_COLON, - STATE(3386), 2, + ACTIONS(7521), 1, + anon_sym_for, + STATE(3900), 2, sym_line_comment, sym_block_comment, - [94520] = 5, + [107788] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(573), 1, - sym_enum_variant_list, - STATE(3387), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(7851), 1, + anon_sym_in, + STATE(3901), 2, sym_line_comment, sym_block_comment, - [94537] = 5, + [107805] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(914), 1, - sym_type_parameters, - STATE(3388), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(7853), 1, + anon_sym_in, + STATE(3902), 2, sym_line_comment, sym_block_comment, - [94554] = 5, + [107822] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6158), 1, - anon_sym_for, - STATE(3389), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, + anon_sym_in, + STATE(3903), 2, sym_line_comment, sym_block_comment, - [94571] = 4, + [107839] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6682), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3390), 2, + ACTIONS(6234), 1, + anon_sym_PIPE, + ACTIONS(7857), 1, + anon_sym_in, + STATE(3904), 2, sym_line_comment, sym_block_comment, - [94586] = 5, + [107856] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4797), 1, + ACTIONS(7611), 1, + anon_sym_LBRACK, + ACTIONS(7859), 1, anon_sym_BANG, - ACTIONS(4879), 1, - anon_sym_COLON_COLON, - STATE(3391), 2, + STATE(3905), 2, sym_line_comment, sym_block_comment, - [94603] = 4, + [107873] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6695), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3392), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2363), 1, + sym_parameters, + STATE(3906), 2, sym_line_comment, sym_block_comment, - [94618] = 5, + [107890] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(748), 1, - sym_field_declaration_list, - STATE(3393), 2, + ACTIONS(5957), 1, + anon_sym_RBRACK, + ACTIONS(7601), 1, + anon_sym_SEMI, + STATE(3907), 2, sym_line_comment, sym_block_comment, - [94635] = 5, + [107907] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(884), 1, - sym_type_parameters, - STATE(3394), 2, + ACTIONS(7527), 1, + sym_identifier, + ACTIONS(7531), 1, + sym_mutable_specifier, + STATE(3908), 2, sym_line_comment, sym_block_comment, - [94652] = 5, + [107924] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5386), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, + ACTIONS(7601), 1, anon_sym_SEMI, - STATE(3395), 2, + ACTIONS(7861), 1, + anon_sym_RPAREN, + STATE(3909), 2, sym_line_comment, sym_block_comment, - [94669] = 5, + [107941] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6754), 1, - sym_identifier, - STATE(3396), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2787), 1, + sym_parameters, + STATE(3910), 2, sym_line_comment, sym_block_comment, - [94686] = 4, + [107958] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3397), 2, + ACTIONS(5201), 1, + anon_sym_LPAREN, + STATE(2354), 1, + sym_parameters, + STATE(3911), 2, sym_line_comment, sym_block_comment, - [94701] = 5, + [107975] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, - anon_sym_LPAREN, - ACTIONS(6964), 1, - anon_sym_COLON_COLON, - STATE(3398), 2, + ACTIONS(7649), 2, + sym_identifier, + sym_super, + STATE(3912), 2, sym_line_comment, sym_block_comment, - [94718] = 5, + [107990] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(662), 1, - sym_enum_variant_list, - STATE(3399), 2, + ACTIONS(5189), 1, + anon_sym_BANG, + ACTIONS(7863), 1, + anon_sym_COLON_COLON, + STATE(3913), 2, sym_line_comment, sym_block_comment, - [94735] = 5, + [108007] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6966), 1, - anon_sym_BANG, - ACTIONS(6968), 1, - anon_sym_COLON_COLON, - STATE(3400), 2, + ACTIONS(7865), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3914), 2, sym_line_comment, sym_block_comment, - [94752] = 5, + [108022] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(4006), 1, - anon_sym_COLON, - STATE(3401), 2, + ACTIONS(7545), 1, + sym_identifier, + ACTIONS(7549), 1, + sym_mutable_specifier, + STATE(3915), 2, sym_line_comment, sym_block_comment, - [94769] = 5, + [108039] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(3746), 1, - anon_sym_COLON, - STATE(3402), 2, + ACTIONS(5614), 1, + anon_sym_LBRACE, + STATE(1575), 1, + sym_declaration_list, + STATE(3916), 2, sym_line_comment, sym_block_comment, - [94786] = 5, + [108056] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, + ACTIONS(5201), 1, anon_sym_LPAREN, - ACTIONS(6970), 1, - anon_sym_COLON_COLON, - STATE(3403), 2, + STATE(2359), 1, + sym_parameters, + STATE(3917), 2, sym_line_comment, sym_block_comment, - [94803] = 5, + [108073] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(6968), 1, - anon_sym_COLON_COLON, - STATE(3404), 2, + ACTIONS(7867), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3918), 2, sym_line_comment, sym_block_comment, - [94820] = 5, + [108088] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(2565), 1, - sym_trait_bounds, - STATE(3405), 2, + ACTIONS(7869), 1, + sym_identifier, + ACTIONS(7871), 1, + sym_mutable_specifier, + STATE(3919), 2, sym_line_comment, sym_block_comment, - [94837] = 5, + [108105] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4797), 1, - anon_sym_BANG, - ACTIONS(4839), 1, - anon_sym_COLON_COLON, - STATE(3406), 2, + ACTIONS(7601), 1, + anon_sym_SEMI, + ACTIONS(7861), 1, + anon_sym_RBRACK, + STATE(3920), 2, sym_line_comment, sym_block_comment, - [94854] = 5, + [108122] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(566), 1, - sym_declaration_list, - STATE(3407), 2, + ACTIONS(7599), 1, + anon_sym_LT, + STATE(1074), 1, + sym_type_parameters, + STATE(3921), 2, sym_line_comment, sym_block_comment, - [94871] = 5, + [108139] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6972), 1, - anon_sym_LBRACK, - ACTIONS(6974), 1, - anon_sym_BANG, - STATE(3408), 2, + ACTIONS(6454), 1, + sym_super, + ACTIONS(7591), 1, + sym_identifier, + STATE(3922), 2, sym_line_comment, sym_block_comment, - [94888] = 4, + [108156] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6976), 2, - sym_identifier, - sym_metavariable, - STATE(3409), 2, + ACTIONS(5977), 1, + anon_sym_RPAREN, + ACTIONS(7601), 1, + anon_sym_SEMI, + STATE(3923), 2, sym_line_comment, sym_block_comment, - [94903] = 5, + [108173] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6978), 1, + ACTIONS(7873), 1, sym_identifier, - ACTIONS(6980), 1, - sym_super, - STATE(3410), 2, + STATE(3924), 2, sym_line_comment, sym_block_comment, - [94920] = 4, + [108187] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6982), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3411), 2, + ACTIONS(7875), 1, + anon_sym_SEMI, + STATE(3925), 2, sym_line_comment, sym_block_comment, - [94935] = 4, + [108201] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6984), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3412), 2, + ACTIONS(6614), 1, + anon_sym_RPAREN, + STATE(3926), 2, sym_line_comment, sym_block_comment, - [94950] = 5, + [108215] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6986), 1, - anon_sym_in, - STATE(3413), 2, + ACTIONS(889), 1, + anon_sym_RBRACK, + STATE(3927), 2, sym_line_comment, sym_block_comment, - [94967] = 4, + [108229] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 2, - sym_identifier, - sym_super, - STATE(3414), 2, + ACTIONS(7877), 1, + anon_sym_EQ_GT, + STATE(3928), 2, sym_line_comment, sym_block_comment, - [94982] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [108243] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(252), 1, - sym_closure_parameters, - STATE(3415), 2, + ACTIONS(7879), 1, + anon_sym_SEMI, + STATE(3929), 2, sym_line_comment, sym_block_comment, - [94999] = 4, + [108257] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6988), 2, - sym_identifier, - sym_metavariable, - STATE(3416), 2, + ACTIONS(7881), 1, + anon_sym_SEMI, + STATE(3930), 2, sym_line_comment, sym_block_comment, - [95014] = 5, + [108271] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - STATE(1128), 1, - sym_parameters, - STATE(3417), 2, + ACTIONS(7883), 1, + anon_sym_RBRACE, + STATE(3931), 2, sym_line_comment, sym_block_comment, - [95031] = 5, + [108285] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(983), 1, - sym_type_parameters, - STATE(3418), 2, + ACTIONS(5635), 1, + anon_sym_COLON_COLON, + STATE(3932), 2, sym_line_comment, sym_block_comment, - [95048] = 5, + [108299] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(984), 1, - sym_type_parameters, - STATE(3419), 2, + ACTIONS(7885), 1, + anon_sym_COLON_COLON, + STATE(3933), 2, sym_line_comment, sym_block_comment, - [95065] = 5, + [108313] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - STATE(2977), 1, - sym_lifetime, - STATE(3420), 2, + ACTIONS(7887), 1, + anon_sym_fn, + STATE(3934), 2, sym_line_comment, sym_block_comment, - [95082] = 5, + [108327] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5362), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3421), 2, + ACTIONS(6276), 1, + anon_sym_RPAREN, + STATE(3935), 2, sym_line_comment, sym_block_comment, - [95099] = 5, + [108341] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5118), 1, - anon_sym_for, - STATE(3422), 2, + ACTIONS(6598), 1, + anon_sym_LBRACE, + STATE(3936), 2, sym_line_comment, sym_block_comment, - [95116] = 5, + [108355] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1216), 1, - sym_field_declaration_list, - STATE(3423), 2, + ACTIONS(7889), 1, + anon_sym_SEMI, + STATE(3937), 2, sym_line_comment, sym_block_comment, - [95133] = 5, + [108369] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6990), 1, + ACTIONS(7891), 1, sym_identifier, - ACTIONS(6992), 1, - sym_mutable_specifier, - STATE(3424), 2, + STATE(3938), 2, sym_line_comment, sym_block_comment, - [95150] = 5, + [108383] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5300), 1, - anon_sym_RPAREN, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3425), 2, + ACTIONS(7893), 1, + sym_identifier, + STATE(3939), 2, sym_line_comment, sym_block_comment, - [95167] = 5, + [108397] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(591), 1, - sym_enum_variant_list, - STATE(3426), 2, + ACTIONS(7895), 1, + anon_sym_RBRACE, + STATE(3940), 2, sym_line_comment, sym_block_comment, - [95184] = 5, + [108411] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5300), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3427), 2, + ACTIONS(7897), 1, + anon_sym_fn, + STATE(3941), 2, sym_line_comment, sym_block_comment, - [95201] = 4, + [108425] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6994), 2, - sym_identifier, - sym_metavariable, - STATE(3428), 2, + ACTIONS(7337), 1, + anon_sym_RBRACE, + STATE(3942), 2, sym_line_comment, sym_block_comment, - [95216] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [108439] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(243), 1, - sym_closure_parameters, - STATE(3429), 2, + ACTIONS(7899), 1, + anon_sym_RBRACK, + STATE(3943), 2, sym_line_comment, sym_block_comment, - [95233] = 5, + [108453] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6718), 1, - anon_sym_for, - STATE(3430), 2, + ACTIONS(7901), 1, + sym_identifier, + STATE(3944), 2, sym_line_comment, sym_block_comment, - [95250] = 5, + [108467] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5382), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, + ACTIONS(5961), 1, anon_sym_SEMI, - STATE(3431), 2, + STATE(3945), 2, sym_line_comment, sym_block_comment, - [95267] = 5, + [108481] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6720), 1, - anon_sym_for, - STATE(3432), 2, + ACTIONS(7903), 1, + anon_sym_SEMI, + STATE(3946), 2, sym_line_comment, sym_block_comment, - [95284] = 5, + [108495] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6996), 1, + ACTIONS(7905), 1, sym_identifier, - ACTIONS(6998), 1, - sym_super, - STATE(3433), 2, + STATE(3947), 2, sym_line_comment, sym_block_comment, - [95301] = 5, + [108509] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(3850), 1, - anon_sym_COLON, - STATE(3434), 2, + ACTIONS(7907), 1, + anon_sym_EQ_GT, + STATE(3948), 2, sym_line_comment, sym_block_comment, - [95318] = 4, + [108523] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7000), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3435), 2, + ACTIONS(7909), 1, + sym_identifier, + STATE(3949), 2, sym_line_comment, sym_block_comment, - [95333] = 5, + [108537] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(7002), 1, - anon_sym_in, - STATE(3436), 2, + ACTIONS(7911), 1, + anon_sym_LT, + STATE(3950), 2, sym_line_comment, sym_block_comment, - [95350] = 5, + [108551] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2449), 1, - sym_parameters, - STATE(3437), 2, + ACTIONS(7913), 1, + anon_sym_RBRACE, + STATE(3951), 2, sym_line_comment, sym_block_comment, - [95367] = 5, + [108565] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6728), 1, - anon_sym_for, - STATE(3438), 2, + ACTIONS(7915), 1, + sym_identifier, + STATE(3952), 2, sym_line_comment, sym_block_comment, - [95384] = 5, + [108579] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6932), 1, + ACTIONS(7917), 1, sym_identifier, - STATE(3439), 2, + STATE(3953), 2, sym_line_comment, sym_block_comment, - [95401] = 5, + [108593] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7004), 1, - anon_sym_LBRACK, - ACTIONS(7006), 1, - anon_sym_BANG, - STATE(3440), 2, + ACTIONS(7919), 1, + anon_sym_SEMI, + STATE(3954), 2, sym_line_comment, sym_block_comment, - [95418] = 5, + [108607] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(7008), 1, - anon_sym_in, - STATE(3441), 2, + ACTIONS(7921), 1, + sym_identifier, + STATE(3955), 2, sym_line_comment, sym_block_comment, - [95435] = 5, + [108621] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(7010), 1, - anon_sym_in, - STATE(3442), 2, + ACTIONS(7923), 1, + anon_sym_SEMI, + STATE(3956), 2, sym_line_comment, sym_block_comment, - [95452] = 5, + [108635] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(7012), 1, - anon_sym_in, - STATE(3443), 2, + ACTIONS(7925), 1, + sym_identifier, + STATE(3957), 2, sym_line_comment, sym_block_comment, - [95469] = 5, + [108649] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(7014), 1, - anon_sym_in, - STATE(3444), 2, + ACTIONS(7927), 1, + sym_identifier, + STATE(3958), 2, sym_line_comment, sym_block_comment, - [95486] = 5, + [108663] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2080), 1, - sym_parameters, - STATE(3445), 2, + ACTIONS(7929), 1, + sym_identifier, + STATE(3959), 2, sym_line_comment, sym_block_comment, - [95503] = 5, + [108677] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6732), 1, + ACTIONS(7931), 1, sym_identifier, - ACTIONS(6736), 1, - sym_mutable_specifier, - STATE(3446), 2, + STATE(3960), 2, sym_line_comment, sym_block_comment, - [95520] = 4, + [108691] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7016), 2, + ACTIONS(7933), 1, sym_identifier, - sym_metavariable, - STATE(3447), 2, + STATE(3961), 2, sym_line_comment, sym_block_comment, - [95535] = 4, + [108705] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7018), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3448), 2, + ACTIONS(7935), 1, + anon_sym_COLON, + STATE(3962), 2, sym_line_comment, sym_block_comment, - [95550] = 5, + [108719] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(538), 1, - sym_declaration_list, - STATE(3449), 2, + ACTIONS(7937), 1, + anon_sym_COLON, + STATE(3963), 2, sym_line_comment, sym_block_comment, - [95567] = 5, + [108733] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2077), 1, - sym_parameters, - STATE(3450), 2, + ACTIONS(7939), 1, + anon_sym_SEMI, + STATE(3964), 2, + sym_line_comment, + sym_block_comment, + [108747] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7941), 1, + anon_sym_COLON, + STATE(3965), 2, sym_line_comment, sym_block_comment, - [95584] = 4, + [108761] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 2, + ACTIONS(7943), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3451), 2, + STATE(3966), 2, sym_line_comment, sym_block_comment, - [95599] = 5, + [108775] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7020), 1, - anon_sym_LBRACK, - ACTIONS(7022), 1, - anon_sym_BANG, - STATE(3452), 2, + ACTIONS(7945), 1, + anon_sym_RBRACE, + STATE(3967), 2, sym_line_comment, sym_block_comment, - [95616] = 5, + [108789] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6199), 1, - sym_identifier, - ACTIONS(6203), 1, - sym_mutable_specifier, - STATE(3453), 2, + ACTIONS(7947), 1, + sym__raw_string_literal_end, + STATE(3968), 2, sym_line_comment, sym_block_comment, - [95633] = 5, + [108803] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7024), 1, - sym_identifier, - ACTIONS(7026), 1, - sym_mutable_specifier, - STATE(3454), 2, + ACTIONS(7949), 1, + sym__raw_string_literal_end, + STATE(3969), 2, sym_line_comment, sym_block_comment, - [95650] = 5, + [108817] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2082), 1, - sym_parameters, - STATE(3455), 2, + ACTIONS(7951), 1, + anon_sym_COLON, + STATE(3970), 2, sym_line_comment, sym_block_comment, - [95667] = 5, + [108831] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(636), 1, - sym_declaration_list, - STATE(3456), 2, + ACTIONS(3646), 1, + anon_sym_PLUS, + STATE(3971), 2, sym_line_comment, sym_block_comment, - [95684] = 5, + [108845] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1217), 1, - sym_declaration_list, - STATE(3457), 2, + ACTIONS(7953), 1, + sym_identifier, + STATE(3972), 2, + sym_line_comment, + sym_block_comment, + [108859] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7955), 1, + sym_raw_string_literal_content, + STATE(3973), 2, + sym_line_comment, + sym_block_comment, + [108873] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7957), 1, + anon_sym_SEMI, + STATE(3974), 2, sym_line_comment, sym_block_comment, - [95701] = 4, + [108887] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7028), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3458), 2, + ACTIONS(7959), 1, + sym_identifier, + STATE(3975), 2, sym_line_comment, sym_block_comment, - [95716] = 4, + [108901] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7030), 1, - anon_sym_RBRACE, - STATE(3459), 2, + ACTIONS(7961), 1, + sym_identifier, + STATE(3976), 2, sym_line_comment, sym_block_comment, - [95730] = 4, + [108915] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4056), 1, - anon_sym_COLON_COLON, - STATE(3460), 2, + ACTIONS(7963), 1, + sym__line_doc_content, + STATE(3977), 2, sym_line_comment, sym_block_comment, - [95744] = 4, + [108929] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6742), 1, - anon_sym_COLON_COLON, - STATE(3461), 2, + ACTIONS(7965), 1, + anon_sym_COLON, + STATE(3978), 2, sym_line_comment, sym_block_comment, - [95758] = 4, + [108943] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7032), 1, + ACTIONS(7967), 1, sym_identifier, - STATE(3462), 2, + STATE(3979), 2, sym_line_comment, sym_block_comment, - [95772] = 4, + [108957] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(875), 1, + ACTIONS(7969), 1, anon_sym_RBRACK, - STATE(3463), 2, + STATE(3980), 2, sym_line_comment, sym_block_comment, - [95786] = 4, + [108971] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7034), 1, - anon_sym_RBRACK, - STATE(3464), 2, + ACTIONS(7971), 1, + sym_identifier, + STATE(3981), 2, sym_line_comment, sym_block_comment, - [95800] = 4, + [108985] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6788), 1, + ACTIONS(7973), 1, anon_sym_SEMI, - STATE(3465), 2, + STATE(3982), 2, sym_line_comment, sym_block_comment, - [95814] = 4, + [108999] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7036), 1, - anon_sym_RBRACK, - STATE(3466), 2, + ACTIONS(7975), 1, + anon_sym_SEMI, + STATE(3983), 2, sym_line_comment, sym_block_comment, - [95828] = 4, + [109013] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5924), 1, - anon_sym_RBRACK, - STATE(3467), 2, + ACTIONS(7977), 1, + sym_identifier, + STATE(3984), 2, sym_line_comment, sym_block_comment, - [95842] = 4, + [109027] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7038), 1, - anon_sym_RBRACK, - STATE(3468), 2, + ACTIONS(7979), 1, + sym_identifier, + STATE(3985), 2, sym_line_comment, sym_block_comment, - [95856] = 4, + [109041] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7040), 1, - anon_sym_RBRACE, - STATE(3469), 2, + ACTIONS(7981), 1, + anon_sym_SEMI, + STATE(3986), 2, sym_line_comment, sym_block_comment, - [95870] = 4, + [109055] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7042), 1, - anon_sym_COLON, - STATE(3470), 2, + ACTIONS(7983), 1, + sym_identifier, + STATE(3987), 2, sym_line_comment, sym_block_comment, - [95884] = 4, + [109069] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7044), 1, - anon_sym_SEMI, - STATE(3471), 2, + ACTIONS(6383), 1, + anon_sym_RPAREN, + STATE(3988), 2, sym_line_comment, sym_block_comment, - [95898] = 4, + [109083] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7046), 1, - anon_sym_LT2, - STATE(3472), 2, + ACTIONS(7985), 1, + anon_sym_EQ_GT, + STATE(3989), 2, sym_line_comment, sym_block_comment, - [95912] = 4, + [109097] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - STATE(3473), 2, + ACTIONS(7987), 1, + sym_identifier, + STATE(3990), 2, sym_line_comment, sym_block_comment, - [95926] = 4, + [109111] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7048), 1, - anon_sym_RPAREN, - STATE(3474), 2, + ACTIONS(7989), 1, + anon_sym_SEMI, + STATE(3991), 2, sym_line_comment, sym_block_comment, - [95940] = 4, + [109125] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7050), 1, - sym_identifier, - STATE(3475), 2, + ACTIONS(7991), 1, + anon_sym_SEMI, + STATE(3992), 2, sym_line_comment, sym_block_comment, - [95954] = 4, + [109139] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_COLON_COLON, - STATE(3476), 2, + ACTIONS(6812), 1, + anon_sym_LBRACE, + STATE(3993), 2, sym_line_comment, sym_block_comment, - [95968] = 4, + [109153] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7052), 1, - anon_sym_COLON_COLON, - STATE(3477), 2, + ACTIONS(7993), 1, + anon_sym_SEMI, + STATE(3994), 2, sym_line_comment, sym_block_comment, - [95982] = 4, + [109167] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7054), 1, - anon_sym_fn, - STATE(3478), 2, + ACTIONS(7995), 1, + sym_identifier, + STATE(3995), 2, sym_line_comment, sym_block_comment, - [95996] = 4, + [109181] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7056), 1, + ACTIONS(7997), 1, sym_identifier, - STATE(3479), 2, + STATE(3996), 2, sym_line_comment, sym_block_comment, - [96010] = 4, + [109195] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6036), 1, - anon_sym_LBRACE, - STATE(3480), 2, + ACTIONS(6264), 1, + anon_sym_RPAREN, + STATE(3997), 2, sym_line_comment, sym_block_comment, - [96024] = 4, + [109209] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7058), 1, - sym__line_doc_content, - STATE(3481), 2, + ACTIONS(7999), 1, + anon_sym_SEMI, + STATE(3998), 2, sym_line_comment, sym_block_comment, - [96038] = 4, + [109223] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7060), 1, + ACTIONS(8001), 1, anon_sym_SEMI, - STATE(3482), 2, + STATE(3999), 2, sym_line_comment, sym_block_comment, - [96052] = 4, + [109237] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7062), 1, - ts_builtin_sym_end, - STATE(3483), 2, + ACTIONS(8003), 1, + anon_sym_SEMI, + STATE(4000), 2, sym_line_comment, sym_block_comment, - [96066] = 4, + [109251] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, - anon_sym_RPAREN, - STATE(3484), 2, + ACTIONS(8005), 1, + sym_identifier, + STATE(4001), 2, sym_line_comment, sym_block_comment, - [96080] = 4, + [109265] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7064), 1, - anon_sym_fn, - STATE(3485), 2, + ACTIONS(8007), 1, + sym_identifier, + STATE(4002), 2, sym_line_comment, sym_block_comment, - [96094] = 4, + [109279] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7066), 1, - anon_sym_SEMI, - STATE(3486), 2, + ACTIONS(8009), 1, + anon_sym_RBRACK, + STATE(4003), 2, sym_line_comment, sym_block_comment, - [96108] = 4, + [109293] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7068), 1, - anon_sym_SEMI, - STATE(3487), 2, + ACTIONS(8011), 1, + sym_identifier, + STATE(4004), 2, sym_line_comment, sym_block_comment, - [96122] = 4, + [109307] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7070), 1, - sym__raw_string_literal_end, - STATE(3488), 2, + ACTIONS(7257), 1, + anon_sym_RBRACE, + STATE(4005), 2, sym_line_comment, sym_block_comment, - [96136] = 4, + [109321] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7072), 1, - sym__raw_string_literal_end, - STATE(3489), 2, + ACTIONS(8013), 1, + anon_sym_RPAREN, + STATE(4006), 2, sym_line_comment, sym_block_comment, - [96150] = 4, + [109335] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7074), 1, + ACTIONS(8015), 1, anon_sym_SEMI, - STATE(3490), 2, + STATE(4007), 2, sym_line_comment, sym_block_comment, - [96164] = 4, + [109349] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7076), 1, + ACTIONS(8017), 1, anon_sym_SEMI, - STATE(3491), 2, + STATE(4008), 2, sym_line_comment, sym_block_comment, - [96178] = 4, + [109363] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7078), 1, - anon_sym_RBRACK, - STATE(3492), 2, + ACTIONS(7637), 1, + anon_sym_EQ, + STATE(4009), 2, sym_line_comment, sym_block_comment, - [96192] = 4, + [109377] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7080), 1, + ACTIONS(8019), 1, anon_sym_SEMI, - STATE(3493), 2, + STATE(4010), 2, sym_line_comment, sym_block_comment, - [96206] = 4, + [109391] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7082), 1, - anon_sym_RPAREN, - STATE(3494), 2, + ACTIONS(8021), 1, + sym_self, + STATE(4011), 2, sym_line_comment, sym_block_comment, - [96220] = 4, + [109405] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7084), 1, - sym_identifier, - STATE(3495), 2, + ACTIONS(7619), 1, + anon_sym_SEMI, + STATE(4012), 2, sym_line_comment, sym_block_comment, - [96234] = 4, + [109419] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7086), 1, + ACTIONS(8023), 1, sym_identifier, - STATE(3496), 2, + STATE(4013), 2, sym_line_comment, sym_block_comment, - [96248] = 4, + [109433] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7088), 1, - anon_sym_SEMI, - STATE(3497), 2, + ACTIONS(8025), 1, + anon_sym_COLON_COLON, + STATE(4014), 2, sym_line_comment, sym_block_comment, - [96262] = 4, + [109447] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7090), 1, - anon_sym_SEMI, - STATE(3498), 2, + ACTIONS(8027), 1, + sym_identifier, + STATE(4015), 2, sym_line_comment, sym_block_comment, - [96276] = 4, + [109461] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7092), 1, - anon_sym_RBRACE, - STATE(3499), 2, + ACTIONS(8029), 1, + anon_sym_COLON, + STATE(4016), 2, sym_line_comment, sym_block_comment, - [96290] = 4, + [109475] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7094), 1, - sym_identifier, - STATE(3500), 2, + ACTIONS(7673), 1, + anon_sym_COLON_COLON, + STATE(4017), 2, sym_line_comment, sym_block_comment, - [96304] = 4, + [109489] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7096), 1, - sym_identifier, - STATE(3501), 2, + ACTIONS(8031), 1, + anon_sym_SEMI, + STATE(4018), 2, sym_line_comment, sym_block_comment, - [96318] = 4, + [109503] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3502), 2, + ACTIONS(8033), 1, + sym_identifier, + STATE(4019), 2, sym_line_comment, sym_block_comment, - [96332] = 4, + [109517] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7098), 1, + ACTIONS(8035), 1, sym_identifier, - STATE(3503), 2, + STATE(4020), 2, sym_line_comment, sym_block_comment, - [96346] = 4, + [109531] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7100), 1, - anon_sym_SEMI, - STATE(3504), 2, + ACTIONS(8037), 1, + sym_identifier, + STATE(4021), 2, sym_line_comment, sym_block_comment, - [96360] = 4, + [109545] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7102), 1, - anon_sym_RPAREN, - STATE(3505), 2, + ACTIONS(8039), 1, + anon_sym_SEMI, + STATE(4022), 2, sym_line_comment, sym_block_comment, - [96374] = 4, + [109559] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7104), 1, - sym_identifier, - STATE(3506), 2, + ACTIONS(8041), 1, + anon_sym_SEMI, + STATE(4023), 2, sym_line_comment, sym_block_comment, - [96388] = 4, + [109573] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - anon_sym_RBRACE, - STATE(3507), 2, + ACTIONS(8043), 1, + anon_sym_EQ_GT, + STATE(4024), 2, sym_line_comment, sym_block_comment, - [96402] = 4, + [109587] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7106), 1, - sym_self, - STATE(3508), 2, + ACTIONS(5253), 1, + anon_sym_fn, + STATE(4025), 2, sym_line_comment, sym_block_comment, - [96416] = 4, + [109601] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7108), 1, - anon_sym_EQ_GT, - STATE(3509), 2, + ACTIONS(8045), 1, + anon_sym_SEMI, + STATE(4026), 2, sym_line_comment, sym_block_comment, - [96430] = 4, + [109615] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7110), 1, - anon_sym_SEMI, - STATE(3510), 2, + ACTIONS(8047), 1, + sym__raw_string_literal_end, + STATE(4027), 2, sym_line_comment, sym_block_comment, - [96444] = 4, + [109629] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7112), 1, - anon_sym_EQ, - STATE(3511), 2, + ACTIONS(8049), 1, + sym_identifier, + STATE(4028), 2, sym_line_comment, sym_block_comment, - [96458] = 4, + [109643] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7114), 1, - anon_sym_RBRACK, - STATE(3512), 2, + ACTIONS(8051), 1, + anon_sym_SEMI, + STATE(4029), 2, sym_line_comment, sym_block_comment, - [96472] = 4, + [109657] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - STATE(3513), 2, + ACTIONS(8053), 1, + anon_sym_EQ, + STATE(4030), 2, sym_line_comment, sym_block_comment, - [96486] = 4, + [109671] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7116), 1, - anon_sym_SEMI, - STATE(3514), 2, + ACTIONS(8055), 1, + sym_identifier, + STATE(4031), 2, sym_line_comment, sym_block_comment, - [96500] = 4, + [109685] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5646), 1, - anon_sym_RPAREN, - STATE(3515), 2, + ACTIONS(8057), 1, + anon_sym_SEMI, + STATE(4032), 2, sym_line_comment, sym_block_comment, - [96514] = 4, + [109699] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7118), 1, - sym_identifier, - STATE(3516), 2, + ACTIONS(7078), 1, + anon_sym_GT, + STATE(4033), 2, sym_line_comment, sym_block_comment, - [96528] = 4, + [109713] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5386), 1, + ACTIONS(8059), 1, anon_sym_SEMI, - STATE(3517), 2, + STATE(4034), 2, sym_line_comment, sym_block_comment, - [96542] = 4, + [109727] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(8061), 1, anon_sym_RBRACE, - STATE(3518), 2, + STATE(4035), 2, sym_line_comment, sym_block_comment, - [96556] = 4, + [109741] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7120), 1, - anon_sym_SEMI, - STATE(3519), 2, + ACTIONS(8063), 1, + sym_identifier, + STATE(4036), 2, sym_line_comment, sym_block_comment, - [96570] = 4, + [109755] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_EQ_GT, - STATE(3520), 2, + ACTIONS(1025), 1, + anon_sym_RBRACK, + STATE(4037), 2, sym_line_comment, sym_block_comment, - [96584] = 4, + [109769] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7122), 1, - anon_sym_SEMI, - STATE(3521), 2, + ACTIONS(7406), 1, + anon_sym_GT, + STATE(4038), 2, sym_line_comment, sym_block_comment, - [96598] = 4, + [109783] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4155), 1, + ACTIONS(8065), 1, sym_identifier, - STATE(3522), 2, + STATE(4039), 2, sym_line_comment, sym_block_comment, - [96612] = 4, + [109797] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7124), 1, - sym_identifier, - STATE(3523), 2, + ACTIONS(8067), 1, + anon_sym_SEMI, + STATE(4040), 2, sym_line_comment, sym_block_comment, - [96626] = 4, + [109811] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7126), 1, - sym__line_doc_content, - STATE(3524), 2, + ACTIONS(6631), 1, + anon_sym_RPAREN, + STATE(4041), 2, sym_line_comment, sym_block_comment, - [96640] = 4, + [109825] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7128), 1, - sym_identifier, - STATE(3525), 2, + ACTIONS(8069), 1, + anon_sym_SEMI, + STATE(4042), 2, sym_line_comment, sym_block_comment, - [96654] = 4, + [109839] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7130), 1, - anon_sym_EQ, - STATE(3526), 2, + ACTIONS(3590), 1, + anon_sym_PLUS, + STATE(4043), 2, sym_line_comment, sym_block_comment, - [96668] = 4, + [109853] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7132), 1, - anon_sym_RBRACE, - STATE(3527), 2, + ACTIONS(8071), 1, + anon_sym_RPAREN, + STATE(4044), 2, + sym_line_comment, + sym_block_comment, + [109867] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(8073), 1, + anon_sym_RPAREN, + STATE(4045), 2, sym_line_comment, sym_block_comment, - [96682] = 4, + [109881] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7134), 1, + ACTIONS(6865), 1, anon_sym_RBRACE, - STATE(3528), 2, + STATE(4046), 2, sym_line_comment, sym_block_comment, - [96696] = 4, + [109895] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7136), 1, + ACTIONS(8075), 1, anon_sym_COLON, - STATE(3529), 2, + STATE(4047), 2, sym_line_comment, sym_block_comment, - [96710] = 4, + [109909] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7138), 1, - anon_sym_SEMI, - STATE(3530), 2, + ACTIONS(4528), 1, + anon_sym_COLON_COLON, + STATE(4048), 2, sym_line_comment, sym_block_comment, - [96724] = 4, + [109923] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7140), 1, - sym_identifier, - STATE(3531), 2, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + STATE(4049), 2, sym_line_comment, sym_block_comment, - [96738] = 4, + [109937] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7142), 1, - anon_sym_COLON, - STATE(3532), 2, + ACTIONS(8077), 1, + anon_sym_STAR_SLASH, + STATE(4050), 2, sym_line_comment, sym_block_comment, - [96752] = 4, + [109951] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7144), 1, - sym_identifier, - STATE(3533), 2, + ACTIONS(6649), 1, + anon_sym_RBRACK, + STATE(4051), 2, sym_line_comment, sym_block_comment, - [96766] = 4, + [109965] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6122), 1, - anon_sym_RBRACE, - STATE(3534), 2, + ACTIONS(8079), 1, + anon_sym_SEMI, + STATE(4052), 2, sym_line_comment, sym_block_comment, - [96780] = 4, + [109979] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7146), 1, - anon_sym_STAR_SLASH, - STATE(3535), 2, + ACTIONS(6007), 1, + anon_sym_COLON_COLON, + STATE(4053), 2, sym_line_comment, sym_block_comment, - [96794] = 4, + [109993] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7148), 1, - sym_identifier, - STATE(3536), 2, + ACTIONS(8081), 1, + anon_sym_SEMI, + STATE(4054), 2, sym_line_comment, sym_block_comment, - [96808] = 4, + [110007] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7150), 1, - sym__raw_string_literal_end, - STATE(3537), 2, + ACTIONS(8083), 1, + sym_identifier, + STATE(4055), 2, sym_line_comment, sym_block_comment, - [96822] = 4, + [110021] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7152), 1, - anon_sym_LT, - STATE(3538), 2, + ACTIONS(8085), 1, + anon_sym_SEMI, + STATE(4056), 2, sym_line_comment, sym_block_comment, - [96836] = 4, + [110035] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7154), 1, - sym__line_doc_content, - STATE(3539), 2, + ACTIONS(8087), 1, + anon_sym_SEMI, + STATE(4057), 2, sym_line_comment, sym_block_comment, - [96850] = 4, + [110049] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7156), 1, - anon_sym_LPAREN, - STATE(3540), 2, + ACTIONS(8089), 1, + anon_sym_SEMI, + STATE(4058), 2, sym_line_comment, sym_block_comment, - [96864] = 4, + [110063] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7158), 1, + ACTIONS(8091), 1, anon_sym_SEMI, - STATE(3541), 2, + STATE(4059), 2, sym_line_comment, sym_block_comment, - [96878] = 4, + [110077] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7160), 1, - anon_sym_fn, - STATE(3542), 2, + ACTIONS(8093), 1, + anon_sym_SEMI, + STATE(4060), 2, sym_line_comment, sym_block_comment, - [96892] = 4, + [110091] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7162), 1, - sym_raw_string_literal_content, - STATE(3543), 2, + ACTIONS(8095), 1, + anon_sym_SEMI, + STATE(4061), 2, sym_line_comment, sym_block_comment, - [96906] = 4, + [110105] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7164), 1, - sym_identifier, - STATE(3544), 2, + ACTIONS(929), 1, + anon_sym_EQ_GT, + STATE(4062), 2, sym_line_comment, sym_block_comment, - [96920] = 4, + [110119] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7166), 1, - anon_sym_SEMI, - STATE(3545), 2, + ACTIONS(941), 1, + anon_sym_EQ_GT, + STATE(4063), 2, sym_line_comment, sym_block_comment, - [96934] = 4, + [110133] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7168), 1, - anon_sym_LBRACK, - STATE(3546), 2, + ACTIONS(8097), 1, + sym_identifier, + STATE(4064), 2, sym_line_comment, sym_block_comment, - [96948] = 4, + [110147] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7170), 1, - anon_sym_RPAREN, - STATE(3547), 2, + ACTIONS(4282), 1, + anon_sym_COLON_COLON, + STATE(4065), 2, sym_line_comment, sym_block_comment, - [96962] = 4, + [110161] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3198), 1, - anon_sym_PLUS, - STATE(3548), 2, + ACTIONS(6891), 1, + anon_sym_RBRACE, + STATE(4066), 2, sym_line_comment, sym_block_comment, - [96976] = 4, + [110175] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7172), 1, - sym__raw_string_literal_end, - STATE(3549), 2, + ACTIONS(8099), 1, + sym_identifier, + STATE(4067), 2, sym_line_comment, sym_block_comment, - [96990] = 4, + [110189] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7174), 1, + ACTIONS(8101), 1, anon_sym_SEMI, - STATE(3550), 2, + STATE(4068), 2, sym_line_comment, sym_block_comment, - [97004] = 4, + [110203] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7176), 1, - sym_identifier, - STATE(3551), 2, + ACTIONS(8103), 1, + anon_sym_SEMI, + STATE(4069), 2, sym_line_comment, sym_block_comment, - [97018] = 4, + [110217] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7178), 1, - anon_sym_COLON_COLON, - STATE(3552), 2, + ACTIONS(8105), 1, + anon_sym_RBRACK, + STATE(4070), 2, sym_line_comment, sym_block_comment, - [97032] = 4, + [110231] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7180), 1, - sym_identifier, - STATE(3553), 2, + ACTIONS(6709), 1, + anon_sym_RBRACK, + STATE(4071), 2, sym_line_comment, sym_block_comment, - [97046] = 4, + [110245] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7182), 1, - anon_sym_RBRACK, - STATE(3554), 2, + ACTIONS(8107), 1, + sym_identifier, + STATE(4072), 2, sym_line_comment, sym_block_comment, - [97060] = 4, + [110259] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7184), 1, + ACTIONS(8109), 1, sym_identifier, - STATE(3555), 2, + STATE(4073), 2, sym_line_comment, sym_block_comment, - [97074] = 4, + [110273] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7186), 1, - anon_sym_COLON, - STATE(3556), 2, + ACTIONS(8111), 1, + anon_sym_SEMI, + STATE(4074), 2, sym_line_comment, sym_block_comment, - [97088] = 4, + [110287] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7188), 1, - anon_sym_COLON_COLON, - STATE(3557), 2, + ACTIONS(8113), 1, + anon_sym_SEMI, + STATE(4075), 2, sym_line_comment, sym_block_comment, - [97102] = 4, + [110301] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7190), 1, - anon_sym_RBRACK, - STATE(3558), 2, + ACTIONS(8115), 1, + anon_sym_EQ, + STATE(4076), 2, sym_line_comment, sym_block_comment, - [97116] = 4, + [110315] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6634), 1, - anon_sym_RBRACE, - STATE(3559), 2, + ACTIONS(8117), 1, + anon_sym_fn, + STATE(4077), 2, sym_line_comment, sym_block_comment, - [97130] = 4, + [110329] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7192), 1, - anon_sym_RBRACK, - STATE(3560), 2, + ACTIONS(8119), 1, + sym_raw_string_literal_content, + STATE(4078), 2, sym_line_comment, sym_block_comment, - [97144] = 4, + [110343] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7194), 1, - sym_identifier, - STATE(3561), 2, + ACTIONS(8121), 1, + anon_sym_LBRACK, + STATE(4079), 2, sym_line_comment, sym_block_comment, - [97158] = 4, + [110357] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5846), 1, - anon_sym_RPAREN, - STATE(3562), 2, + ACTIONS(8123), 1, + anon_sym_RBRACK, + STATE(4080), 2, sym_line_comment, sym_block_comment, - [97172] = 4, + [110371] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6518), 1, + ACTIONS(8125), 1, anon_sym_COLON_COLON, - STATE(3563), 2, + STATE(4081), 2, sym_line_comment, sym_block_comment, - [97186] = 4, + [110385] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7196), 1, - anon_sym_EQ_GT, - STATE(3564), 2, + ACTIONS(4762), 1, + anon_sym_COLON_COLON, + STATE(4082), 2, sym_line_comment, sym_block_comment, - [97200] = 4, + [110399] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5918), 1, - anon_sym_RPAREN, - STATE(3565), 2, + ACTIONS(6510), 1, + anon_sym_COLON_COLON, + STATE(4083), 2, sym_line_comment, sym_block_comment, - [97214] = 4, + [110413] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7198), 1, - anon_sym_STAR_SLASH, - STATE(3566), 2, + ACTIONS(8127), 1, + anon_sym_RBRACK, + STATE(4084), 2, sym_line_comment, sym_block_comment, - [97228] = 4, + [110427] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(744), 1, - anon_sym_RBRACK, - STATE(3567), 2, + ACTIONS(7431), 1, + anon_sym_COLON_COLON, + STATE(4085), 2, sym_line_comment, sym_block_comment, - [97242] = 4, + [110441] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7200), 1, - sym__line_doc_content, - STATE(3568), 2, + ACTIONS(8129), 1, + sym_identifier, + STATE(4086), 2, sym_line_comment, sym_block_comment, - [97256] = 4, + [110455] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, + ACTIONS(8131), 1, anon_sym_COLON_COLON, - STATE(3569), 2, + STATE(4087), 2, sym_line_comment, sym_block_comment, - [97270] = 4, + [110469] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7202), 1, - anon_sym_EQ_GT, - STATE(3570), 2, + ACTIONS(8133), 1, + sym__line_doc_content, + STATE(4088), 2, sym_line_comment, sym_block_comment, - [97284] = 4, + [110483] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7204), 1, - anon_sym_SEMI, - STATE(3571), 2, + ACTIONS(8135), 1, + anon_sym_RBRACK, + STATE(4089), 2, sym_line_comment, sym_block_comment, - [97298] = 4, + [110497] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7206), 1, + ACTIONS(8137), 1, anon_sym_SEMI, - STATE(3572), 2, + STATE(4090), 2, sym_line_comment, sym_block_comment, - [97312] = 4, + [110511] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5688), 1, - anon_sym_RPAREN, - STATE(3573), 2, + ACTIONS(8139), 1, + anon_sym_RBRACK, + STATE(4091), 2, sym_line_comment, sym_block_comment, - [97326] = 4, + [110525] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7208), 1, - anon_sym_COLON, - STATE(3574), 2, + ACTIONS(8141), 1, + anon_sym_LPAREN, + STATE(4092), 2, sym_line_comment, sym_block_comment, - [97340] = 4, + [110539] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7210), 1, - sym__raw_string_literal_end, - STATE(3575), 2, + ACTIONS(8143), 1, + anon_sym_LT2, + STATE(4093), 2, sym_line_comment, sym_block_comment, - [97354] = 4, + [110553] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6514), 1, - anon_sym_GT, - STATE(3576), 2, + ACTIONS(8145), 1, + sym_identifier, + STATE(4094), 2, sym_line_comment, sym_block_comment, - [97368] = 4, + [110567] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7212), 1, - anon_sym_SEMI, - STATE(3577), 2, + ACTIONS(8147), 1, + anon_sym_fn, + STATE(4095), 2, sym_line_comment, sym_block_comment, - [97382] = 4, + [110581] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, - anon_sym_RBRACK, - STATE(3578), 2, + ACTIONS(8149), 1, + anon_sym_SEMI, + STATE(4096), 2, sym_line_comment, sym_block_comment, - [97396] = 4, + [110595] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5702), 1, - anon_sym_RPAREN, - STATE(3579), 2, + ACTIONS(8151), 1, + anon_sym_COLON_COLON, + STATE(4097), 2, sym_line_comment, sym_block_comment, - [97410] = 4, + [110609] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7214), 1, - anon_sym_RBRACE, - STATE(3580), 2, + ACTIONS(8153), 1, + sym__raw_string_literal_end, + STATE(4098), 2, sym_line_comment, sym_block_comment, - [97424] = 4, + [110623] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(3581), 2, + ACTIONS(8155), 1, + sym_identifier, + STATE(4099), 2, sym_line_comment, sym_block_comment, - [97438] = 4, + [110637] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7218), 1, - anon_sym_COLON, - STATE(3582), 2, + ACTIONS(8157), 1, + anon_sym_COLON_COLON, + STATE(4100), 2, sym_line_comment, sym_block_comment, - [97452] = 4, + [110651] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7220), 1, + ACTIONS(8159), 1, sym_identifier, - STATE(3583), 2, + STATE(4101), 2, sym_line_comment, sym_block_comment, - [97466] = 4, + [110665] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7222), 1, - anon_sym_SEMI, - STATE(3584), 2, + ACTIONS(8161), 1, + sym_identifier, + STATE(4102), 2, sym_line_comment, sym_block_comment, - [97480] = 4, + [110679] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7224), 1, - sym_raw_string_literal_content, - STATE(3585), 2, + ACTIONS(8163), 1, + anon_sym_COLON, + STATE(4103), 2, sym_line_comment, sym_block_comment, - [97494] = 4, + [110693] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4266), 1, - anon_sym_RPAREN, - STATE(3586), 2, + ACTIONS(5610), 1, + anon_sym_COLON_COLON, + STATE(4104), 2, sym_line_comment, sym_block_comment, - [97508] = 4, + [110707] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7226), 1, - anon_sym_SEMI, - STATE(3587), 2, + ACTIONS(8165), 1, + anon_sym_COLON_COLON, + STATE(4105), 2, sym_line_comment, sym_block_comment, - [97522] = 4, + [110721] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7228), 1, - anon_sym_COLON_COLON, - STATE(3588), 2, + ACTIONS(8167), 1, + anon_sym_fn, + STATE(4106), 2, sym_line_comment, sym_block_comment, - [97536] = 4, + [110735] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, - anon_sym_COLON_COLON, - STATE(3589), 2, + ACTIONS(8169), 1, + anon_sym_SEMI, + STATE(4107), 2, sym_line_comment, sym_block_comment, - [97550] = 4, + [110749] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_COLON_COLON, - STATE(3590), 2, + ACTIONS(8171), 1, + anon_sym_LBRACE, + STATE(4108), 2, sym_line_comment, sym_block_comment, - [97564] = 4, + [110763] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6175), 1, - anon_sym_RBRACE, - STATE(3591), 2, + ACTIONS(8173), 1, + anon_sym_SEMI, + STATE(4109), 2, sym_line_comment, sym_block_comment, - [97578] = 4, + [110777] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7230), 1, + ACTIONS(8175), 1, sym_identifier, - STATE(3592), 2, + STATE(4110), 2, sym_line_comment, sym_block_comment, - [97592] = 4, + [110791] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7232), 1, - sym_identifier, - STATE(3593), 2, + ACTIONS(7843), 1, + anon_sym_SEMI, + STATE(4111), 2, sym_line_comment, sym_block_comment, - [97606] = 4, + [110805] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7234), 1, - anon_sym_COLON_COLON, - STATE(3594), 2, + ACTIONS(8177), 1, + anon_sym_RBRACK, + STATE(4112), 2, sym_line_comment, sym_block_comment, - [97620] = 4, + [110819] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7236), 1, - sym_identifier, - STATE(3595), 2, + ACTIONS(8179), 1, + anon_sym_SEMI, + STATE(4113), 2, sym_line_comment, sym_block_comment, - [97634] = 4, + [110833] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7238), 1, - anon_sym_SEMI, - STATE(3596), 2, + ACTIONS(8181), 1, + anon_sym_COLON, + STATE(4114), 2, sym_line_comment, sym_block_comment, - [97648] = 4, + [110847] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7240), 1, + ACTIONS(5893), 1, anon_sym_SEMI, - STATE(3597), 2, + STATE(4115), 2, sym_line_comment, sym_block_comment, - [97662] = 4, + [110861] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6408), 1, - anon_sym_GT, - STATE(3598), 2, + ACTIONS(8183), 1, + sym_identifier, + STATE(4116), 2, sym_line_comment, sym_block_comment, - [97676] = 4, + [110875] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7242), 1, - anon_sym_SEMI, - STATE(3599), 2, + ACTIONS(8185), 1, + sym_raw_string_literal_content, + STATE(4117), 2, sym_line_comment, sym_block_comment, - [97690] = 4, + [110889] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7244), 1, + ACTIONS(8187), 1, anon_sym_LT2, - STATE(3600), 2, + STATE(4118), 2, sym_line_comment, sym_block_comment, - [97704] = 4, + [110903] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7246), 1, + ACTIONS(7629), 1, anon_sym_SEMI, - STATE(3601), 2, + STATE(4119), 2, sym_line_comment, sym_block_comment, - [97718] = 4, + [110917] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7248), 1, - anon_sym_fn, - STATE(3602), 2, + ACTIONS(5304), 1, + anon_sym_COLON_COLON, + STATE(4120), 2, + sym_line_comment, + sym_block_comment, + [110931] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(8189), 1, + anon_sym_COLON_COLON, + STATE(4121), 2, sym_line_comment, sym_block_comment, - [97732] = 4, + [110945] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7250), 1, + ACTIONS(8191), 1, anon_sym_SEMI, - STATE(3603), 2, + STATE(4122), 2, sym_line_comment, sym_block_comment, - [97746] = 4, + [110959] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7252), 1, - anon_sym_COLON_COLON, - STATE(3604), 2, + ACTIONS(8193), 1, + anon_sym_COLON, + STATE(4123), 2, sym_line_comment, sym_block_comment, - [97760] = 4, + [110973] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 1, + ACTIONS(8195), 1, anon_sym_COLON_COLON, - STATE(3605), 2, + STATE(4124), 2, + sym_line_comment, + sym_block_comment, + [110987] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(8197), 1, + sym__line_doc_content, + STATE(4125), 2, sym_line_comment, sym_block_comment, - [97774] = 4, + [111001] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7254), 1, + ACTIONS(8199), 1, anon_sym_SEMI, - STATE(3606), 2, + STATE(4126), 2, sym_line_comment, sym_block_comment, - [97788] = 4, + [111015] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7256), 1, - anon_sym_COLON_COLON, - STATE(3607), 2, + ACTIONS(6691), 1, + anon_sym_RPAREN, + STATE(4127), 2, sym_line_comment, sym_block_comment, - [97802] = 4, + [111029] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7258), 1, - anon_sym_SEMI, - STATE(3608), 2, + ACTIONS(8201), 1, + sym_identifier, + STATE(4128), 2, sym_line_comment, sym_block_comment, - [97816] = 4, + [111043] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7260), 1, - anon_sym_SEMI, - STATE(3609), 2, + ACTIONS(8203), 1, + sym_raw_string_literal_content, + STATE(4129), 2, sym_line_comment, sym_block_comment, - [97830] = 4, + [111057] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6126), 1, - anon_sym_RBRACE, - STATE(3610), 2, + ACTIONS(8205), 1, + anon_sym_SEMI, + STATE(4130), 2, sym_line_comment, sym_block_comment, - [97844] = 4, + [111071] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON_COLON, - STATE(3611), 2, + ACTIONS(8207), 1, + anon_sym_SEMI, + STATE(4131), 2, sym_line_comment, sym_block_comment, - [97858] = 4, + [111085] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7262), 1, + ACTIONS(8209), 1, anon_sym_COLON_COLON, - STATE(3612), 2, + STATE(4132), 2, sym_line_comment, sym_block_comment, - [97872] = 4, + [111099] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7264), 1, - anon_sym_fn, - STATE(3613), 2, + ACTIONS(8211), 1, + anon_sym_LBRACE, + STATE(4133), 2, sym_line_comment, sym_block_comment, - [97886] = 4, + [111113] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7266), 1, - anon_sym_SEMI, - STATE(3614), 2, + ACTIONS(744), 1, + anon_sym_RBRACK, + STATE(4134), 2, sym_line_comment, sym_block_comment, - [97900] = 4, + [111127] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7268), 1, - anon_sym_LBRACE, - STATE(3615), 2, + ACTIONS(8213), 1, + sym_identifier, + STATE(4135), 2, sym_line_comment, sym_block_comment, - [97914] = 4, + [111141] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7270), 1, - anon_sym_SEMI, - STATE(3616), 2, + ACTIONS(8215), 1, + sym_identifier, + STATE(4136), 2, sym_line_comment, sym_block_comment, - [97928] = 4, + [111155] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(901), 1, - anon_sym_RBRACK, - STATE(3617), 2, + ACTIONS(7466), 1, + anon_sym_RBRACE, + STATE(4137), 2, sym_line_comment, sym_block_comment, - [97942] = 4, + [111169] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7272), 1, - anon_sym_COLON_COLON, - STATE(3618), 2, + ACTIONS(8217), 1, + sym_raw_string_literal_content, + STATE(4138), 2, sym_line_comment, sym_block_comment, - [97956] = 4, + [111183] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7274), 1, - anon_sym_RBRACK, - STATE(3619), 2, + ACTIONS(4106), 1, + anon_sym_COLON_COLON, + STATE(4139), 2, sym_line_comment, sym_block_comment, - [97970] = 4, + [111197] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7276), 1, + ACTIONS(8219), 1, sym_identifier, - STATE(3620), 2, + STATE(4140), 2, sym_line_comment, sym_block_comment, - [97984] = 4, + [111211] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7278), 1, - sym_identifier, - STATE(3621), 2, + ACTIONS(8221), 1, + anon_sym_COLON_COLON, + STATE(4141), 2, sym_line_comment, sym_block_comment, - [97998] = 4, + [111225] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7280), 1, + ACTIONS(8223), 1, anon_sym_SEMI, - STATE(3622), 2, + STATE(4142), 2, sym_line_comment, sym_block_comment, - [98012] = 4, + [111239] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7282), 1, - sym_identifier, - STATE(3623), 2, + ACTIONS(8225), 1, + anon_sym_RPAREN, + STATE(4143), 2, + sym_line_comment, + sym_block_comment, + [111253] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(8227), 1, + anon_sym_LBRACE, + STATE(4144), 2, sym_line_comment, sym_block_comment, - [98026] = 4, + [111267] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7284), 1, + ACTIONS(8229), 1, sym_raw_string_literal_content, - STATE(3624), 2, + STATE(4145), 2, sym_line_comment, sym_block_comment, - [98040] = 4, + [111281] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6382), 1, - anon_sym_RBRACE, - STATE(3625), 2, + ACTIONS(5985), 1, + anon_sym_COLON_COLON, + STATE(4146), 2, sym_line_comment, sym_block_comment, - [98054] = 4, + [111295] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7286), 1, - sym_identifier, - STATE(3626), 2, + ACTIONS(8231), 1, + anon_sym_COLON_COLON, + STATE(4147), 2, sym_line_comment, sym_block_comment, - [98068] = 4, + [111309] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7288), 1, - sym_identifier, - STATE(3627), 2, + ACTIONS(6725), 1, + anon_sym_LBRACE, + STATE(4148), 2, sym_line_comment, sym_block_comment, - [98082] = 4, + [111323] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7290), 1, + ACTIONS(6637), 1, anon_sym_COLON_COLON, - STATE(3628), 2, + STATE(4149), 2, sym_line_comment, sym_block_comment, - [98096] = 4, + [111337] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5820), 1, - anon_sym_RPAREN, - STATE(3629), 2, + ACTIONS(8233), 1, + anon_sym_COLON_COLON, + STATE(4150), 2, sym_line_comment, sym_block_comment, - [98110] = 4, + [111351] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6154), 1, - anon_sym_RBRACE, - STATE(3630), 2, + ACTIONS(6742), 1, + anon_sym_LBRACE, + STATE(4151), 2, sym_line_comment, sym_block_comment, - [98124] = 4, + [111365] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7292), 1, + ACTIONS(8235), 1, anon_sym_COLON_COLON, - STATE(3631), 2, + STATE(4152), 2, sym_line_comment, sym_block_comment, - [98138] = 4, + [111379] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7294), 1, - sym_identifier, - STATE(3632), 2, + ACTIONS(5983), 1, + anon_sym_COLON_COLON, + STATE(4153), 2, sym_line_comment, sym_block_comment, - [98152] = 4, + [111393] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7296), 1, - sym_identifier, - STATE(3633), 2, + ACTIONS(5995), 1, + anon_sym_COLON_COLON, + STATE(4154), 2, sym_line_comment, sym_block_comment, - [98166] = 4, + [111407] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7298), 1, + ACTIONS(4760), 1, anon_sym_COLON_COLON, - STATE(3634), 2, + STATE(4155), 2, sym_line_comment, sym_block_comment, - [98180] = 4, + [111421] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7300), 1, - sym_identifier, - STATE(3635), 2, + ACTIONS(8237), 1, + anon_sym_COLON_COLON, + STATE(4156), 2, sym_line_comment, sym_block_comment, - [98194] = 4, + [111435] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7302), 1, - anon_sym_COLON, - STATE(3636), 2, + ACTIONS(8239), 1, + anon_sym_SEMI, + STATE(4157), 2, sym_line_comment, sym_block_comment, - [98208] = 4, + [111449] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7304), 1, + ACTIONS(8241), 1, sym_identifier, - STATE(3637), 2, + STATE(4158), 2, sym_line_comment, sym_block_comment, - [98222] = 4, + [111463] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7306), 1, + ACTIONS(8243), 1, sym_identifier, - STATE(3638), 2, + STATE(4159), 2, sym_line_comment, sym_block_comment, - [98236] = 4, + [111477] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7308), 1, - anon_sym_COLON_COLON, - STATE(3639), 2, + ACTIONS(8245), 1, + anon_sym_SEMI, + STATE(4160), 2, sym_line_comment, sym_block_comment, - [98250] = 4, + [111491] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7310), 1, - anon_sym_LBRACE, - STATE(3640), 2, + ACTIONS(8247), 1, + anon_sym_COLON, + STATE(4161), 2, sym_line_comment, sym_block_comment, - [98264] = 4, + [111505] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7312), 1, + ACTIONS(7611), 1, anon_sym_LBRACK, - STATE(3641), 2, + STATE(4162), 2, sym_line_comment, sym_block_comment, - [98278] = 4, + [111519] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_fn, - STATE(3642), 2, + ACTIONS(8249), 1, + sym_identifier, + STATE(4163), 2, sym_line_comment, sym_block_comment, - [98292] = 4, + [111533] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5824), 1, - anon_sym_RBRACK, - STATE(3643), 2, + ACTIONS(8251), 1, + sym_identifier, + STATE(4164), 2, sym_line_comment, sym_block_comment, - [98306] = 4, + [111547] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5362), 1, - anon_sym_SEMI, - STATE(3644), 2, + ACTIONS(8253), 1, + sym__line_doc_content, + STATE(4165), 2, sym_line_comment, sym_block_comment, - [98320] = 4, + [111561] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7314), 1, - sym_raw_string_literal_content, - STATE(3645), 2, + ACTIONS(8255), 1, + sym_identifier, + STATE(4166), 2, sym_line_comment, sym_block_comment, - [98334] = 4, + [111575] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3604), 1, - anon_sym_COLON_COLON, - STATE(3646), 2, + ACTIONS(7601), 1, + anon_sym_SEMI, + STATE(4167), 2, sym_line_comment, sym_block_comment, - [98348] = 4, + [111589] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7316), 1, - anon_sym_RBRACK, - STATE(3647), 2, + ACTIONS(8257), 1, + anon_sym_LBRACK, + STATE(4168), 2, sym_line_comment, sym_block_comment, - [98362] = 4, + [111603] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7318), 1, - anon_sym_COLON_COLON, - STATE(3648), 2, + ACTIONS(8259), 1, + anon_sym_COLON, + STATE(4169), 2, sym_line_comment, sym_block_comment, - [98376] = 4, + [111617] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6810), 1, - anon_sym_SEMI, - STATE(3649), 2, + ACTIONS(8261), 1, + anon_sym_COLON, + STATE(4170), 2, sym_line_comment, sym_block_comment, - [98390] = 4, + [111631] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7320), 1, - anon_sym_COLON, - STATE(3650), 2, + ACTIONS(6958), 1, + anon_sym_RBRACE, + STATE(4171), 2, sym_line_comment, sym_block_comment, - [98404] = 4, + [111645] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7322), 1, - anon_sym_LBRACE, - STATE(3651), 2, + ACTIONS(8263), 1, + anon_sym_SEMI, + STATE(4172), 2, sym_line_comment, sym_block_comment, - [98418] = 4, + [111659] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7324), 1, - sym_raw_string_literal_content, - STATE(3652), 2, + ACTIONS(8265), 1, + anon_sym_SEMI, + STATE(4173), 2, sym_line_comment, sym_block_comment, - [98432] = 4, + [111673] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - STATE(3653), 2, + ACTIONS(8267), 1, + anon_sym_SEMI, + STATE(4174), 2, sym_line_comment, sym_block_comment, - [98446] = 4, + [111687] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7326), 1, - anon_sym_COLON_COLON, - STATE(3654), 2, + ACTIONS(8269), 1, + anon_sym_COLON, + STATE(4175), 2, sym_line_comment, sym_block_comment, - [98460] = 4, + [111701] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7328), 1, - sym_raw_string_literal_content, - STATE(3655), 2, + ACTIONS(8271), 1, + anon_sym_SEMI, + STATE(4176), 2, sym_line_comment, sym_block_comment, - [98474] = 4, + [111715] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6062), 1, - anon_sym_LBRACE, - STATE(3656), 2, + ACTIONS(4710), 1, + anon_sym_COLON_COLON, + STATE(4177), 2, sym_line_comment, sym_block_comment, - [98488] = 4, + [111729] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5798), 1, - anon_sym_COLON_COLON, - STATE(3657), 2, + ACTIONS(8273), 1, + anon_sym_COLON, + STATE(4178), 2, sym_line_comment, sym_block_comment, - [98502] = 4, + [111743] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7330), 1, + ACTIONS(5306), 1, anon_sym_COLON_COLON, - STATE(3658), 2, + STATE(4179), 2, sym_line_comment, sym_block_comment, - [98516] = 4, + [111757] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6070), 1, - anon_sym_LBRACE, - STATE(3659), 2, + ACTIONS(8275), 1, + anon_sym_SEMI, + STATE(4180), 2, sym_line_comment, sym_block_comment, - [98530] = 4, + [111771] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7332), 1, - anon_sym_COLON_COLON, - STATE(3660), 2, + ACTIONS(8277), 1, + sym__raw_string_literal_end, + STATE(4181), 2, sym_line_comment, sym_block_comment, - [98544] = 4, + [111785] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5354), 1, - anon_sym_COLON_COLON, - STATE(3661), 2, + ACTIONS(3610), 1, + anon_sym_PLUS, + STATE(4182), 2, sym_line_comment, sym_block_comment, - [98558] = 4, + [111799] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5320), 1, - anon_sym_COLON_COLON, - STATE(3662), 2, + ACTIONS(8279), 1, + anon_sym_SEMI, + STATE(4183), 2, sym_line_comment, sym_block_comment, - [98572] = 4, + [111813] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4306), 1, - anon_sym_COLON_COLON, - STATE(3663), 2, + ACTIONS(8281), 1, + anon_sym_SEMI, + STATE(4184), 2, sym_line_comment, sym_block_comment, - [98586] = 4, + [111827] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7334), 1, - anon_sym_COLON_COLON, - STATE(3664), 2, + ACTIONS(8283), 1, + anon_sym_SEMI, + STATE(4185), 2, sym_line_comment, sym_block_comment, - [98600] = 4, + [111841] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7336), 1, - anon_sym_SEMI, - STATE(3665), 2, + ACTIONS(959), 1, + anon_sym_RBRACK, + STATE(4186), 2, sym_line_comment, sym_block_comment, - [98614] = 4, + [111855] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7338), 1, - sym_identifier, - STATE(3666), 2, + ACTIONS(8285), 1, + anon_sym_SEMI, + STATE(4187), 2, sym_line_comment, sym_block_comment, - [98628] = 4, + [111869] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7340), 1, + ACTIONS(8287), 1, anon_sym_SEMI, - STATE(3667), 2, + STATE(4188), 2, sym_line_comment, sym_block_comment, - [98642] = 4, + [111883] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7342), 1, - sym_identifier, - STATE(3668), 2, + ACTIONS(8289), 1, + anon_sym_COLON, + STATE(4189), 2, sym_line_comment, sym_block_comment, - [98656] = 4, + [111897] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7344), 1, - anon_sym_COLON, - STATE(3669), 2, + ACTIONS(7489), 1, + anon_sym_RBRACE, + STATE(4190), 2, sym_line_comment, sym_block_comment, - [98670] = 4, + [111911] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7346), 1, - anon_sym_LBRACK, - STATE(3670), 2, + ACTIONS(8291), 1, + anon_sym_COLON, + STATE(4191), 2, sym_line_comment, sym_block_comment, - [98684] = 4, + [111925] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7348), 1, + ACTIONS(8293), 1, anon_sym_SEMI, - STATE(3671), 2, + STATE(4192), 2, sym_line_comment, sym_block_comment, - [98698] = 4, + [111939] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7350), 1, + ACTIONS(8295), 1, anon_sym_SEMI, - STATE(3672), 2, + STATE(4193), 2, sym_line_comment, sym_block_comment, - [98712] = 4, + [111953] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6104), 1, - anon_sym_RPAREN, - STATE(3673), 2, + ACTIONS(8297), 1, + anon_sym_SEMI, + STATE(4194), 2, sym_line_comment, sym_block_comment, - [98726] = 4, + [111967] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7352), 1, - sym_identifier, - STATE(3674), 2, + ACTIONS(8299), 1, + anon_sym_COLON, + STATE(4195), 2, sym_line_comment, sym_block_comment, - [98740] = 4, + [111981] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7354), 1, + ACTIONS(8301), 1, anon_sym_SEMI, - STATE(3675), 2, + STATE(4196), 2, sym_line_comment, sym_block_comment, - [98754] = 4, + [111995] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7356), 1, - anon_sym_LBRACK, - STATE(3676), 2, + ACTIONS(5302), 1, + anon_sym_COLON_COLON, + STATE(4197), 2, sym_line_comment, sym_block_comment, - [98768] = 4, + [112009] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7358), 1, - anon_sym_COLON, - STATE(3677), 2, + ACTIONS(7503), 1, + anon_sym_RBRACE, + STATE(4198), 2, sym_line_comment, sym_block_comment, - [98782] = 4, + [112023] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7360), 1, + ACTIONS(8303), 1, anon_sym_COLON, - STATE(3678), 2, + STATE(4199), 2, sym_line_comment, sym_block_comment, - [98796] = 4, + [112037] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7362), 1, - sym_identifier, - STATE(3679), 2, + ACTIONS(8305), 1, + anon_sym_SEMI, + STATE(4200), 2, sym_line_comment, sym_block_comment, - [98810] = 4, + [112051] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7364), 1, - sym_identifier, - STATE(3680), 2, + ACTIONS(4768), 1, + anon_sym_RPAREN, + STATE(4201), 2, sym_line_comment, sym_block_comment, - [98824] = 4, + [112065] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7366), 1, - sym_identifier, - STATE(3681), 2, + ACTIONS(8307), 1, + anon_sym_STAR_SLASH, + STATE(4202), 2, sym_line_comment, sym_block_comment, - [98838] = 4, + [112079] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7368), 1, + ACTIONS(8309), 1, anon_sym_COLON, - STATE(3682), 2, + STATE(4203), 2, sym_line_comment, sym_block_comment, - [98852] = 4, + [112093] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7370), 1, - anon_sym_COLON, - STATE(3683), 2, + ACTIONS(8311), 1, + anon_sym_LBRACK, + STATE(4204), 2, sym_line_comment, sym_block_comment, - [98866] = 4, + [112107] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7372), 1, - sym_identifier, - STATE(3684), 2, + ACTIONS(8313), 1, + anon_sym_COLON, + STATE(4205), 2, sym_line_comment, sym_block_comment, - [98880] = 4, + [112121] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7374), 1, - sym_identifier, - STATE(3685), 2, + ACTIONS(8315), 1, + anon_sym_RBRACE, + STATE(4206), 2, sym_line_comment, sym_block_comment, - [98894] = 4, + [112135] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7376), 1, - sym_identifier, - STATE(3686), 2, + ACTIONS(5122), 1, + anon_sym_fn, + STATE(4207), 2, sym_line_comment, sym_block_comment, - [98908] = 4, + [112149] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5288), 1, - anon_sym_SEMI, - STATE(3687), 2, + ACTIONS(6855), 1, + anon_sym_GT, + STATE(4208), 2, sym_line_comment, sym_block_comment, - [98922] = 4, + [112163] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7378), 1, - anon_sym_COLON, - STATE(3688), 2, + ACTIONS(5418), 1, + anon_sym_COLON_COLON, + STATE(4209), 2, sym_line_comment, sym_block_comment, - [98936] = 4, + [112177] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6144), 1, - anon_sym_GT, - STATE(3689), 2, + ACTIONS(8317), 1, + anon_sym_RPAREN, + STATE(4210), 2, sym_line_comment, sym_block_comment, - [98950] = 4, + [112191] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7380), 1, - sym__raw_string_literal_end, - STATE(3690), 2, + ACTIONS(6288), 1, + anon_sym_RPAREN, + STATE(4211), 2, sym_line_comment, sym_block_comment, - [98964] = 4, + [112205] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6550), 1, - anon_sym_RBRACE, - STATE(3691), 2, + ACTIONS(7581), 1, + anon_sym_EQ, + STATE(4212), 2, sym_line_comment, sym_block_comment, - [98978] = 4, + [112219] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4240), 1, - anon_sym_COLON_COLON, - STATE(3692), 2, + ACTIONS(8319), 1, + ts_builtin_sym_end, + STATE(4213), 2, sym_line_comment, sym_block_comment, - [98992] = 4, + [112233] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7382), 1, - anon_sym_COLON, - STATE(3693), 2, + ACTIONS(8321), 1, + anon_sym_COLON_COLON, + STATE(4214), 2, sym_line_comment, sym_block_comment, - [99006] = 4, + [112247] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1015), 1, - anon_sym_EQ_GT, - STATE(3694), 2, + ACTIONS(7763), 1, + anon_sym_EQ, + STATE(4215), 2, sym_line_comment, sym_block_comment, - [99020] = 4, + [112261] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, - STATE(3695), 2, + ACTIONS(8323), 1, + sym_identifier, + STATE(4216), 2, sym_line_comment, sym_block_comment, - [99034] = 4, + [112275] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3156), 1, - anon_sym_PLUS, - STATE(3696), 2, + ACTIONS(8325), 1, + anon_sym_COLON, + STATE(4217), 2, sym_line_comment, sym_block_comment, - [99048] = 4, + [112289] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7384), 1, - sym_identifier, - STATE(3697), 2, + ACTIONS(5989), 1, + anon_sym_SEMI, + STATE(4218), 2, sym_line_comment, sym_block_comment, - [99062] = 4, + [112303] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7386), 1, - anon_sym_COLON, - STATE(3698), 2, + ACTIONS(8327), 1, + anon_sym_LT2, + STATE(4219), 2, sym_line_comment, sym_block_comment, - [99076] = 4, + [112317] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7388), 1, - anon_sym_SEMI, - STATE(3699), 2, + ACTIONS(8329), 1, + sym__line_doc_content, + STATE(4220), 2, sym_line_comment, sym_block_comment, - [99090] = 4, + [112331] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6888), 1, - anon_sym_SEMI, - STATE(3700), 2, + ACTIONS(8331), 1, + sym_identifier, + STATE(4221), 2, sym_line_comment, sym_block_comment, - [99104] = 4, + [112345] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7390), 1, - anon_sym_SEMI, - STATE(3701), 2, + ACTIONS(8333), 1, + anon_sym_fn, + STATE(4222), 2, + sym_line_comment, + sym_block_comment, + [112359] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(8335), 1, + aux_sym_line_comment_token2, + STATE(4223), 2, sym_line_comment, sym_block_comment, - [99118] = 4, + [112373] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7392), 1, - anon_sym_COLON, - STATE(3702), 2, + ACTIONS(3594), 1, + anon_sym_PLUS, + STATE(4224), 2, sym_line_comment, sym_block_comment, - [99132] = 4, + [112387] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7394), 1, + ACTIONS(8337), 1, anon_sym_SEMI, - STATE(3703), 2, + STATE(4225), 2, sym_line_comment, sym_block_comment, - [99146] = 4, + [112401] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7396), 1, - anon_sym_SEMI, - STATE(3704), 2, + ACTIONS(8339), 1, + anon_sym_COLON, + STATE(4226), 2, sym_line_comment, sym_block_comment, - [99160] = 4, + [112415] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7398), 1, - anon_sym_EQ_GT, - STATE(3705), 2, + ACTIONS(7607), 1, + anon_sym_EQ, + STATE(4227), 2, sym_line_comment, sym_block_comment, - [99174] = 4, + [112429] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7400), 1, - sym_identifier, - STATE(3706), 2, + ACTIONS(5997), 1, + anon_sym_SEMI, + STATE(4228), 2, sym_line_comment, sym_block_comment, - [99188] = 4, + [112443] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6044), 1, - anon_sym_LBRACE, - STATE(3707), 2, + ACTIONS(8341), 1, + anon_sym_fn, + STATE(4229), 2, sym_line_comment, sym_block_comment, - [99202] = 4, + [112457] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5382), 1, + ACTIONS(8343), 1, anon_sym_SEMI, - STATE(3708), 2, + STATE(4230), 2, sym_line_comment, sym_block_comment, - [99216] = 4, + [112471] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7402), 1, - anon_sym_RBRACK, - STATE(3709), 2, + ACTIONS(8345), 1, + anon_sym_COLON_COLON, + STATE(4231), 2, sym_line_comment, sym_block_comment, - [99230] = 4, + [112485] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7404), 1, - anon_sym_SEMI, - STATE(3710), 2, + ACTIONS(8347), 1, + anon_sym_RBRACK, + STATE(4232), 2, sym_line_comment, sym_block_comment, - [99244] = 4, + [112499] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7406), 1, + ACTIONS(8349), 1, anon_sym_COLON, - STATE(3711), 2, + STATE(4233), 2, sym_line_comment, sym_block_comment, - [99258] = 4, + [112513] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - STATE(3712), 2, + ACTIONS(8351), 1, + anon_sym_EQ, + STATE(4234), 2, sym_line_comment, sym_block_comment, - [99272] = 4, + [112527] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7408), 1, - anon_sym_SEMI, - STATE(3713), 2, + ACTIONS(8353), 1, + sym_identifier, + STATE(4235), 2, sym_line_comment, sym_block_comment, - [99286] = 4, + [112541] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5070), 1, - anon_sym_COLON_COLON, - STATE(3714), 2, + ACTIONS(8355), 1, + anon_sym_SEMI, + STATE(4236), 2, sym_line_comment, sym_block_comment, - [99300] = 4, - ACTIONS(3), 1, + [112555] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7410), 1, - aux_sym_line_comment_token2, - STATE(3715), 2, + ACTIONS(8357), 1, + anon_sym_SEMI, + STATE(4237), 2, sym_line_comment, sym_block_comment, - [99314] = 4, + [112569] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, + ACTIONS(8359), 1, anon_sym_SEMI, - STATE(3716), 2, + STATE(4238), 2, sym_line_comment, sym_block_comment, - [99328] = 4, + [112583] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7412), 1, - anon_sym_SEMI, - STATE(3717), 2, + ACTIONS(8361), 1, + anon_sym_COLON, + STATE(4239), 2, sym_line_comment, sym_block_comment, - [99342] = 4, + [112597] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7414), 1, + ACTIONS(8363), 1, anon_sym_EQ, - STATE(3718), 2, + STATE(4240), 2, sym_line_comment, sym_block_comment, - [99356] = 4, + [112611] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6458), 1, - anon_sym_RBRACE, - STATE(3719), 2, + ACTIONS(8365), 1, + anon_sym_COLON, + STATE(4241), 2, sym_line_comment, sym_block_comment, - [99370] = 4, + [112625] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7416), 1, - anon_sym_EQ_GT, - STATE(3720), 2, + ACTIONS(8367), 1, + anon_sym_LBRACK, + STATE(4242), 2, sym_line_comment, sym_block_comment, - [99384] = 4, + [112639] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7418), 1, - sym_identifier, - STATE(3721), 2, + ACTIONS(8369), 1, + anon_sym_LBRACK, + STATE(4243), 2, sym_line_comment, sym_block_comment, - [99398] = 4, + [112653] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7420), 1, - anon_sym_SEMI, - STATE(3722), 2, + ACTIONS(8371), 1, + anon_sym_COLON, + STATE(4244), 2, sym_line_comment, sym_block_comment, - [99412] = 4, + [112667] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7422), 1, + ACTIONS(8373), 1, + sym_identifier, + STATE(4245), 2, + sym_line_comment, + sym_block_comment, + [112681] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(8375), 1, anon_sym_RPAREN, - STATE(3723), 2, + STATE(4246), 2, sym_line_comment, sym_block_comment, - [99426] = 4, + [112695] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7424), 1, - anon_sym_SEMI, - STATE(3724), 2, + ACTIONS(8377), 1, + anon_sym_COLON, + STATE(4247), 2, sym_line_comment, sym_block_comment, - [99440] = 4, + [112709] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7426), 1, - anon_sym_LT2, - STATE(3725), 2, + ACTIONS(8379), 1, + anon_sym_LBRACK, + STATE(4248), 2, sym_line_comment, sym_block_comment, - [99454] = 4, + [112723] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7428), 1, + ACTIONS(8381), 1, anon_sym_COLON, - STATE(3726), 2, + STATE(4249), 2, sym_line_comment, sym_block_comment, - [99468] = 4, + [112737] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7430), 1, - anon_sym_EQ, - STATE(3727), 2, + ACTIONS(7315), 1, + anon_sym_RBRACE, + STATE(4250), 2, sym_line_comment, sym_block_comment, - [99482] = 4, + [112751] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7432), 1, - anon_sym_RPAREN, - STATE(3728), 2, + ACTIONS(7176), 1, + anon_sym_GT, + STATE(4251), 2, sym_line_comment, sym_block_comment, - [99496] = 4, + [112765] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7434), 1, + ACTIONS(8383), 1, anon_sym_COLON, - STATE(3729), 2, + STATE(4252), 2, sym_line_comment, sym_block_comment, - [99510] = 4, + [112779] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7436), 1, - anon_sym_LBRACK, - STATE(3730), 2, + ACTIONS(8385), 1, + anon_sym_COLON, + STATE(4253), 2, sym_line_comment, sym_block_comment, - [99524] = 4, + [112793] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7438), 1, - anon_sym_LBRACK, - STATE(3731), 2, + ACTIONS(8387), 1, + anon_sym_COLON, + STATE(4254), 2, sym_line_comment, sym_block_comment, - [99538] = 4, + [112807] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7440), 1, - anon_sym_COLON, - STATE(3732), 2, + ACTIONS(8389), 1, + sym_identifier, + STATE(4255), 2, sym_line_comment, sym_block_comment, - [99552] = 4, + [112821] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7442), 1, - anon_sym_fn, - STATE(3733), 2, + ACTIONS(8391), 1, + anon_sym_LPAREN, + STATE(4256), 2, sym_line_comment, sym_block_comment, - [99566] = 4, + [112835] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - STATE(3734), 2, + ACTIONS(5154), 1, + anon_sym_fn, + STATE(4257), 2, sym_line_comment, sym_block_comment, - [99580] = 4, + [112849] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7444), 1, - anon_sym_COLON, - STATE(3735), 2, + ACTIONS(8393), 1, + anon_sym_COLON_COLON, + STATE(4258), 2, sym_line_comment, sym_block_comment, - [99594] = 4, + [112863] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7446), 1, - anon_sym_COLON, - STATE(3736), 2, + ACTIONS(4738), 1, + anon_sym_RPAREN, + STATE(4259), 2, sym_line_comment, sym_block_comment, - [99608] = 4, + [112877] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7448), 1, - anon_sym_RBRACE, - STATE(3737), 2, + ACTIONS(8395), 1, + anon_sym_SEMI, + STATE(4260), 2, sym_line_comment, sym_block_comment, - [99622] = 4, + [112891] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7450), 1, - anon_sym_COLON_COLON, - STATE(3738), 2, + ACTIONS(8397), 1, + sym_identifier, + STATE(4261), 2, sym_line_comment, sym_block_comment, - [99636] = 4, + [112905] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7452), 1, - anon_sym_COLON, - STATE(3739), 2, + ACTIONS(7745), 1, + anon_sym_SEMI, + STATE(4262), 2, sym_line_comment, sym_block_comment, - [99650] = 4, + [112919] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7454), 1, - anon_sym_COLON, - STATE(3740), 2, + ACTIONS(8399), 1, + sym_identifier, + STATE(4263), 2, sym_line_comment, sym_block_comment, - [99664] = 4, + [112933] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7456), 1, - anon_sym_COLON, - STATE(3741), 2, + ACTIONS(8401), 1, + sym_identifier, + STATE(4264), 2, sym_line_comment, sym_block_comment, - [99678] = 4, + [112947] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7458), 1, + ACTIONS(8403), 1, sym_identifier, - STATE(3742), 2, + STATE(4265), 2, sym_line_comment, sym_block_comment, - [99692] = 4, + [112961] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4698), 1, - anon_sym_fn, - STATE(3743), 2, + ACTIONS(8405), 1, + sym_identifier, + STATE(4266), 2, sym_line_comment, sym_block_comment, - [99706] = 4, + [112975] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6454), 1, - anon_sym_GT, - STATE(3744), 2, + ACTIONS(8407), 1, + sym_identifier, + STATE(4267), 2, sym_line_comment, sym_block_comment, - [99720] = 4, + [112989] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7460), 1, - anon_sym_SEMI, - STATE(3745), 2, + ACTIONS(5229), 1, + anon_sym_fn, + STATE(4268), 2, sym_line_comment, sym_block_comment, - [99734] = 4, + [113003] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7462), 1, + ACTIONS(8409), 1, sym_identifier, - STATE(3746), 2, + STATE(4269), 2, sym_line_comment, sym_block_comment, - [99748] = 4, + [113017] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7464), 1, + ACTIONS(8411), 1, anon_sym_SEMI, - STATE(3747), 2, + STATE(4270), 2, sym_line_comment, sym_block_comment, - [99762] = 4, + [113031] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7466), 1, - anon_sym_EQ_GT, - STATE(3748), 2, + ACTIONS(8413), 1, + anon_sym_SEMI, + STATE(4271), 2, sym_line_comment, sym_block_comment, - [99776] = 4, + [113045] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7468), 1, - sym__line_doc_content, - STATE(3749), 2, + ACTIONS(8415), 1, + anon_sym_SEMI, + STATE(4272), 2, sym_line_comment, sym_block_comment, - [99790] = 4, + [113059] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7470), 1, + ACTIONS(8417), 1, sym_identifier, - STATE(3750), 2, + STATE(4273), 2, sym_line_comment, sym_block_comment, - [99804] = 4, + [113073] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5547), 1, - anon_sym_RPAREN, - STATE(3751), 2, + ACTIONS(8419), 1, + anon_sym_SEMI, + STATE(4274), 2, sym_line_comment, sym_block_comment, - [99818] = 4, + [113087] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7472), 1, + ACTIONS(8421), 1, anon_sym_SEMI, - STATE(3752), 2, + STATE(4275), 2, sym_line_comment, sym_block_comment, - [99832] = 4, + [113101] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7474), 1, - sym_identifier, - STATE(3753), 2, + ACTIONS(8423), 1, + anon_sym_EQ_GT, + STATE(4276), 2, sym_line_comment, sym_block_comment, - [99846] = 4, + [113115] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7476), 1, - anon_sym_fn, - STATE(3754), 2, + ACTIONS(8425), 1, + sym_identifier, + STATE(4277), 2, sym_line_comment, sym_block_comment, - [99860] = 4, + [113129] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7478), 1, + ACTIONS(8427), 1, anon_sym_SEMI, - STATE(3755), 2, + STATE(4278), 2, sym_line_comment, sym_block_comment, - [99874] = 4, + [113143] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7480), 1, - anon_sym_COLON, - STATE(3756), 2, + ACTIONS(8429), 1, + anon_sym_SEMI, + STATE(4279), 2, sym_line_comment, sym_block_comment, - [99888] = 4, + [113157] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5328), 1, + ACTIONS(5619), 1, anon_sym_COLON_COLON, - STATE(3757), 2, + STATE(4280), 2, sym_line_comment, sym_block_comment, - [99902] = 4, + [113171] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7482), 1, - anon_sym_SEMI, - STATE(3758), 2, + ACTIONS(6544), 1, + anon_sym_RPAREN, + STATE(4281), 2, sym_line_comment, sym_block_comment, - [99916] = 4, + [113185] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 1, + ACTIONS(8431), 1, anon_sym_COLON_COLON, - STATE(3759), 2, - sym_line_comment, - sym_block_comment, - [99930] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7484), 1, - anon_sym_SEMI, - STATE(3760), 2, + STATE(4282), 2, sym_line_comment, sym_block_comment, - [99944] = 4, + [113199] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7486), 1, - anon_sym_SEMI, - STATE(3761), 2, + ACTIONS(8433), 1, + sym_identifier, + STATE(4283), 2, sym_line_comment, sym_block_comment, - [99958] = 4, + [113213] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7488), 1, - anon_sym_COLON, - STATE(3762), 2, + ACTIONS(8435), 1, + anon_sym_fn, + STATE(4284), 2, sym_line_comment, sym_block_comment, - [99972] = 4, + [113227] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7490), 1, + ACTIONS(8437), 1, sym_identifier, - STATE(3763), 2, + STATE(4285), 2, sym_line_comment, sym_block_comment, - [99986] = 4, + [113241] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7492), 1, - sym_identifier, - STATE(3764), 2, + ACTIONS(8439), 1, + sym__raw_string_literal_end, + STATE(4286), 2, sym_line_comment, sym_block_comment, - [100000] = 4, + [113255] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7494), 1, - anon_sym_COLON_COLON, - STATE(3765), 2, + ACTIONS(8441), 1, + sym_identifier, + STATE(4287), 2, sym_line_comment, sym_block_comment, - [100014] = 4, + [113269] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7496), 1, - anon_sym_fn, - STATE(3766), 2, + ACTIONS(7551), 1, + anon_sym_RBRACE, + STATE(4288), 2, sym_line_comment, sym_block_comment, - [100028] = 4, + [113283] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7498), 1, - sym_identifier, - STATE(3767), 2, + ACTIONS(8443), 1, + anon_sym_SEMI, + STATE(4289), 2, sym_line_comment, sym_block_comment, - [100042] = 4, + [113297] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7500), 1, - sym_identifier, - STATE(3768), 2, + ACTIONS(8445), 1, + anon_sym_RBRACE, + STATE(4290), 2, sym_line_comment, sym_block_comment, - [100056] = 4, + [113311] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7502), 1, + ACTIONS(8447), 1, sym_identifier, - STATE(3769), 2, + STATE(4291), 2, sym_line_comment, sym_block_comment, - [100070] = 4, + [113325] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7504), 1, + ACTIONS(8449), 1, anon_sym_SEMI, - STATE(3770), 2, + STATE(4292), 2, sym_line_comment, sym_block_comment, - [100084] = 4, + [113339] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7506), 1, - sym_identifier, - STATE(3771), 2, + ACTIONS(6562), 1, + anon_sym_RPAREN, + STATE(4293), 2, sym_line_comment, sym_block_comment, - [100098] = 4, + [113353] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7508), 1, - sym_identifier, - STATE(3772), 2, + ACTIONS(8451), 1, + anon_sym_EQ_GT, + STATE(4294), 2, sym_line_comment, sym_block_comment, - [100112] = 4, + [113367] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6220), 1, - anon_sym_RBRACE, - STATE(3773), 2, + ACTIONS(8453), 1, + sym_identifier, + STATE(4295), 2, sym_line_comment, sym_block_comment, - [100126] = 4, + [113381] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7510), 1, + ACTIONS(8455), 1, anon_sym_fn, - STATE(3774), 2, + STATE(4296), 2, sym_line_comment, sym_block_comment, - [100140] = 4, + [113395] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4312), 1, - anon_sym_RPAREN, - STATE(3775), 2, + ACTIONS(7470), 1, + anon_sym_RBRACE, + STATE(4297), 2, sym_line_comment, sym_block_comment, - [100154] = 4, + [113409] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7512), 1, + ACTIONS(8457), 1, anon_sym_fn, - STATE(3776), 2, + STATE(4298), 2, sym_line_comment, sym_block_comment, - [100168] = 4, + [113423] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7514), 1, - anon_sym_RBRACE, - STATE(3777), 2, + ACTIONS(8459), 1, + anon_sym_COLON_COLON, + STATE(4299), 2, sym_line_comment, sym_block_comment, - [100182] = 1, - ACTIONS(7516), 1, + [113437] = 1, + ACTIONS(8461), 1, ts_builtin_sym_end, - [100186] = 1, - ACTIONS(7518), 1, + [113441] = 1, + ACTIONS(8463), 1, ts_builtin_sym_end, - [100190] = 1, - ACTIONS(7520), 1, + [113445] = 1, + ACTIONS(8465), 1, ts_builtin_sym_end, - [100194] = 1, - ACTIONS(7522), 1, + [113449] = 1, + ACTIONS(8467), 1, ts_builtin_sym_end, - [100198] = 1, - ACTIONS(7524), 1, + [113453] = 1, + ACTIONS(8469), 1, ts_builtin_sym_end, - [100202] = 1, - ACTIONS(7526), 1, + [113457] = 1, + ACTIONS(8471), 1, ts_builtin_sym_end, - [100206] = 1, - ACTIONS(7528), 1, + [113461] = 1, + ACTIONS(8473), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1054)] = 0, - [SMALL_STATE(1055)] = 75, - [SMALL_STATE(1056)] = 148, - [SMALL_STATE(1057)] = 219, - [SMALL_STATE(1058)] = 319, - [SMALL_STATE(1059)] = 419, - [SMALL_STATE(1060)] = 519, - [SMALL_STATE(1061)] = 598, - [SMALL_STATE(1062)] = 675, - [SMALL_STATE(1063)] = 752, - [SMALL_STATE(1064)] = 829, - [SMALL_STATE(1065)] = 897, - [SMALL_STATE(1066)] = 961, - [SMALL_STATE(1067)] = 1025, - [SMALL_STATE(1068)] = 1089, - [SMALL_STATE(1069)] = 1153, - [SMALL_STATE(1070)] = 1217, - [SMALL_STATE(1071)] = 1281, - [SMALL_STATE(1072)] = 1345, - [SMALL_STATE(1073)] = 1419, - [SMALL_STATE(1074)] = 1483, - [SMALL_STATE(1075)] = 1547, - [SMALL_STATE(1076)] = 1610, - [SMALL_STATE(1077)] = 1711, - [SMALL_STATE(1078)] = 1812, - [SMALL_STATE(1079)] = 1879, - [SMALL_STATE(1080)] = 1946, - [SMALL_STATE(1081)] = 2013, - [SMALL_STATE(1082)] = 2076, - [SMALL_STATE(1083)] = 2143, - [SMALL_STATE(1084)] = 2206, - [SMALL_STATE(1085)] = 2273, - [SMALL_STATE(1086)] = 2344, - [SMALL_STATE(1087)] = 2415, - [SMALL_STATE(1088)] = 2486, - [SMALL_STATE(1089)] = 2587, - [SMALL_STATE(1090)] = 2650, - [SMALL_STATE(1091)] = 2721, - [SMALL_STATE(1092)] = 2784, - [SMALL_STATE(1093)] = 2846, - [SMALL_STATE(1094)] = 2908, - [SMALL_STATE(1095)] = 2970, - [SMALL_STATE(1096)] = 3034, - [SMALL_STATE(1097)] = 3098, - [SMALL_STATE(1098)] = 3160, - [SMALL_STATE(1099)] = 3222, - [SMALL_STATE(1100)] = 3284, - [SMALL_STATE(1101)] = 3354, - [SMALL_STATE(1102)] = 3422, - [SMALL_STATE(1103)] = 3484, - [SMALL_STATE(1104)] = 3546, - [SMALL_STATE(1105)] = 3621, - [SMALL_STATE(1106)] = 3684, - [SMALL_STATE(1107)] = 3745, - [SMALL_STATE(1108)] = 3808, - [SMALL_STATE(1109)] = 3869, - [SMALL_STATE(1110)] = 3930, - [SMALL_STATE(1111)] = 3993, - [SMALL_STATE(1112)] = 4054, - [SMALL_STATE(1113)] = 4115, - [SMALL_STATE(1114)] = 4176, - [SMALL_STATE(1115)] = 4237, - [SMALL_STATE(1116)] = 4298, - [SMALL_STATE(1117)] = 4391, - [SMALL_STATE(1118)] = 4454, - [SMALL_STATE(1119)] = 4517, - [SMALL_STATE(1120)] = 4580, - [SMALL_STATE(1121)] = 4641, - [SMALL_STATE(1122)] = 4702, - [SMALL_STATE(1123)] = 4795, - [SMALL_STATE(1124)] = 4856, - [SMALL_STATE(1125)] = 4949, - [SMALL_STATE(1126)] = 5010, - [SMALL_STATE(1127)] = 5071, - [SMALL_STATE(1128)] = 5132, - [SMALL_STATE(1129)] = 5195, - [SMALL_STATE(1130)] = 5258, - [SMALL_STATE(1131)] = 5321, - [SMALL_STATE(1132)] = 5384, - [SMALL_STATE(1133)] = 5447, - [SMALL_STATE(1134)] = 5508, - [SMALL_STATE(1135)] = 5573, - [SMALL_STATE(1136)] = 5634, - [SMALL_STATE(1137)] = 5695, - [SMALL_STATE(1138)] = 5756, - [SMALL_STATE(1139)] = 5817, - [SMALL_STATE(1140)] = 5878, - [SMALL_STATE(1141)] = 5939, - [SMALL_STATE(1142)] = 6000, - [SMALL_STATE(1143)] = 6061, - [SMALL_STATE(1144)] = 6122, - [SMALL_STATE(1145)] = 6183, - [SMALL_STATE(1146)] = 6244, - [SMALL_STATE(1147)] = 6305, - [SMALL_STATE(1148)] = 6366, - [SMALL_STATE(1149)] = 6427, - [SMALL_STATE(1150)] = 6488, - [SMALL_STATE(1151)] = 6549, - [SMALL_STATE(1152)] = 6610, - [SMALL_STATE(1153)] = 6671, - [SMALL_STATE(1154)] = 6734, - [SMALL_STATE(1155)] = 6797, - [SMALL_STATE(1156)] = 6860, - [SMALL_STATE(1157)] = 6921, - [SMALL_STATE(1158)] = 6982, - [SMALL_STATE(1159)] = 7043, - [SMALL_STATE(1160)] = 7104, - [SMALL_STATE(1161)] = 7165, - [SMALL_STATE(1162)] = 7226, - [SMALL_STATE(1163)] = 7287, - [SMALL_STATE(1164)] = 7348, - [SMALL_STATE(1165)] = 7409, - [SMALL_STATE(1166)] = 7470, - [SMALL_STATE(1167)] = 7531, - [SMALL_STATE(1168)] = 7592, - [SMALL_STATE(1169)] = 7653, - [SMALL_STATE(1170)] = 7714, - [SMALL_STATE(1171)] = 7775, - [SMALL_STATE(1172)] = 7836, - [SMALL_STATE(1173)] = 7897, - [SMALL_STATE(1174)] = 7958, - [SMALL_STATE(1175)] = 8019, - [SMALL_STATE(1176)] = 8080, - [SMALL_STATE(1177)] = 8141, - [SMALL_STATE(1178)] = 8202, - [SMALL_STATE(1179)] = 8263, - [SMALL_STATE(1180)] = 8324, - [SMALL_STATE(1181)] = 8385, - [SMALL_STATE(1182)] = 8446, - [SMALL_STATE(1183)] = 8507, - [SMALL_STATE(1184)] = 8568, - [SMALL_STATE(1185)] = 8629, - [SMALL_STATE(1186)] = 8690, - [SMALL_STATE(1187)] = 8751, - [SMALL_STATE(1188)] = 8812, - [SMALL_STATE(1189)] = 8873, - [SMALL_STATE(1190)] = 8934, - [SMALL_STATE(1191)] = 8995, - [SMALL_STATE(1192)] = 9056, - [SMALL_STATE(1193)] = 9117, - [SMALL_STATE(1194)] = 9178, - [SMALL_STATE(1195)] = 9241, - [SMALL_STATE(1196)] = 9304, - [SMALL_STATE(1197)] = 9365, - [SMALL_STATE(1198)] = 9426, - [SMALL_STATE(1199)] = 9487, - [SMALL_STATE(1200)] = 9548, - [SMALL_STATE(1201)] = 9609, - [SMALL_STATE(1202)] = 9670, - [SMALL_STATE(1203)] = 9731, - [SMALL_STATE(1204)] = 9792, - [SMALL_STATE(1205)] = 9853, - [SMALL_STATE(1206)] = 9914, - [SMALL_STATE(1207)] = 9975, - [SMALL_STATE(1208)] = 10036, - [SMALL_STATE(1209)] = 10097, - [SMALL_STATE(1210)] = 10158, - [SMALL_STATE(1211)] = 10219, - [SMALL_STATE(1212)] = 10280, - [SMALL_STATE(1213)] = 10341, - [SMALL_STATE(1214)] = 10402, - [SMALL_STATE(1215)] = 10463, - [SMALL_STATE(1216)] = 10524, - [SMALL_STATE(1217)] = 10585, - [SMALL_STATE(1218)] = 10646, - [SMALL_STATE(1219)] = 10707, - [SMALL_STATE(1220)] = 10768, - [SMALL_STATE(1221)] = 10829, - [SMALL_STATE(1222)] = 10890, - [SMALL_STATE(1223)] = 10951, - [SMALL_STATE(1224)] = 11012, - [SMALL_STATE(1225)] = 11073, - [SMALL_STATE(1226)] = 11134, - [SMALL_STATE(1227)] = 11195, - [SMALL_STATE(1228)] = 11256, - [SMALL_STATE(1229)] = 11317, - [SMALL_STATE(1230)] = 11378, - [SMALL_STATE(1231)] = 11439, - [SMALL_STATE(1232)] = 11500, - [SMALL_STATE(1233)] = 11561, - [SMALL_STATE(1234)] = 11622, - [SMALL_STATE(1235)] = 11683, - [SMALL_STATE(1236)] = 11744, - [SMALL_STATE(1237)] = 11805, - [SMALL_STATE(1238)] = 11866, - [SMALL_STATE(1239)] = 11927, - [SMALL_STATE(1240)] = 11988, - [SMALL_STATE(1241)] = 12049, - [SMALL_STATE(1242)] = 12110, - [SMALL_STATE(1243)] = 12171, - [SMALL_STATE(1244)] = 12232, - [SMALL_STATE(1245)] = 12293, - [SMALL_STATE(1246)] = 12354, - [SMALL_STATE(1247)] = 12415, - [SMALL_STATE(1248)] = 12476, - [SMALL_STATE(1249)] = 12537, - [SMALL_STATE(1250)] = 12598, - [SMALL_STATE(1251)] = 12659, - [SMALL_STATE(1252)] = 12720, - [SMALL_STATE(1253)] = 12781, - [SMALL_STATE(1254)] = 12842, - [SMALL_STATE(1255)] = 12903, - [SMALL_STATE(1256)] = 12964, - [SMALL_STATE(1257)] = 13025, - [SMALL_STATE(1258)] = 13086, - [SMALL_STATE(1259)] = 13147, - [SMALL_STATE(1260)] = 13208, - [SMALL_STATE(1261)] = 13269, - [SMALL_STATE(1262)] = 13330, - [SMALL_STATE(1263)] = 13391, - [SMALL_STATE(1264)] = 13452, - [SMALL_STATE(1265)] = 13513, - [SMALL_STATE(1266)] = 13574, - [SMALL_STATE(1267)] = 13635, - [SMALL_STATE(1268)] = 13696, - [SMALL_STATE(1269)] = 13757, - [SMALL_STATE(1270)] = 13818, - [SMALL_STATE(1271)] = 13879, - [SMALL_STATE(1272)] = 13940, - [SMALL_STATE(1273)] = 14001, - [SMALL_STATE(1274)] = 14062, - [SMALL_STATE(1275)] = 14123, - [SMALL_STATE(1276)] = 14184, - [SMALL_STATE(1277)] = 14247, - [SMALL_STATE(1278)] = 14308, - [SMALL_STATE(1279)] = 14369, - [SMALL_STATE(1280)] = 14430, - [SMALL_STATE(1281)] = 14491, - [SMALL_STATE(1282)] = 14552, - [SMALL_STATE(1283)] = 14613, - [SMALL_STATE(1284)] = 14674, - [SMALL_STATE(1285)] = 14735, - [SMALL_STATE(1286)] = 14796, - [SMALL_STATE(1287)] = 14857, - [SMALL_STATE(1288)] = 14918, - [SMALL_STATE(1289)] = 14979, - [SMALL_STATE(1290)] = 15040, - [SMALL_STATE(1291)] = 15101, - [SMALL_STATE(1292)] = 15162, - [SMALL_STATE(1293)] = 15223, - [SMALL_STATE(1294)] = 15284, - [SMALL_STATE(1295)] = 15345, - [SMALL_STATE(1296)] = 15406, - [SMALL_STATE(1297)] = 15467, - [SMALL_STATE(1298)] = 15528, - [SMALL_STATE(1299)] = 15589, - [SMALL_STATE(1300)] = 15650, - [SMALL_STATE(1301)] = 15711, - [SMALL_STATE(1302)] = 15772, - [SMALL_STATE(1303)] = 15833, - [SMALL_STATE(1304)] = 15894, - [SMALL_STATE(1305)] = 15955, - [SMALL_STATE(1306)] = 16016, - [SMALL_STATE(1307)] = 16077, - [SMALL_STATE(1308)] = 16138, - [SMALL_STATE(1309)] = 16199, - [SMALL_STATE(1310)] = 16260, - [SMALL_STATE(1311)] = 16321, - [SMALL_STATE(1312)] = 16382, - [SMALL_STATE(1313)] = 16443, - [SMALL_STATE(1314)] = 16504, - [SMALL_STATE(1315)] = 16565, - [SMALL_STATE(1316)] = 16626, - [SMALL_STATE(1317)] = 16687, - [SMALL_STATE(1318)] = 16748, - [SMALL_STATE(1319)] = 16809, - [SMALL_STATE(1320)] = 16870, - [SMALL_STATE(1321)] = 16931, - [SMALL_STATE(1322)] = 16992, - [SMALL_STATE(1323)] = 17053, - [SMALL_STATE(1324)] = 17114, - [SMALL_STATE(1325)] = 17175, - [SMALL_STATE(1326)] = 17236, - [SMALL_STATE(1327)] = 17297, - [SMALL_STATE(1328)] = 17358, - [SMALL_STATE(1329)] = 17419, - [SMALL_STATE(1330)] = 17480, - [SMALL_STATE(1331)] = 17541, - [SMALL_STATE(1332)] = 17602, - [SMALL_STATE(1333)] = 17663, - [SMALL_STATE(1334)] = 17724, - [SMALL_STATE(1335)] = 17785, - [SMALL_STATE(1336)] = 17846, - [SMALL_STATE(1337)] = 17907, - [SMALL_STATE(1338)] = 17968, - [SMALL_STATE(1339)] = 18029, - [SMALL_STATE(1340)] = 18090, - [SMALL_STATE(1341)] = 18151, - [SMALL_STATE(1342)] = 18212, - [SMALL_STATE(1343)] = 18273, - [SMALL_STATE(1344)] = 18334, - [SMALL_STATE(1345)] = 18395, - [SMALL_STATE(1346)] = 18456, - [SMALL_STATE(1347)] = 18517, - [SMALL_STATE(1348)] = 18578, - [SMALL_STATE(1349)] = 18639, - [SMALL_STATE(1350)] = 18700, - [SMALL_STATE(1351)] = 18761, - [SMALL_STATE(1352)] = 18822, - [SMALL_STATE(1353)] = 18883, - [SMALL_STATE(1354)] = 18944, - [SMALL_STATE(1355)] = 19005, - [SMALL_STATE(1356)] = 19066, - [SMALL_STATE(1357)] = 19127, - [SMALL_STATE(1358)] = 19188, - [SMALL_STATE(1359)] = 19249, - [SMALL_STATE(1360)] = 19310, - [SMALL_STATE(1361)] = 19371, - [SMALL_STATE(1362)] = 19432, - [SMALL_STATE(1363)] = 19493, - [SMALL_STATE(1364)] = 19554, - [SMALL_STATE(1365)] = 19615, - [SMALL_STATE(1366)] = 19676, - [SMALL_STATE(1367)] = 19737, - [SMALL_STATE(1368)] = 19798, - [SMALL_STATE(1369)] = 19859, - [SMALL_STATE(1370)] = 19920, - [SMALL_STATE(1371)] = 19981, - [SMALL_STATE(1372)] = 20042, - [SMALL_STATE(1373)] = 20103, - [SMALL_STATE(1374)] = 20164, - [SMALL_STATE(1375)] = 20225, - [SMALL_STATE(1376)] = 20286, - [SMALL_STATE(1377)] = 20347, - [SMALL_STATE(1378)] = 20408, - [SMALL_STATE(1379)] = 20469, - [SMALL_STATE(1380)] = 20530, - [SMALL_STATE(1381)] = 20591, - [SMALL_STATE(1382)] = 20652, - [SMALL_STATE(1383)] = 20713, - [SMALL_STATE(1384)] = 20774, - [SMALL_STATE(1385)] = 20835, - [SMALL_STATE(1386)] = 20896, - [SMALL_STATE(1387)] = 20957, - [SMALL_STATE(1388)] = 21018, - [SMALL_STATE(1389)] = 21079, - [SMALL_STATE(1390)] = 21140, - [SMALL_STATE(1391)] = 21201, - [SMALL_STATE(1392)] = 21262, - [SMALL_STATE(1393)] = 21323, - [SMALL_STATE(1394)] = 21384, - [SMALL_STATE(1395)] = 21445, - [SMALL_STATE(1396)] = 21506, - [SMALL_STATE(1397)] = 21567, - [SMALL_STATE(1398)] = 21628, - [SMALL_STATE(1399)] = 21689, - [SMALL_STATE(1400)] = 21750, - [SMALL_STATE(1401)] = 21811, - [SMALL_STATE(1402)] = 21872, - [SMALL_STATE(1403)] = 21933, - [SMALL_STATE(1404)] = 21994, - [SMALL_STATE(1405)] = 22055, - [SMALL_STATE(1406)] = 22116, - [SMALL_STATE(1407)] = 22177, - [SMALL_STATE(1408)] = 22238, - [SMALL_STATE(1409)] = 22299, - [SMALL_STATE(1410)] = 22364, - [SMALL_STATE(1411)] = 22425, - [SMALL_STATE(1412)] = 22486, - [SMALL_STATE(1413)] = 22547, - [SMALL_STATE(1414)] = 22608, - [SMALL_STATE(1415)] = 22669, - [SMALL_STATE(1416)] = 22730, - [SMALL_STATE(1417)] = 22795, - [SMALL_STATE(1418)] = 22870, - [SMALL_STATE(1419)] = 22933, - [SMALL_STATE(1420)] = 22994, - [SMALL_STATE(1421)] = 23068, - [SMALL_STATE(1422)] = 23128, - [SMALL_STATE(1423)] = 23188, - [SMALL_STATE(1424)] = 23248, - [SMALL_STATE(1425)] = 23308, - [SMALL_STATE(1426)] = 23368, - [SMALL_STATE(1427)] = 23428, - [SMALL_STATE(1428)] = 23488, - [SMALL_STATE(1429)] = 23548, - [SMALL_STATE(1430)] = 23608, - [SMALL_STATE(1431)] = 23670, - [SMALL_STATE(1432)] = 23730, - [SMALL_STATE(1433)] = 23790, - [SMALL_STATE(1434)] = 23850, - [SMALL_STATE(1435)] = 23916, - [SMALL_STATE(1436)] = 23976, - [SMALL_STATE(1437)] = 24036, - [SMALL_STATE(1438)] = 24096, - [SMALL_STATE(1439)] = 24162, - [SMALL_STATE(1440)] = 24222, - [SMALL_STATE(1441)] = 24282, - [SMALL_STATE(1442)] = 24342, - [SMALL_STATE(1443)] = 24402, - [SMALL_STATE(1444)] = 24462, - [SMALL_STATE(1445)] = 24522, - [SMALL_STATE(1446)] = 24582, - [SMALL_STATE(1447)] = 24642, - [SMALL_STATE(1448)] = 24708, - [SMALL_STATE(1449)] = 24768, - [SMALL_STATE(1450)] = 24828, - [SMALL_STATE(1451)] = 24888, - [SMALL_STATE(1452)] = 24948, - [SMALL_STATE(1453)] = 25008, - [SMALL_STATE(1454)] = 25068, - [SMALL_STATE(1455)] = 25128, - [SMALL_STATE(1456)] = 25188, - [SMALL_STATE(1457)] = 25248, - [SMALL_STATE(1458)] = 25308, - [SMALL_STATE(1459)] = 25368, - [SMALL_STATE(1460)] = 25428, - [SMALL_STATE(1461)] = 25488, - [SMALL_STATE(1462)] = 25548, - [SMALL_STATE(1463)] = 25608, - [SMALL_STATE(1464)] = 25668, - [SMALL_STATE(1465)] = 25728, - [SMALL_STATE(1466)] = 25788, - [SMALL_STATE(1467)] = 25848, - [SMALL_STATE(1468)] = 25908, - [SMALL_STATE(1469)] = 25968, - [SMALL_STATE(1470)] = 26028, - [SMALL_STATE(1471)] = 26088, - [SMALL_STATE(1472)] = 26148, - [SMALL_STATE(1473)] = 26208, - [SMALL_STATE(1474)] = 26268, - [SMALL_STATE(1475)] = 26328, - [SMALL_STATE(1476)] = 26388, - [SMALL_STATE(1477)] = 26448, - [SMALL_STATE(1478)] = 26508, - [SMALL_STATE(1479)] = 26568, - [SMALL_STATE(1480)] = 26628, - [SMALL_STATE(1481)] = 26688, - [SMALL_STATE(1482)] = 26748, - [SMALL_STATE(1483)] = 26844, - [SMALL_STATE(1484)] = 26904, - [SMALL_STATE(1485)] = 26964, - [SMALL_STATE(1486)] = 27024, - [SMALL_STATE(1487)] = 27084, - [SMALL_STATE(1488)] = 27144, - [SMALL_STATE(1489)] = 27206, - [SMALL_STATE(1490)] = 27266, - [SMALL_STATE(1491)] = 27326, - [SMALL_STATE(1492)] = 27386, - [SMALL_STATE(1493)] = 27446, - [SMALL_STATE(1494)] = 27506, - [SMALL_STATE(1495)] = 27566, - [SMALL_STATE(1496)] = 27634, - [SMALL_STATE(1497)] = 27694, - [SMALL_STATE(1498)] = 27754, - [SMALL_STATE(1499)] = 27814, - [SMALL_STATE(1500)] = 27874, - [SMALL_STATE(1501)] = 27934, - [SMALL_STATE(1502)] = 27994, - [SMALL_STATE(1503)] = 28054, - [SMALL_STATE(1504)] = 28114, - [SMALL_STATE(1505)] = 28174, - [SMALL_STATE(1506)] = 28234, - [SMALL_STATE(1507)] = 28294, - [SMALL_STATE(1508)] = 28354, - [SMALL_STATE(1509)] = 28418, - [SMALL_STATE(1510)] = 28478, - [SMALL_STATE(1511)] = 28538, - [SMALL_STATE(1512)] = 28598, - [SMALL_STATE(1513)] = 28658, - [SMALL_STATE(1514)] = 28718, - [SMALL_STATE(1515)] = 28778, - [SMALL_STATE(1516)] = 28838, - [SMALL_STATE(1517)] = 28898, - [SMALL_STATE(1518)] = 28958, - [SMALL_STATE(1519)] = 29018, - [SMALL_STATE(1520)] = 29078, - [SMALL_STATE(1521)] = 29138, - [SMALL_STATE(1522)] = 29198, - [SMALL_STATE(1523)] = 29258, - [SMALL_STATE(1524)] = 29318, - [SMALL_STATE(1525)] = 29378, - [SMALL_STATE(1526)] = 29438, - [SMALL_STATE(1527)] = 29498, - [SMALL_STATE(1528)] = 29558, - [SMALL_STATE(1529)] = 29618, - [SMALL_STATE(1530)] = 29678, - [SMALL_STATE(1531)] = 29738, - [SMALL_STATE(1532)] = 29802, - [SMALL_STATE(1533)] = 29862, - [SMALL_STATE(1534)] = 29922, - [SMALL_STATE(1535)] = 29982, - [SMALL_STATE(1536)] = 30042, - [SMALL_STATE(1537)] = 30102, - [SMALL_STATE(1538)] = 30162, - [SMALL_STATE(1539)] = 30228, - [SMALL_STATE(1540)] = 30288, - [SMALL_STATE(1541)] = 30387, - [SMALL_STATE(1542)] = 30486, - [SMALL_STATE(1543)] = 30555, - [SMALL_STATE(1544)] = 30626, - [SMALL_STATE(1545)] = 30687, - [SMALL_STATE(1546)] = 30748, - [SMALL_STATE(1547)] = 30847, - [SMALL_STATE(1548)] = 30946, - [SMALL_STATE(1549)] = 31016, - [SMALL_STATE(1550)] = 31098, - [SMALL_STATE(1551)] = 31182, - [SMALL_STATE(1552)] = 31272, - [SMALL_STATE(1553)] = 31342, - [SMALL_STATE(1554)] = 31412, - [SMALL_STATE(1555)] = 31482, - [SMALL_STATE(1556)] = 31572, - [SMALL_STATE(1557)] = 31630, - [SMALL_STATE(1558)] = 31720, - [SMALL_STATE(1559)] = 31798, - [SMALL_STATE(1560)] = 31856, - [SMALL_STATE(1561)] = 31948, - [SMALL_STATE(1562)] = 32006, - [SMALL_STATE(1563)] = 32066, - [SMALL_STATE(1564)] = 32156, - [SMALL_STATE(1565)] = 32222, - [SMALL_STATE(1566)] = 32308, - [SMALL_STATE(1567)] = 32394, - [SMALL_STATE(1568)] = 32480, - [SMALL_STATE(1569)] = 32570, - [SMALL_STATE(1570)] = 32656, - [SMALL_STATE(1571)] = 32742, - [SMALL_STATE(1572)] = 32828, - [SMALL_STATE(1573)] = 32920, - [SMALL_STATE(1574)] = 33010, - [SMALL_STATE(1575)] = 33102, - [SMALL_STATE(1576)] = 33188, - [SMALL_STATE(1577)] = 33256, - [SMALL_STATE(1578)] = 33342, - [SMALL_STATE(1579)] = 33416, - [SMALL_STATE(1580)] = 33488, - [SMALL_STATE(1581)] = 33564, - [SMALL_STATE(1582)] = 33624, - [SMALL_STATE(1583)] = 33687, - [SMALL_STATE(1584)] = 33752, - [SMALL_STATE(1585)] = 33819, - [SMALL_STATE(1586)] = 33882, - [SMALL_STATE(1587)] = 33942, - [SMALL_STATE(1588)] = 34000, - [SMALL_STATE(1589)] = 34058, - [SMALL_STATE(1590)] = 34118, - [SMALL_STATE(1591)] = 34176, - [SMALL_STATE(1592)] = 34236, - [SMALL_STATE(1593)] = 34292, - [SMALL_STATE(1594)] = 34348, - [SMALL_STATE(1595)] = 34408, - [SMALL_STATE(1596)] = 34468, - [SMALL_STATE(1597)] = 34528, - [SMALL_STATE(1598)] = 34592, - [SMALL_STATE(1599)] = 34656, - [SMALL_STATE(1600)] = 34712, - [SMALL_STATE(1601)] = 34776, - [SMALL_STATE(1602)] = 34836, - [SMALL_STATE(1603)] = 34894, - [SMALL_STATE(1604)] = 34958, - [SMALL_STATE(1605)] = 35014, - [SMALL_STATE(1606)] = 35103, - [SMALL_STATE(1607)] = 35162, - [SMALL_STATE(1608)] = 35251, - [SMALL_STATE(1609)] = 35308, - [SMALL_STATE(1610)] = 35365, - [SMALL_STATE(1611)] = 35460, - [SMALL_STATE(1612)] = 35515, - [SMALL_STATE(1613)] = 35570, - [SMALL_STATE(1614)] = 35625, - [SMALL_STATE(1615)] = 35720, - [SMALL_STATE(1616)] = 35779, - [SMALL_STATE(1617)] = 35836, - [SMALL_STATE(1618)] = 35891, - [SMALL_STATE(1619)] = 35946, - [SMALL_STATE(1620)] = 36041, - [SMALL_STATE(1621)] = 36100, - [SMALL_STATE(1622)] = 36155, - [SMALL_STATE(1623)] = 36250, - [SMALL_STATE(1624)] = 36309, - [SMALL_STATE(1625)] = 36404, - [SMALL_STATE(1626)] = 36499, - [SMALL_STATE(1627)] = 36594, - [SMALL_STATE(1628)] = 36689, - [SMALL_STATE(1629)] = 36784, - [SMALL_STATE(1630)] = 36879, - [SMALL_STATE(1631)] = 36936, - [SMALL_STATE(1632)] = 36993, - [SMALL_STATE(1633)] = 37048, - [SMALL_STATE(1634)] = 37105, - [SMALL_STATE(1635)] = 37194, - [SMALL_STATE(1636)] = 37249, - [SMALL_STATE(1637)] = 37306, - [SMALL_STATE(1638)] = 37401, - [SMALL_STATE(1639)] = 37490, - [SMALL_STATE(1640)] = 37585, - [SMALL_STATE(1641)] = 37641, - [SMALL_STATE(1642)] = 37695, - [SMALL_STATE(1643)] = 37749, - [SMALL_STATE(1644)] = 37803, - [SMALL_STATE(1645)] = 37857, - [SMALL_STATE(1646)] = 37915, - [SMALL_STATE(1647)] = 37969, - [SMALL_STATE(1648)] = 38051, - [SMALL_STATE(1649)] = 38137, - [SMALL_STATE(1650)] = 38223, - [SMALL_STATE(1651)] = 38309, - [SMALL_STATE(1652)] = 38363, - [SMALL_STATE(1653)] = 38417, - [SMALL_STATE(1654)] = 38473, - [SMALL_STATE(1655)] = 38565, - [SMALL_STATE(1656)] = 38657, - [SMALL_STATE(1657)] = 38737, - [SMALL_STATE(1658)] = 38793, - [SMALL_STATE(1659)] = 38885, - [SMALL_STATE(1660)] = 38939, - [SMALL_STATE(1661)] = 38995, - [SMALL_STATE(1662)] = 39049, - [SMALL_STATE(1663)] = 39105, - [SMALL_STATE(1664)] = 39177, - [SMALL_STATE(1665)] = 39269, - [SMALL_STATE(1666)] = 39355, - [SMALL_STATE(1667)] = 39411, - [SMALL_STATE(1668)] = 39489, - [SMALL_STATE(1669)] = 39557, - [SMALL_STATE(1670)] = 39613, - [SMALL_STATE(1671)] = 39679, - [SMALL_STATE(1672)] = 39735, - [SMALL_STATE(1673)] = 39823, - [SMALL_STATE(1674)] = 39879, - [SMALL_STATE(1675)] = 39971, - [SMALL_STATE(1676)] = 40059, - [SMALL_STATE(1677)] = 40115, - [SMALL_STATE(1678)] = 40203, - [SMALL_STATE(1679)] = 40291, - [SMALL_STATE(1680)] = 40347, - [SMALL_STATE(1681)] = 40433, - [SMALL_STATE(1682)] = 40525, - [SMALL_STATE(1683)] = 40589, - [SMALL_STATE(1684)] = 40643, - [SMALL_STATE(1685)] = 40729, - [SMALL_STATE(1686)] = 40783, - [SMALL_STATE(1687)] = 40837, - [SMALL_STATE(1688)] = 40911, - [SMALL_STATE(1689)] = 40999, - [SMALL_STATE(1690)] = 41055, - [SMALL_STATE(1691)] = 41109, - [SMALL_STATE(1692)] = 41163, - [SMALL_STATE(1693)] = 41217, - [SMALL_STATE(1694)] = 41287, - [SMALL_STATE(1695)] = 41341, - [SMALL_STATE(1696)] = 41397, - [SMALL_STATE(1697)] = 41453, - [SMALL_STATE(1698)] = 41509, - [SMALL_STATE(1699)] = 41565, - [SMALL_STATE(1700)] = 41647, - [SMALL_STATE(1701)] = 41727, - [SMALL_STATE(1702)] = 41816, - [SMALL_STATE(1703)] = 41869, - [SMALL_STATE(1704)] = 41922, - [SMALL_STATE(1705)] = 41975, - [SMALL_STATE(1706)] = 42062, - [SMALL_STATE(1707)] = 42115, - [SMALL_STATE(1708)] = 42202, - [SMALL_STATE(1709)] = 42289, - [SMALL_STATE(1710)] = 42342, - [SMALL_STATE(1711)] = 42395, - [SMALL_STATE(1712)] = 42448, - [SMALL_STATE(1713)] = 42501, - [SMALL_STATE(1714)] = 42554, - [SMALL_STATE(1715)] = 42607, - [SMALL_STATE(1716)] = 42660, - [SMALL_STATE(1717)] = 42713, - [SMALL_STATE(1718)] = 42766, - [SMALL_STATE(1719)] = 42819, - [SMALL_STATE(1720)] = 42878, - [SMALL_STATE(1721)] = 42931, - [SMALL_STATE(1722)] = 42984, - [SMALL_STATE(1723)] = 43043, - [SMALL_STATE(1724)] = 43128, - [SMALL_STATE(1725)] = 43215, - [SMALL_STATE(1726)] = 43276, - [SMALL_STATE(1727)] = 43363, - [SMALL_STATE(1728)] = 43426, - [SMALL_STATE(1729)] = 43495, - [SMALL_STATE(1730)] = 43562, - [SMALL_STATE(1731)] = 43633, - [SMALL_STATE(1732)] = 43710, - [SMALL_STATE(1733)] = 43789, - [SMALL_STATE(1734)] = 43854, - [SMALL_STATE(1735)] = 43939, - [SMALL_STATE(1736)] = 44024, - [SMALL_STATE(1737)] = 44097, - [SMALL_STATE(1738)] = 44178, - [SMALL_STATE(1739)] = 44267, - [SMALL_STATE(1740)] = 44356, - [SMALL_STATE(1741)] = 44409, - [SMALL_STATE(1742)] = 44462, - [SMALL_STATE(1743)] = 44543, - [SMALL_STATE(1744)] = 44596, - [SMALL_STATE(1745)] = 44685, - [SMALL_STATE(1746)] = 44738, - [SMALL_STATE(1747)] = 44791, - [SMALL_STATE(1748)] = 44844, - [SMALL_STATE(1749)] = 44931, - [SMALL_STATE(1750)] = 44984, - [SMALL_STATE(1751)] = 45069, - [SMALL_STATE(1752)] = 45122, - [SMALL_STATE(1753)] = 45175, - [SMALL_STATE(1754)] = 45228, - [SMALL_STATE(1755)] = 45281, - [SMALL_STATE(1756)] = 45334, - [SMALL_STATE(1757)] = 45387, - [SMALL_STATE(1758)] = 45440, - [SMALL_STATE(1759)] = 45493, - [SMALL_STATE(1760)] = 45580, - [SMALL_STATE(1761)] = 45633, - [SMALL_STATE(1762)] = 45686, - [SMALL_STATE(1763)] = 45739, - [SMALL_STATE(1764)] = 45824, - [SMALL_STATE(1765)] = 45883, - [SMALL_STATE(1766)] = 45936, - [SMALL_STATE(1767)] = 45989, - [SMALL_STATE(1768)] = 46042, - [SMALL_STATE(1769)] = 46095, - [SMALL_STATE(1770)] = 46148, - [SMALL_STATE(1771)] = 46201, - [SMALL_STATE(1772)] = 46254, - [SMALL_STATE(1773)] = 46343, - [SMALL_STATE(1774)] = 46396, - [SMALL_STATE(1775)] = 46449, - [SMALL_STATE(1776)] = 46502, - [SMALL_STATE(1777)] = 46587, - [SMALL_STATE(1778)] = 46640, - [SMALL_STATE(1779)] = 46693, - [SMALL_STATE(1780)] = 46746, - [SMALL_STATE(1781)] = 46799, - [SMALL_STATE(1782)] = 46852, - [SMALL_STATE(1783)] = 46905, - [SMALL_STATE(1784)] = 46990, - [SMALL_STATE(1785)] = 47077, - [SMALL_STATE(1786)] = 47166, - [SMALL_STATE(1787)] = 47219, - [SMALL_STATE(1788)] = 47272, - [SMALL_STATE(1789)] = 47357, - [SMALL_STATE(1790)] = 47410, - [SMALL_STATE(1791)] = 47463, - [SMALL_STATE(1792)] = 47516, - [SMALL_STATE(1793)] = 47603, - [SMALL_STATE(1794)] = 47656, - [SMALL_STATE(1795)] = 47719, - [SMALL_STATE(1796)] = 47788, - [SMALL_STATE(1797)] = 47855, - [SMALL_STATE(1798)] = 47926, - [SMALL_STATE(1799)] = 48003, - [SMALL_STATE(1800)] = 48082, - [SMALL_STATE(1801)] = 48147, - [SMALL_STATE(1802)] = 48232, - [SMALL_STATE(1803)] = 48317, - [SMALL_STATE(1804)] = 48390, - [SMALL_STATE(1805)] = 48471, - [SMALL_STATE(1806)] = 48524, - [SMALL_STATE(1807)] = 48577, - [SMALL_STATE(1808)] = 48630, - [SMALL_STATE(1809)] = 48683, - [SMALL_STATE(1810)] = 48770, - [SMALL_STATE(1811)] = 48823, - [SMALL_STATE(1812)] = 48876, - [SMALL_STATE(1813)] = 48929, - [SMALL_STATE(1814)] = 48982, - [SMALL_STATE(1815)] = 49035, - [SMALL_STATE(1816)] = 49088, - [SMALL_STATE(1817)] = 49141, - [SMALL_STATE(1818)] = 49194, - [SMALL_STATE(1819)] = 49247, - [SMALL_STATE(1820)] = 49300, - [SMALL_STATE(1821)] = 49353, - [SMALL_STATE(1822)] = 49406, - [SMALL_STATE(1823)] = 49459, - [SMALL_STATE(1824)] = 49512, - [SMALL_STATE(1825)] = 49599, - [SMALL_STATE(1826)] = 49652, - [SMALL_STATE(1827)] = 49705, - [SMALL_STATE(1828)] = 49794, - [SMALL_STATE(1829)] = 49881, - [SMALL_STATE(1830)] = 49934, - [SMALL_STATE(1831)] = 49987, - [SMALL_STATE(1832)] = 50074, - [SMALL_STATE(1833)] = 50127, - [SMALL_STATE(1834)] = 50180, - [SMALL_STATE(1835)] = 50233, - [SMALL_STATE(1836)] = 50286, - [SMALL_STATE(1837)] = 50339, - [SMALL_STATE(1838)] = 50392, - [SMALL_STATE(1839)] = 50445, - [SMALL_STATE(1840)] = 50498, - [SMALL_STATE(1841)] = 50551, - [SMALL_STATE(1842)] = 50604, - [SMALL_STATE(1843)] = 50657, - [SMALL_STATE(1844)] = 50746, - [SMALL_STATE(1845)] = 50799, - [SMALL_STATE(1846)] = 50888, - [SMALL_STATE(1847)] = 50941, - [SMALL_STATE(1848)] = 50994, - [SMALL_STATE(1849)] = 51081, - [SMALL_STATE(1850)] = 51170, - [SMALL_STATE(1851)] = 51229, - [SMALL_STATE(1852)] = 51316, - [SMALL_STATE(1853)] = 51405, - [SMALL_STATE(1854)] = 51494, - [SMALL_STATE(1855)] = 51571, - [SMALL_STATE(1856)] = 51658, - [SMALL_STATE(1857)] = 51711, - [SMALL_STATE(1858)] = 51800, - [SMALL_STATE(1859)] = 51853, - [SMALL_STATE(1860)] = 51942, - [SMALL_STATE(1861)] = 52031, - [SMALL_STATE(1862)] = 52120, - [SMALL_STATE(1863)] = 52209, - [SMALL_STATE(1864)] = 52298, - [SMALL_STATE(1865)] = 52387, - [SMALL_STATE(1866)] = 52476, - [SMALL_STATE(1867)] = 52565, - [SMALL_STATE(1868)] = 52654, - [SMALL_STATE(1869)] = 52735, - [SMALL_STATE(1870)] = 52820, - [SMALL_STATE(1871)] = 52909, - [SMALL_STATE(1872)] = 52994, - [SMALL_STATE(1873)] = 53079, - [SMALL_STATE(1874)] = 53168, - [SMALL_STATE(1875)] = 53257, - [SMALL_STATE(1876)] = 53346, - [SMALL_STATE(1877)] = 53423, - [SMALL_STATE(1878)] = 53512, - [SMALL_STATE(1879)] = 53601, - [SMALL_STATE(1880)] = 53690, - [SMALL_STATE(1881)] = 53779, - [SMALL_STATE(1882)] = 53868, - [SMALL_STATE(1883)] = 53921, - [SMALL_STATE(1884)] = 54010, - [SMALL_STATE(1885)] = 54099, - [SMALL_STATE(1886)] = 54188, - [SMALL_STATE(1887)] = 54241, - [SMALL_STATE(1888)] = 54330, - [SMALL_STATE(1889)] = 54419, - [SMALL_STATE(1890)] = 54508, - [SMALL_STATE(1891)] = 54597, - [SMALL_STATE(1892)] = 54686, - [SMALL_STATE(1893)] = 54775, - [SMALL_STATE(1894)] = 54864, - [SMALL_STATE(1895)] = 54953, - [SMALL_STATE(1896)] = 55042, - [SMALL_STATE(1897)] = 55131, - [SMALL_STATE(1898)] = 55220, - [SMALL_STATE(1899)] = 55309, - [SMALL_STATE(1900)] = 55396, - [SMALL_STATE(1901)] = 55483, - [SMALL_STATE(1902)] = 55570, - [SMALL_STATE(1903)] = 55623, - [SMALL_STATE(1904)] = 55676, - [SMALL_STATE(1905)] = 55729, - [SMALL_STATE(1906)] = 55782, - [SMALL_STATE(1907)] = 55835, - [SMALL_STATE(1908)] = 55920, - [SMALL_STATE(1909)] = 55973, - [SMALL_STATE(1910)] = 56026, - [SMALL_STATE(1911)] = 56115, - [SMALL_STATE(1912)] = 56168, - [SMALL_STATE(1913)] = 56257, - [SMALL_STATE(1914)] = 56310, - [SMALL_STATE(1915)] = 56399, - [SMALL_STATE(1916)] = 56488, - [SMALL_STATE(1917)] = 56541, - [SMALL_STATE(1918)] = 56627, - [SMALL_STATE(1919)] = 56713, - [SMALL_STATE(1920)] = 56787, - [SMALL_STATE(1921)] = 56873, - [SMALL_STATE(1922)] = 56959, - [SMALL_STATE(1923)] = 57045, - [SMALL_STATE(1924)] = 57129, - [SMALL_STATE(1925)] = 57215, - [SMALL_STATE(1926)] = 57301, - [SMALL_STATE(1927)] = 57387, - [SMALL_STATE(1928)] = 57473, - [SMALL_STATE(1929)] = 57559, - [SMALL_STATE(1930)] = 57645, - [SMALL_STATE(1931)] = 57719, - [SMALL_STATE(1932)] = 57805, - [SMALL_STATE(1933)] = 57891, - [SMALL_STATE(1934)] = 57977, - [SMALL_STATE(1935)] = 58061, - [SMALL_STATE(1936)] = 58147, - [SMALL_STATE(1937)] = 58221, - [SMALL_STATE(1938)] = 58307, - [SMALL_STATE(1939)] = 58393, - [SMALL_STATE(1940)] = 58479, - [SMALL_STATE(1941)] = 58565, - [SMALL_STATE(1942)] = 58651, - [SMALL_STATE(1943)] = 58737, - [SMALL_STATE(1944)] = 58823, - [SMALL_STATE(1945)] = 58909, - [SMALL_STATE(1946)] = 58995, - [SMALL_STATE(1947)] = 59081, - [SMALL_STATE(1948)] = 59167, - [SMALL_STATE(1949)] = 59253, - [SMALL_STATE(1950)] = 59327, - [SMALL_STATE(1951)] = 59413, - [SMALL_STATE(1952)] = 59499, - [SMALL_STATE(1953)] = 59585, - [SMALL_STATE(1954)] = 59659, - [SMALL_STATE(1955)] = 59734, - [SMALL_STATE(1956)] = 59809, - [SMALL_STATE(1957)] = 59884, - [SMALL_STATE(1958)] = 59959, - [SMALL_STATE(1959)] = 60034, - [SMALL_STATE(1960)] = 60109, - [SMALL_STATE(1961)] = 60184, - [SMALL_STATE(1962)] = 60259, - [SMALL_STATE(1963)] = 60306, - [SMALL_STATE(1964)] = 60353, - [SMALL_STATE(1965)] = 60400, - [SMALL_STATE(1966)] = 60462, - [SMALL_STATE(1967)] = 60524, - [SMALL_STATE(1968)] = 60586, - [SMALL_STATE(1969)] = 60648, - [SMALL_STATE(1970)] = 60710, - [SMALL_STATE(1971)] = 60772, - [SMALL_STATE(1972)] = 60834, - [SMALL_STATE(1973)] = 60896, - [SMALL_STATE(1974)] = 60958, - [SMALL_STATE(1975)] = 61017, - [SMALL_STATE(1976)] = 61076, - [SMALL_STATE(1977)] = 61112, - [SMALL_STATE(1978)] = 61148, - [SMALL_STATE(1979)] = 61185, - [SMALL_STATE(1980)] = 61222, - [SMALL_STATE(1981)] = 61259, - [SMALL_STATE(1982)] = 61296, - [SMALL_STATE(1983)] = 61349, - [SMALL_STATE(1984)] = 61393, - [SMALL_STATE(1985)] = 61427, - [SMALL_STATE(1986)] = 61461, - [SMALL_STATE(1987)] = 61495, - [SMALL_STATE(1988)] = 61531, - [SMALL_STATE(1989)] = 61567, - [SMALL_STATE(1990)] = 61603, - [SMALL_STATE(1991)] = 61639, - [SMALL_STATE(1992)] = 61683, - [SMALL_STATE(1993)] = 61717, - [SMALL_STATE(1994)] = 61761, - [SMALL_STATE(1995)] = 61812, - [SMALL_STATE(1996)] = 61845, - [SMALL_STATE(1997)] = 61878, - [SMALL_STATE(1998)] = 61911, - [SMALL_STATE(1999)] = 61942, - [SMALL_STATE(2000)] = 61983, - [SMALL_STATE(2001)] = 62016, - [SMALL_STATE(2002)] = 62060, - [SMALL_STATE(2003)] = 62120, - [SMALL_STATE(2004)] = 62152, - [SMALL_STATE(2005)] = 62198, - [SMALL_STATE(2006)] = 62258, - [SMALL_STATE(2007)] = 62290, - [SMALL_STATE(2008)] = 62328, - [SMALL_STATE(2009)] = 62360, - [SMALL_STATE(2010)] = 62398, - [SMALL_STATE(2011)] = 62436, - [SMALL_STATE(2012)] = 62474, - [SMALL_STATE(2013)] = 62503, - [SMALL_STATE(2014)] = 62534, - [SMALL_STATE(2015)] = 62589, - [SMALL_STATE(2016)] = 62622, - [SMALL_STATE(2017)] = 62651, - [SMALL_STATE(2018)] = 62704, - [SMALL_STATE(2019)] = 62733, - [SMALL_STATE(2020)] = 62766, - [SMALL_STATE(2021)] = 62795, - [SMALL_STATE(2022)] = 62828, - [SMALL_STATE(2023)] = 62857, - [SMALL_STATE(2024)] = 62886, - [SMALL_STATE(2025)] = 62919, - [SMALL_STATE(2026)] = 62948, - [SMALL_STATE(2027)] = 62981, - [SMALL_STATE(2028)] = 63010, - [SMALL_STATE(2029)] = 63053, - [SMALL_STATE(2030)] = 63106, - [SMALL_STATE(2031)] = 63135, - [SMALL_STATE(2032)] = 63168, - [SMALL_STATE(2033)] = 63209, - [SMALL_STATE(2034)] = 63237, - [SMALL_STATE(2035)] = 63265, - [SMALL_STATE(2036)] = 63293, - [SMALL_STATE(2037)] = 63321, - [SMALL_STATE(2038)] = 63349, - [SMALL_STATE(2039)] = 63377, - [SMALL_STATE(2040)] = 63405, - [SMALL_STATE(2041)] = 63433, - [SMALL_STATE(2042)] = 63463, - [SMALL_STATE(2043)] = 63491, - [SMALL_STATE(2044)] = 63519, - [SMALL_STATE(2045)] = 63547, - [SMALL_STATE(2046)] = 63575, - [SMALL_STATE(2047)] = 63603, - [SMALL_STATE(2048)] = 63631, - [SMALL_STATE(2049)] = 63659, - [SMALL_STATE(2050)] = 63703, - [SMALL_STATE(2051)] = 63731, - [SMALL_STATE(2052)] = 63759, - [SMALL_STATE(2053)] = 63787, - [SMALL_STATE(2054)] = 63815, - [SMALL_STATE(2055)] = 63843, - [SMALL_STATE(2056)] = 63873, - [SMALL_STATE(2057)] = 63901, - [SMALL_STATE(2058)] = 63929, - [SMALL_STATE(2059)] = 63957, - [SMALL_STATE(2060)] = 63985, - [SMALL_STATE(2061)] = 64013, - [SMALL_STATE(2062)] = 64041, - [SMALL_STATE(2063)] = 64069, - [SMALL_STATE(2064)] = 64097, - [SMALL_STATE(2065)] = 64125, - [SMALL_STATE(2066)] = 64153, - [SMALL_STATE(2067)] = 64181, - [SMALL_STATE(2068)] = 64209, - [SMALL_STATE(2069)] = 64237, - [SMALL_STATE(2070)] = 64265, - [SMALL_STATE(2071)] = 64293, - [SMALL_STATE(2072)] = 64322, - [SMALL_STATE(2073)] = 64351, - [SMALL_STATE(2074)] = 64382, - [SMALL_STATE(2075)] = 64411, - [SMALL_STATE(2076)] = 64440, - [SMALL_STATE(2077)] = 64469, - [SMALL_STATE(2078)] = 64498, - [SMALL_STATE(2079)] = 64533, - [SMALL_STATE(2080)] = 64562, - [SMALL_STATE(2081)] = 64591, - [SMALL_STATE(2082)] = 64620, - [SMALL_STATE(2083)] = 64649, - [SMALL_STATE(2084)] = 64681, - [SMALL_STATE(2085)] = 64727, - [SMALL_STATE(2086)] = 64759, - [SMALL_STATE(2087)] = 64791, - [SMALL_STATE(2088)] = 64821, - [SMALL_STATE(2089)] = 64853, - [SMALL_STATE(2090)] = 64885, - [SMALL_STATE(2091)] = 64917, - [SMALL_STATE(2092)] = 64949, - [SMALL_STATE(2093)] = 64981, - [SMALL_STATE(2094)] = 65013, - [SMALL_STATE(2095)] = 65045, - [SMALL_STATE(2096)] = 65077, - [SMALL_STATE(2097)] = 65105, - [SMALL_STATE(2098)] = 65149, - [SMALL_STATE(2099)] = 65181, - [SMALL_STATE(2100)] = 65210, - [SMALL_STATE(2101)] = 65253, - [SMALL_STATE(2102)] = 65290, - [SMALL_STATE(2103)] = 65319, - [SMALL_STATE(2104)] = 65362, - [SMALL_STATE(2105)] = 65405, - [SMALL_STATE(2106)] = 65448, - [SMALL_STATE(2107)] = 65491, - [SMALL_STATE(2108)] = 65534, - [SMALL_STATE(2109)] = 65562, - [SMALL_STATE(2110)] = 65590, - [SMALL_STATE(2111)] = 65614, - [SMALL_STATE(2112)] = 65648, - [SMALL_STATE(2113)] = 65676, - [SMALL_STATE(2114)] = 65716, - [SMALL_STATE(2115)] = 65756, - [SMALL_STATE(2116)] = 65794, - [SMALL_STATE(2117)] = 65822, - [SMALL_STATE(2118)] = 65862, - [SMALL_STATE(2119)] = 65900, - [SMALL_STATE(2120)] = 65940, - [SMALL_STATE(2121)] = 65978, - [SMALL_STATE(2122)] = 66018, - [SMALL_STATE(2123)] = 66058, - [SMALL_STATE(2124)] = 66082, - [SMALL_STATE(2125)] = 66110, - [SMALL_STATE(2126)] = 66148, - [SMALL_STATE(2127)] = 66176, - [SMALL_STATE(2128)] = 66204, - [SMALL_STATE(2129)] = 66242, - [SMALL_STATE(2130)] = 66282, - [SMALL_STATE(2131)] = 66322, - [SMALL_STATE(2132)] = 66350, - [SMALL_STATE(2133)] = 66378, - [SMALL_STATE(2134)] = 66402, - [SMALL_STATE(2135)] = 66436, - [SMALL_STATE(2136)] = 66474, - [SMALL_STATE(2137)] = 66502, - [SMALL_STATE(2138)] = 66530, - [SMALL_STATE(2139)] = 66570, - [SMALL_STATE(2140)] = 66598, - [SMALL_STATE(2141)] = 66622, - [SMALL_STATE(2142)] = 66652, - [SMALL_STATE(2143)] = 66682, - [SMALL_STATE(2144)] = 66720, - [SMALL_STATE(2145)] = 66750, - [SMALL_STATE(2146)] = 66778, - [SMALL_STATE(2147)] = 66806, - [SMALL_STATE(2148)] = 66836, - [SMALL_STATE(2149)] = 66874, - [SMALL_STATE(2150)] = 66912, - [SMALL_STATE(2151)] = 66950, - [SMALL_STATE(2152)] = 66978, - [SMALL_STATE(2153)] = 67002, - [SMALL_STATE(2154)] = 67040, - [SMALL_STATE(2155)] = 67078, - [SMALL_STATE(2156)] = 67118, - [SMALL_STATE(2157)] = 67146, - [SMALL_STATE(2158)] = 67169, - [SMALL_STATE(2159)] = 67210, - [SMALL_STATE(2160)] = 67233, - [SMALL_STATE(2161)] = 67274, - [SMALL_STATE(2162)] = 67297, - [SMALL_STATE(2163)] = 67338, - [SMALL_STATE(2164)] = 67361, - [SMALL_STATE(2165)] = 67398, - [SMALL_STATE(2166)] = 67421, - [SMALL_STATE(2167)] = 67458, - [SMALL_STATE(2168)] = 67481, - [SMALL_STATE(2169)] = 67518, - [SMALL_STATE(2170)] = 67541, - [SMALL_STATE(2171)] = 67564, - [SMALL_STATE(2172)] = 67587, - [SMALL_STATE(2173)] = 67618, - [SMALL_STATE(2174)] = 67641, - [SMALL_STATE(2175)] = 67664, - [SMALL_STATE(2176)] = 67687, - [SMALL_STATE(2177)] = 67710, - [SMALL_STATE(2178)] = 67733, - [SMALL_STATE(2179)] = 67756, - [SMALL_STATE(2180)] = 67779, - [SMALL_STATE(2181)] = 67802, - [SMALL_STATE(2182)] = 67825, - [SMALL_STATE(2183)] = 67848, - [SMALL_STATE(2184)] = 67871, - [SMALL_STATE(2185)] = 67894, - [SMALL_STATE(2186)] = 67927, - [SMALL_STATE(2187)] = 67962, - [SMALL_STATE(2188)] = 67985, - [SMALL_STATE(2189)] = 68008, - [SMALL_STATE(2190)] = 68031, - [SMALL_STATE(2191)] = 68054, - [SMALL_STATE(2192)] = 68077, - [SMALL_STATE(2193)] = 68108, - [SMALL_STATE(2194)] = 68143, - [SMALL_STATE(2195)] = 68166, - [SMALL_STATE(2196)] = 68207, - [SMALL_STATE(2197)] = 68230, - [SMALL_STATE(2198)] = 68261, - [SMALL_STATE(2199)] = 68292, - [SMALL_STATE(2200)] = 68315, - [SMALL_STATE(2201)] = 68350, - [SMALL_STATE(2202)] = 68387, - [SMALL_STATE(2203)] = 68422, - [SMALL_STATE(2204)] = 68453, - [SMALL_STATE(2205)] = 68476, - [SMALL_STATE(2206)] = 68499, - [SMALL_STATE(2207)] = 68522, - [SMALL_STATE(2208)] = 68545, - [SMALL_STATE(2209)] = 68568, - [SMALL_STATE(2210)] = 68591, - [SMALL_STATE(2211)] = 68622, - [SMALL_STATE(2212)] = 68645, - [SMALL_STATE(2213)] = 68681, - [SMALL_STATE(2214)] = 68719, - [SMALL_STATE(2215)] = 68757, - [SMALL_STATE(2216)] = 68795, - [SMALL_STATE(2217)] = 68825, - [SMALL_STATE(2218)] = 68863, - [SMALL_STATE(2219)] = 68887, - [SMALL_STATE(2220)] = 68911, - [SMALL_STATE(2221)] = 68939, - [SMALL_STATE(2222)] = 68977, - [SMALL_STATE(2223)] = 69001, - [SMALL_STATE(2224)] = 69029, - [SMALL_STATE(2225)] = 69061, - [SMALL_STATE(2226)] = 69095, - [SMALL_STATE(2227)] = 69127, - [SMALL_STATE(2228)] = 69159, - [SMALL_STATE(2229)] = 69191, - [SMALL_STATE(2230)] = 69221, - [SMALL_STATE(2231)] = 69255, - [SMALL_STATE(2232)] = 69283, - [SMALL_STATE(2233)] = 69315, - [SMALL_STATE(2234)] = 69339, - [SMALL_STATE(2235)] = 69377, - [SMALL_STATE(2236)] = 69407, - [SMALL_STATE(2237)] = 69439, - [SMALL_STATE(2238)] = 69469, - [SMALL_STATE(2239)] = 69507, - [SMALL_STATE(2240)] = 69539, - [SMALL_STATE(2241)] = 69565, - [SMALL_STATE(2242)] = 69603, - [SMALL_STATE(2243)] = 69629, - [SMALL_STATE(2244)] = 69667, - [SMALL_STATE(2245)] = 69705, - [SMALL_STATE(2246)] = 69743, - [SMALL_STATE(2247)] = 69771, - [SMALL_STATE(2248)] = 69809, - [SMALL_STATE(2249)] = 69835, - [SMALL_STATE(2250)] = 69867, - [SMALL_STATE(2251)] = 69895, - [SMALL_STATE(2252)] = 69927, - [SMALL_STATE(2253)] = 69965, - [SMALL_STATE(2254)] = 69997, - [SMALL_STATE(2255)] = 70029, - [SMALL_STATE(2256)] = 70067, - [SMALL_STATE(2257)] = 70099, - [SMALL_STATE(2258)] = 70137, - [SMALL_STATE(2259)] = 70175, - [SMALL_STATE(2260)] = 70203, - [SMALL_STATE(2261)] = 70227, - [SMALL_STATE(2262)] = 70255, - [SMALL_STATE(2263)] = 70287, - [SMALL_STATE(2264)] = 70322, - [SMALL_STATE(2265)] = 70357, - [SMALL_STATE(2266)] = 70384, - [SMALL_STATE(2267)] = 70419, - [SMALL_STATE(2268)] = 70454, - [SMALL_STATE(2269)] = 70489, - [SMALL_STATE(2270)] = 70524, - [SMALL_STATE(2271)] = 70545, - [SMALL_STATE(2272)] = 70580, - [SMALL_STATE(2273)] = 70615, - [SMALL_STATE(2274)] = 70650, - [SMALL_STATE(2275)] = 70685, - [SMALL_STATE(2276)] = 70720, - [SMALL_STATE(2277)] = 70741, - [SMALL_STATE(2278)] = 70776, - [SMALL_STATE(2279)] = 70805, - [SMALL_STATE(2280)] = 70830, - [SMALL_STATE(2281)] = 70865, - [SMALL_STATE(2282)] = 70900, - [SMALL_STATE(2283)] = 70935, - [SMALL_STATE(2284)] = 70970, - [SMALL_STATE(2285)] = 71005, - [SMALL_STATE(2286)] = 71040, - [SMALL_STATE(2287)] = 71075, - [SMALL_STATE(2288)] = 71096, - [SMALL_STATE(2289)] = 71121, - [SMALL_STATE(2290)] = 71154, - [SMALL_STATE(2291)] = 71189, - [SMALL_STATE(2292)] = 71222, - [SMALL_STATE(2293)] = 71257, - [SMALL_STATE(2294)] = 71290, - [SMALL_STATE(2295)] = 71325, - [SMALL_STATE(2296)] = 71360, - [SMALL_STATE(2297)] = 71395, - [SMALL_STATE(2298)] = 71430, - [SMALL_STATE(2299)] = 71463, - [SMALL_STATE(2300)] = 71498, - [SMALL_STATE(2301)] = 71533, - [SMALL_STATE(2302)] = 71568, - [SMALL_STATE(2303)] = 71603, - [SMALL_STATE(2304)] = 71638, - [SMALL_STATE(2305)] = 71673, - [SMALL_STATE(2306)] = 71708, - [SMALL_STATE(2307)] = 71743, - [SMALL_STATE(2308)] = 71778, - [SMALL_STATE(2309)] = 71813, - [SMALL_STATE(2310)] = 71846, - [SMALL_STATE(2311)] = 71881, - [SMALL_STATE(2312)] = 71916, - [SMALL_STATE(2313)] = 71951, - [SMALL_STATE(2314)] = 71972, - [SMALL_STATE(2315)] = 72007, - [SMALL_STATE(2316)] = 72042, - [SMALL_STATE(2317)] = 72067, - [SMALL_STATE(2318)] = 72097, - [SMALL_STATE(2319)] = 72129, - [SMALL_STATE(2320)] = 72161, - [SMALL_STATE(2321)] = 72193, - [SMALL_STATE(2322)] = 72225, - [SMALL_STATE(2323)] = 72257, - [SMALL_STATE(2324)] = 72289, - [SMALL_STATE(2325)] = 72315, - [SMALL_STATE(2326)] = 72343, - [SMALL_STATE(2327)] = 72375, - [SMALL_STATE(2328)] = 72407, - [SMALL_STATE(2329)] = 72437, - [SMALL_STATE(2330)] = 72469, - [SMALL_STATE(2331)] = 72491, - [SMALL_STATE(2332)] = 72523, - [SMALL_STATE(2333)] = 72555, - [SMALL_STATE(2334)] = 72587, - [SMALL_STATE(2335)] = 72619, - [SMALL_STATE(2336)] = 72651, - [SMALL_STATE(2337)] = 72681, - [SMALL_STATE(2338)] = 72713, - [SMALL_STATE(2339)] = 72743, - [SMALL_STATE(2340)] = 72765, - [SMALL_STATE(2341)] = 72795, - [SMALL_STATE(2342)] = 72821, - [SMALL_STATE(2343)] = 72843, - [SMALL_STATE(2344)] = 72869, - [SMALL_STATE(2345)] = 72897, - [SMALL_STATE(2346)] = 72929, - [SMALL_STATE(2347)] = 72961, - [SMALL_STATE(2348)] = 72993, - [SMALL_STATE(2349)] = 73025, - [SMALL_STATE(2350)] = 73055, - [SMALL_STATE(2351)] = 73087, - [SMALL_STATE(2352)] = 73109, - [SMALL_STATE(2353)] = 73141, - [SMALL_STATE(2354)] = 73169, - [SMALL_STATE(2355)] = 73195, - [SMALL_STATE(2356)] = 73223, - [SMALL_STATE(2357)] = 73255, - [SMALL_STATE(2358)] = 73287, - [SMALL_STATE(2359)] = 73319, - [SMALL_STATE(2360)] = 73351, - [SMALL_STATE(2361)] = 73383, - [SMALL_STATE(2362)] = 73413, - [SMALL_STATE(2363)] = 73443, - [SMALL_STATE(2364)] = 73473, - [SMALL_STATE(2365)] = 73503, - [SMALL_STATE(2366)] = 73525, - [SMALL_STATE(2367)] = 73557, - [SMALL_STATE(2368)] = 73579, - [SMALL_STATE(2369)] = 73611, - [SMALL_STATE(2370)] = 73643, - [SMALL_STATE(2371)] = 73671, - [SMALL_STATE(2372)] = 73703, - [SMALL_STATE(2373)] = 73735, - [SMALL_STATE(2374)] = 73767, - [SMALL_STATE(2375)] = 73799, - [SMALL_STATE(2376)] = 73828, - [SMALL_STATE(2377)] = 73857, - [SMALL_STATE(2378)] = 73886, - [SMALL_STATE(2379)] = 73915, - [SMALL_STATE(2380)] = 73936, - [SMALL_STATE(2381)] = 73965, - [SMALL_STATE(2382)] = 73986, - [SMALL_STATE(2383)] = 74015, - [SMALL_STATE(2384)] = 74042, - [SMALL_STATE(2385)] = 74063, - [SMALL_STATE(2386)] = 74092, - [SMALL_STATE(2387)] = 74113, - [SMALL_STATE(2388)] = 74142, - [SMALL_STATE(2389)] = 74165, - [SMALL_STATE(2390)] = 74190, - [SMALL_STATE(2391)] = 74211, - [SMALL_STATE(2392)] = 74240, - [SMALL_STATE(2393)] = 74269, - [SMALL_STATE(2394)] = 74292, - [SMALL_STATE(2395)] = 74315, - [SMALL_STATE(2396)] = 74338, - [SMALL_STATE(2397)] = 74367, - [SMALL_STATE(2398)] = 74388, - [SMALL_STATE(2399)] = 74415, - [SMALL_STATE(2400)] = 74444, - [SMALL_STATE(2401)] = 74467, - [SMALL_STATE(2402)] = 74496, - [SMALL_STATE(2403)] = 74525, - [SMALL_STATE(2404)] = 74548, - [SMALL_STATE(2405)] = 74573, - [SMALL_STATE(2406)] = 74596, - [SMALL_STATE(2407)] = 74625, - [SMALL_STATE(2408)] = 74654, - [SMALL_STATE(2409)] = 74681, - [SMALL_STATE(2410)] = 74710, - [SMALL_STATE(2411)] = 74739, - [SMALL_STATE(2412)] = 74768, - [SMALL_STATE(2413)] = 74797, - [SMALL_STATE(2414)] = 74826, - [SMALL_STATE(2415)] = 74855, - [SMALL_STATE(2416)] = 74876, - [SMALL_STATE(2417)] = 74905, - [SMALL_STATE(2418)] = 74934, - [SMALL_STATE(2419)] = 74957, - [SMALL_STATE(2420)] = 74986, - [SMALL_STATE(2421)] = 75015, - [SMALL_STATE(2422)] = 75044, - [SMALL_STATE(2423)] = 75073, - [SMALL_STATE(2424)] = 75102, - [SMALL_STATE(2425)] = 75131, - [SMALL_STATE(2426)] = 75154, - [SMALL_STATE(2427)] = 75181, - [SMALL_STATE(2428)] = 75210, - [SMALL_STATE(2429)] = 75239, - [SMALL_STATE(2430)] = 75264, - [SMALL_STATE(2431)] = 75285, - [SMALL_STATE(2432)] = 75314, - [SMALL_STATE(2433)] = 75343, - [SMALL_STATE(2434)] = 75364, - [SMALL_STATE(2435)] = 75393, - [SMALL_STATE(2436)] = 75416, - [SMALL_STATE(2437)] = 75445, - [SMALL_STATE(2438)] = 75474, - [SMALL_STATE(2439)] = 75503, - [SMALL_STATE(2440)] = 75526, - [SMALL_STATE(2441)] = 75553, - [SMALL_STATE(2442)] = 75574, - [SMALL_STATE(2443)] = 75603, - [SMALL_STATE(2444)] = 75632, - [SMALL_STATE(2445)] = 75661, - [SMALL_STATE(2446)] = 75690, - [SMALL_STATE(2447)] = 75711, - [SMALL_STATE(2448)] = 75734, - [SMALL_STATE(2449)] = 75757, - [SMALL_STATE(2450)] = 75778, - [SMALL_STATE(2451)] = 75801, - [SMALL_STATE(2452)] = 75830, - [SMALL_STATE(2453)] = 75853, - [SMALL_STATE(2454)] = 75882, - [SMALL_STATE(2455)] = 75911, - [SMALL_STATE(2456)] = 75940, - [SMALL_STATE(2457)] = 75963, - [SMALL_STATE(2458)] = 75992, - [SMALL_STATE(2459)] = 76021, - [SMALL_STATE(2460)] = 76040, - [SMALL_STATE(2461)] = 76069, - [SMALL_STATE(2462)] = 76098, - [SMALL_STATE(2463)] = 76119, - [SMALL_STATE(2464)] = 76144, - [SMALL_STATE(2465)] = 76171, - [SMALL_STATE(2466)] = 76192, - [SMALL_STATE(2467)] = 76221, - [SMALL_STATE(2468)] = 76250, - [SMALL_STATE(2469)] = 76271, - [SMALL_STATE(2470)] = 76290, - [SMALL_STATE(2471)] = 76311, - [SMALL_STATE(2472)] = 76340, - [SMALL_STATE(2473)] = 76369, - [SMALL_STATE(2474)] = 76398, - [SMALL_STATE(2475)] = 76427, - [SMALL_STATE(2476)] = 76456, - [SMALL_STATE(2477)] = 76474, - [SMALL_STATE(2478)] = 76500, - [SMALL_STATE(2479)] = 76524, - [SMALL_STATE(2480)] = 76546, - [SMALL_STATE(2481)] = 76568, - [SMALL_STATE(2482)] = 76592, - [SMALL_STATE(2483)] = 76614, - [SMALL_STATE(2484)] = 76632, - [SMALL_STATE(2485)] = 76650, - [SMALL_STATE(2486)] = 76668, - [SMALL_STATE(2487)] = 76686, - [SMALL_STATE(2488)] = 76712, - [SMALL_STATE(2489)] = 76730, - [SMALL_STATE(2490)] = 76756, - [SMALL_STATE(2491)] = 76778, - [SMALL_STATE(2492)] = 76796, - [SMALL_STATE(2493)] = 76814, - [SMALL_STATE(2494)] = 76832, - [SMALL_STATE(2495)] = 76858, - [SMALL_STATE(2496)] = 76876, - [SMALL_STATE(2497)] = 76894, - [SMALL_STATE(2498)] = 76912, - [SMALL_STATE(2499)] = 76938, - [SMALL_STATE(2500)] = 76964, - [SMALL_STATE(2501)] = 76982, - [SMALL_STATE(2502)] = 77000, - [SMALL_STATE(2503)] = 77022, - [SMALL_STATE(2504)] = 77048, - [SMALL_STATE(2505)] = 77074, - [SMALL_STATE(2506)] = 77098, - [SMALL_STATE(2507)] = 77116, - [SMALL_STATE(2508)] = 77142, - [SMALL_STATE(2509)] = 77160, - [SMALL_STATE(2510)] = 77186, - [SMALL_STATE(2511)] = 77206, - [SMALL_STATE(2512)] = 77230, - [SMALL_STATE(2513)] = 77256, - [SMALL_STATE(2514)] = 77282, - [SMALL_STATE(2515)] = 77308, - [SMALL_STATE(2516)] = 77334, - [SMALL_STATE(2517)] = 77360, - [SMALL_STATE(2518)] = 77386, - [SMALL_STATE(2519)] = 77412, - [SMALL_STATE(2520)] = 77438, - [SMALL_STATE(2521)] = 77464, - [SMALL_STATE(2522)] = 77488, - [SMALL_STATE(2523)] = 77514, - [SMALL_STATE(2524)] = 77540, - [SMALL_STATE(2525)] = 77564, - [SMALL_STATE(2526)] = 77582, - [SMALL_STATE(2527)] = 77606, - [SMALL_STATE(2528)] = 77632, - [SMALL_STATE(2529)] = 77658, - [SMALL_STATE(2530)] = 77684, - [SMALL_STATE(2531)] = 77710, - [SMALL_STATE(2532)] = 77736, - [SMALL_STATE(2533)] = 77762, - [SMALL_STATE(2534)] = 77788, - [SMALL_STATE(2535)] = 77814, - [SMALL_STATE(2536)] = 77840, - [SMALL_STATE(2537)] = 77866, - [SMALL_STATE(2538)] = 77892, - [SMALL_STATE(2539)] = 77918, - [SMALL_STATE(2540)] = 77944, - [SMALL_STATE(2541)] = 77970, - [SMALL_STATE(2542)] = 77996, - [SMALL_STATE(2543)] = 78022, - [SMALL_STATE(2544)] = 78048, - [SMALL_STATE(2545)] = 78074, - [SMALL_STATE(2546)] = 78098, - [SMALL_STATE(2547)] = 78124, - [SMALL_STATE(2548)] = 78148, - [SMALL_STATE(2549)] = 78174, - [SMALL_STATE(2550)] = 78200, - [SMALL_STATE(2551)] = 78226, - [SMALL_STATE(2552)] = 78250, - [SMALL_STATE(2553)] = 78274, - [SMALL_STATE(2554)] = 78292, - [SMALL_STATE(2555)] = 78318, - [SMALL_STATE(2556)] = 78338, - [SMALL_STATE(2557)] = 78356, - [SMALL_STATE(2558)] = 78374, - [SMALL_STATE(2559)] = 78398, - [SMALL_STATE(2560)] = 78424, - [SMALL_STATE(2561)] = 78448, - [SMALL_STATE(2562)] = 78468, - [SMALL_STATE(2563)] = 78486, - [SMALL_STATE(2564)] = 78506, - [SMALL_STATE(2565)] = 78530, - [SMALL_STATE(2566)] = 78548, - [SMALL_STATE(2567)] = 78566, - [SMALL_STATE(2568)] = 78584, - [SMALL_STATE(2569)] = 78610, - [SMALL_STATE(2570)] = 78636, - [SMALL_STATE(2571)] = 78660, - [SMALL_STATE(2572)] = 78682, - [SMALL_STATE(2573)] = 78706, - [SMALL_STATE(2574)] = 78732, - [SMALL_STATE(2575)] = 78758, - [SMALL_STATE(2576)] = 78780, - [SMALL_STATE(2577)] = 78798, - [SMALL_STATE(2578)] = 78816, - [SMALL_STATE(2579)] = 78842, - [SMALL_STATE(2580)] = 78868, - [SMALL_STATE(2581)] = 78894, - [SMALL_STATE(2582)] = 78916, - [SMALL_STATE(2583)] = 78942, - [SMALL_STATE(2584)] = 78968, - [SMALL_STATE(2585)] = 78994, - [SMALL_STATE(2586)] = 79017, - [SMALL_STATE(2587)] = 79040, - [SMALL_STATE(2588)] = 79057, - [SMALL_STATE(2589)] = 79076, - [SMALL_STATE(2590)] = 79099, - [SMALL_STATE(2591)] = 79118, - [SMALL_STATE(2592)] = 79141, - [SMALL_STATE(2593)] = 79164, - [SMALL_STATE(2594)] = 79187, - [SMALL_STATE(2595)] = 79206, - [SMALL_STATE(2596)] = 79229, - [SMALL_STATE(2597)] = 79252, - [SMALL_STATE(2598)] = 79273, - [SMALL_STATE(2599)] = 79296, - [SMALL_STATE(2600)] = 79319, - [SMALL_STATE(2601)] = 79340, - [SMALL_STATE(2602)] = 79363, - [SMALL_STATE(2603)] = 79386, - [SMALL_STATE(2604)] = 79409, - [SMALL_STATE(2605)] = 79432, - [SMALL_STATE(2606)] = 79453, - [SMALL_STATE(2607)] = 79476, - [SMALL_STATE(2608)] = 79499, - [SMALL_STATE(2609)] = 79522, - [SMALL_STATE(2610)] = 79545, - [SMALL_STATE(2611)] = 79566, - [SMALL_STATE(2612)] = 79589, - [SMALL_STATE(2613)] = 79612, - [SMALL_STATE(2614)] = 79635, - [SMALL_STATE(2615)] = 79658, - [SMALL_STATE(2616)] = 79681, - [SMALL_STATE(2617)] = 79702, - [SMALL_STATE(2618)] = 79719, - [SMALL_STATE(2619)] = 79742, - [SMALL_STATE(2620)] = 79763, - [SMALL_STATE(2621)] = 79786, - [SMALL_STATE(2622)] = 79809, - [SMALL_STATE(2623)] = 79832, - [SMALL_STATE(2624)] = 79855, - [SMALL_STATE(2625)] = 79878, - [SMALL_STATE(2626)] = 79901, - [SMALL_STATE(2627)] = 79924, - [SMALL_STATE(2628)] = 79947, - [SMALL_STATE(2629)] = 79970, - [SMALL_STATE(2630)] = 79993, - [SMALL_STATE(2631)] = 80014, - [SMALL_STATE(2632)] = 80037, - [SMALL_STATE(2633)] = 80060, - [SMALL_STATE(2634)] = 80083, - [SMALL_STATE(2635)] = 80106, - [SMALL_STATE(2636)] = 80129, - [SMALL_STATE(2637)] = 80152, - [SMALL_STATE(2638)] = 80175, - [SMALL_STATE(2639)] = 80198, - [SMALL_STATE(2640)] = 80221, - [SMALL_STATE(2641)] = 80244, - [SMALL_STATE(2642)] = 80267, - [SMALL_STATE(2643)] = 80290, - [SMALL_STATE(2644)] = 80313, - [SMALL_STATE(2645)] = 80336, - [SMALL_STATE(2646)] = 80357, - [SMALL_STATE(2647)] = 80378, - [SMALL_STATE(2648)] = 80401, - [SMALL_STATE(2649)] = 80424, - [SMALL_STATE(2650)] = 80447, - [SMALL_STATE(2651)] = 80470, - [SMALL_STATE(2652)] = 80493, - [SMALL_STATE(2653)] = 80512, - [SMALL_STATE(2654)] = 80535, - [SMALL_STATE(2655)] = 80558, - [SMALL_STATE(2656)] = 80581, - [SMALL_STATE(2657)] = 80604, - [SMALL_STATE(2658)] = 80627, - [SMALL_STATE(2659)] = 80648, - [SMALL_STATE(2660)] = 80671, - [SMALL_STATE(2661)] = 80694, - [SMALL_STATE(2662)] = 80717, - [SMALL_STATE(2663)] = 80740, - [SMALL_STATE(2664)] = 80763, - [SMALL_STATE(2665)] = 80786, - [SMALL_STATE(2666)] = 80809, - [SMALL_STATE(2667)] = 80832, - [SMALL_STATE(2668)] = 80855, - [SMALL_STATE(2669)] = 80878, - [SMALL_STATE(2670)] = 80897, - [SMALL_STATE(2671)] = 80920, - [SMALL_STATE(2672)] = 80943, - [SMALL_STATE(2673)] = 80966, - [SMALL_STATE(2674)] = 80989, - [SMALL_STATE(2675)] = 81012, - [SMALL_STATE(2676)] = 81035, - [SMALL_STATE(2677)] = 81058, - [SMALL_STATE(2678)] = 81077, - [SMALL_STATE(2679)] = 81100, - [SMALL_STATE(2680)] = 81117, - [SMALL_STATE(2681)] = 81140, - [SMALL_STATE(2682)] = 81163, - [SMALL_STATE(2683)] = 81182, - [SMALL_STATE(2684)] = 81205, - [SMALL_STATE(2685)] = 81224, - [SMALL_STATE(2686)] = 81243, - [SMALL_STATE(2687)] = 81262, - [SMALL_STATE(2688)] = 81285, - [SMALL_STATE(2689)] = 81308, - [SMALL_STATE(2690)] = 81331, - [SMALL_STATE(2691)] = 81354, - [SMALL_STATE(2692)] = 81377, - [SMALL_STATE(2693)] = 81400, - [SMALL_STATE(2694)] = 81423, - [SMALL_STATE(2695)] = 81446, - [SMALL_STATE(2696)] = 81465, - [SMALL_STATE(2697)] = 81488, - [SMALL_STATE(2698)] = 81511, - [SMALL_STATE(2699)] = 81534, - [SMALL_STATE(2700)] = 81557, - [SMALL_STATE(2701)] = 81580, - [SMALL_STATE(2702)] = 81603, - [SMALL_STATE(2703)] = 81626, - [SMALL_STATE(2704)] = 81647, - [SMALL_STATE(2705)] = 81670, - [SMALL_STATE(2706)] = 81693, - [SMALL_STATE(2707)] = 81716, - [SMALL_STATE(2708)] = 81739, - [SMALL_STATE(2709)] = 81762, - [SMALL_STATE(2710)] = 81785, - [SMALL_STATE(2711)] = 81804, - [SMALL_STATE(2712)] = 81827, - [SMALL_STATE(2713)] = 81850, - [SMALL_STATE(2714)] = 81873, - [SMALL_STATE(2715)] = 81896, - [SMALL_STATE(2716)] = 81917, - [SMALL_STATE(2717)] = 81940, - [SMALL_STATE(2718)] = 81963, - [SMALL_STATE(2719)] = 81986, - [SMALL_STATE(2720)] = 82005, - [SMALL_STATE(2721)] = 82028, - [SMALL_STATE(2722)] = 82051, - [SMALL_STATE(2723)] = 82074, - [SMALL_STATE(2724)] = 82097, - [SMALL_STATE(2725)] = 82120, - [SMALL_STATE(2726)] = 82143, - [SMALL_STATE(2727)] = 82166, - [SMALL_STATE(2728)] = 82189, - [SMALL_STATE(2729)] = 82212, - [SMALL_STATE(2730)] = 82235, - [SMALL_STATE(2731)] = 82258, - [SMALL_STATE(2732)] = 82279, - [SMALL_STATE(2733)] = 82298, - [SMALL_STATE(2734)] = 82321, - [SMALL_STATE(2735)] = 82340, - [SMALL_STATE(2736)] = 82363, - [SMALL_STATE(2737)] = 82386, - [SMALL_STATE(2738)] = 82409, - [SMALL_STATE(2739)] = 82432, - [SMALL_STATE(2740)] = 82455, - [SMALL_STATE(2741)] = 82478, - [SMALL_STATE(2742)] = 82501, - [SMALL_STATE(2743)] = 82524, - [SMALL_STATE(2744)] = 82545, - [SMALL_STATE(2745)] = 82568, - [SMALL_STATE(2746)] = 82591, - [SMALL_STATE(2747)] = 82614, - [SMALL_STATE(2748)] = 82637, - [SMALL_STATE(2749)] = 82660, - [SMALL_STATE(2750)] = 82683, - [SMALL_STATE(2751)] = 82704, - [SMALL_STATE(2752)] = 82727, - [SMALL_STATE(2753)] = 82750, - [SMALL_STATE(2754)] = 82773, - [SMALL_STATE(2755)] = 82796, - [SMALL_STATE(2756)] = 82819, - [SMALL_STATE(2757)] = 82842, - [SMALL_STATE(2758)] = 82859, - [SMALL_STATE(2759)] = 82882, - [SMALL_STATE(2760)] = 82903, - [SMALL_STATE(2761)] = 82926, - [SMALL_STATE(2762)] = 82949, - [SMALL_STATE(2763)] = 82972, - [SMALL_STATE(2764)] = 82993, - [SMALL_STATE(2765)] = 83016, - [SMALL_STATE(2766)] = 83039, - [SMALL_STATE(2767)] = 83062, - [SMALL_STATE(2768)] = 83085, - [SMALL_STATE(2769)] = 83108, - [SMALL_STATE(2770)] = 83127, - [SMALL_STATE(2771)] = 83148, - [SMALL_STATE(2772)] = 83169, - [SMALL_STATE(2773)] = 83192, - [SMALL_STATE(2774)] = 83215, - [SMALL_STATE(2775)] = 83234, - [SMALL_STATE(2776)] = 83251, - [SMALL_STATE(2777)] = 83274, - [SMALL_STATE(2778)] = 83293, - [SMALL_STATE(2779)] = 83316, - [SMALL_STATE(2780)] = 83335, - [SMALL_STATE(2781)] = 83358, - [SMALL_STATE(2782)] = 83381, - [SMALL_STATE(2783)] = 83404, - [SMALL_STATE(2784)] = 83427, - [SMALL_STATE(2785)] = 83450, - [SMALL_STATE(2786)] = 83471, - [SMALL_STATE(2787)] = 83494, - [SMALL_STATE(2788)] = 83517, - [SMALL_STATE(2789)] = 83540, - [SMALL_STATE(2790)] = 83559, - [SMALL_STATE(2791)] = 83582, - [SMALL_STATE(2792)] = 83605, - [SMALL_STATE(2793)] = 83628, - [SMALL_STATE(2794)] = 83651, - [SMALL_STATE(2795)] = 83670, - [SMALL_STATE(2796)] = 83693, - [SMALL_STATE(2797)] = 83712, - [SMALL_STATE(2798)] = 83731, - [SMALL_STATE(2799)] = 83750, - [SMALL_STATE(2800)] = 83773, - [SMALL_STATE(2801)] = 83796, - [SMALL_STATE(2802)] = 83815, - [SMALL_STATE(2803)] = 83838, - [SMALL_STATE(2804)] = 83859, - [SMALL_STATE(2805)] = 83880, - [SMALL_STATE(2806)] = 83899, - [SMALL_STATE(2807)] = 83922, - [SMALL_STATE(2808)] = 83945, - [SMALL_STATE(2809)] = 83968, - [SMALL_STATE(2810)] = 83987, - [SMALL_STATE(2811)] = 84006, - [SMALL_STATE(2812)] = 84025, - [SMALL_STATE(2813)] = 84048, - [SMALL_STATE(2814)] = 84071, - [SMALL_STATE(2815)] = 84094, - [SMALL_STATE(2816)] = 84117, - [SMALL_STATE(2817)] = 84138, - [SMALL_STATE(2818)] = 84161, - [SMALL_STATE(2819)] = 84184, - [SMALL_STATE(2820)] = 84207, - [SMALL_STATE(2821)] = 84230, - [SMALL_STATE(2822)] = 84253, - [SMALL_STATE(2823)] = 84276, - [SMALL_STATE(2824)] = 84299, - [SMALL_STATE(2825)] = 84320, - [SMALL_STATE(2826)] = 84341, - [SMALL_STATE(2827)] = 84364, - [SMALL_STATE(2828)] = 84387, - [SMALL_STATE(2829)] = 84410, - [SMALL_STATE(2830)] = 84431, - [SMALL_STATE(2831)] = 84454, - [SMALL_STATE(2832)] = 84477, - [SMALL_STATE(2833)] = 84496, - [SMALL_STATE(2834)] = 84519, - [SMALL_STATE(2835)] = 84542, - [SMALL_STATE(2836)] = 84561, - [SMALL_STATE(2837)] = 84584, - [SMALL_STATE(2838)] = 84607, - [SMALL_STATE(2839)] = 84626, - [SMALL_STATE(2840)] = 84649, - [SMALL_STATE(2841)] = 84672, - [SMALL_STATE(2842)] = 84695, - [SMALL_STATE(2843)] = 84718, - [SMALL_STATE(2844)] = 84741, - [SMALL_STATE(2845)] = 84764, - [SMALL_STATE(2846)] = 84787, - [SMALL_STATE(2847)] = 84807, - [SMALL_STATE(2848)] = 84827, - [SMALL_STATE(2849)] = 84843, - [SMALL_STATE(2850)] = 84863, - [SMALL_STATE(2851)] = 84883, - [SMALL_STATE(2852)] = 84903, - [SMALL_STATE(2853)] = 84919, - [SMALL_STATE(2854)] = 84939, - [SMALL_STATE(2855)] = 84955, - [SMALL_STATE(2856)] = 84975, - [SMALL_STATE(2857)] = 84991, - [SMALL_STATE(2858)] = 85007, - [SMALL_STATE(2859)] = 85023, - [SMALL_STATE(2860)] = 85043, - [SMALL_STATE(2861)] = 85059, - [SMALL_STATE(2862)] = 85075, - [SMALL_STATE(2863)] = 85095, - [SMALL_STATE(2864)] = 85115, - [SMALL_STATE(2865)] = 85131, - [SMALL_STATE(2866)] = 85151, - [SMALL_STATE(2867)] = 85171, - [SMALL_STATE(2868)] = 85191, - [SMALL_STATE(2869)] = 85211, - [SMALL_STATE(2870)] = 85227, - [SMALL_STATE(2871)] = 85243, - [SMALL_STATE(2872)] = 85263, - [SMALL_STATE(2873)] = 85283, - [SMALL_STATE(2874)] = 85299, - [SMALL_STATE(2875)] = 85319, - [SMALL_STATE(2876)] = 85335, - [SMALL_STATE(2877)] = 85353, - [SMALL_STATE(2878)] = 85373, - [SMALL_STATE(2879)] = 85393, - [SMALL_STATE(2880)] = 85413, - [SMALL_STATE(2881)] = 85429, - [SMALL_STATE(2882)] = 85449, - [SMALL_STATE(2883)] = 85469, - [SMALL_STATE(2884)] = 85485, - [SMALL_STATE(2885)] = 85505, - [SMALL_STATE(2886)] = 85525, - [SMALL_STATE(2887)] = 85541, - [SMALL_STATE(2888)] = 85559, - [SMALL_STATE(2889)] = 85579, - [SMALL_STATE(2890)] = 85599, - [SMALL_STATE(2891)] = 85619, - [SMALL_STATE(2892)] = 85639, - [SMALL_STATE(2893)] = 85659, - [SMALL_STATE(2894)] = 85677, - [SMALL_STATE(2895)] = 85695, - [SMALL_STATE(2896)] = 85713, - [SMALL_STATE(2897)] = 85733, - [SMALL_STATE(2898)] = 85753, - [SMALL_STATE(2899)] = 85773, - [SMALL_STATE(2900)] = 85793, - [SMALL_STATE(2901)] = 85813, - [SMALL_STATE(2902)] = 85833, - [SMALL_STATE(2903)] = 85853, - [SMALL_STATE(2904)] = 85873, - [SMALL_STATE(2905)] = 85893, - [SMALL_STATE(2906)] = 85913, - [SMALL_STATE(2907)] = 85933, - [SMALL_STATE(2908)] = 85953, - [SMALL_STATE(2909)] = 85973, - [SMALL_STATE(2910)] = 85993, - [SMALL_STATE(2911)] = 86013, - [SMALL_STATE(2912)] = 86033, - [SMALL_STATE(2913)] = 86053, - [SMALL_STATE(2914)] = 86073, - [SMALL_STATE(2915)] = 86093, - [SMALL_STATE(2916)] = 86113, - [SMALL_STATE(2917)] = 86133, - [SMALL_STATE(2918)] = 86151, - [SMALL_STATE(2919)] = 86171, - [SMALL_STATE(2920)] = 86191, - [SMALL_STATE(2921)] = 86211, - [SMALL_STATE(2922)] = 86227, - [SMALL_STATE(2923)] = 86247, - [SMALL_STATE(2924)] = 86265, - [SMALL_STATE(2925)] = 86281, - [SMALL_STATE(2926)] = 86301, - [SMALL_STATE(2927)] = 86321, - [SMALL_STATE(2928)] = 86341, - [SMALL_STATE(2929)] = 86359, - [SMALL_STATE(2930)] = 86379, - [SMALL_STATE(2931)] = 86399, - [SMALL_STATE(2932)] = 86419, - [SMALL_STATE(2933)] = 86435, - [SMALL_STATE(2934)] = 86451, - [SMALL_STATE(2935)] = 86471, - [SMALL_STATE(2936)] = 86491, - [SMALL_STATE(2937)] = 86511, - [SMALL_STATE(2938)] = 86527, - [SMALL_STATE(2939)] = 86547, - [SMALL_STATE(2940)] = 86567, - [SMALL_STATE(2941)] = 86587, - [SMALL_STATE(2942)] = 86605, - [SMALL_STATE(2943)] = 86625, - [SMALL_STATE(2944)] = 86645, - [SMALL_STATE(2945)] = 86661, - [SMALL_STATE(2946)] = 86681, - [SMALL_STATE(2947)] = 86697, - [SMALL_STATE(2948)] = 86717, - [SMALL_STATE(2949)] = 86737, - [SMALL_STATE(2950)] = 86755, - [SMALL_STATE(2951)] = 86771, - [SMALL_STATE(2952)] = 86791, - [SMALL_STATE(2953)] = 86807, - [SMALL_STATE(2954)] = 86827, - [SMALL_STATE(2955)] = 86845, - [SMALL_STATE(2956)] = 86861, - [SMALL_STATE(2957)] = 86881, - [SMALL_STATE(2958)] = 86901, - [SMALL_STATE(2959)] = 86917, - [SMALL_STATE(2960)] = 86937, - [SMALL_STATE(2961)] = 86957, - [SMALL_STATE(2962)] = 86977, - [SMALL_STATE(2963)] = 86997, - [SMALL_STATE(2964)] = 87017, - [SMALL_STATE(2965)] = 87037, - [SMALL_STATE(2966)] = 87057, - [SMALL_STATE(2967)] = 87077, - [SMALL_STATE(2968)] = 87097, - [SMALL_STATE(2969)] = 87117, - [SMALL_STATE(2970)] = 87135, - [SMALL_STATE(2971)] = 87155, - [SMALL_STATE(2972)] = 87175, - [SMALL_STATE(2973)] = 87193, - [SMALL_STATE(2974)] = 87211, - [SMALL_STATE(2975)] = 87231, - [SMALL_STATE(2976)] = 87251, - [SMALL_STATE(2977)] = 87269, - [SMALL_STATE(2978)] = 87289, - [SMALL_STATE(2979)] = 87309, - [SMALL_STATE(2980)] = 87329, - [SMALL_STATE(2981)] = 87347, - [SMALL_STATE(2982)] = 87363, - [SMALL_STATE(2983)] = 87383, - [SMALL_STATE(2984)] = 87401, - [SMALL_STATE(2985)] = 87421, - [SMALL_STATE(2986)] = 87441, - [SMALL_STATE(2987)] = 87461, - [SMALL_STATE(2988)] = 87481, - [SMALL_STATE(2989)] = 87501, - [SMALL_STATE(2990)] = 87517, - [SMALL_STATE(2991)] = 87533, - [SMALL_STATE(2992)] = 87553, - [SMALL_STATE(2993)] = 87571, - [SMALL_STATE(2994)] = 87591, - [SMALL_STATE(2995)] = 87609, - [SMALL_STATE(2996)] = 87629, - [SMALL_STATE(2997)] = 87649, - [SMALL_STATE(2998)] = 87669, - [SMALL_STATE(2999)] = 87689, - [SMALL_STATE(3000)] = 87707, - [SMALL_STATE(3001)] = 87727, - [SMALL_STATE(3002)] = 87747, - [SMALL_STATE(3003)] = 87767, - [SMALL_STATE(3004)] = 87787, - [SMALL_STATE(3005)] = 87805, - [SMALL_STATE(3006)] = 87825, - [SMALL_STATE(3007)] = 87845, - [SMALL_STATE(3008)] = 87865, - [SMALL_STATE(3009)] = 87885, - [SMALL_STATE(3010)] = 87905, - [SMALL_STATE(3011)] = 87925, - [SMALL_STATE(3012)] = 87945, - [SMALL_STATE(3013)] = 87961, - [SMALL_STATE(3014)] = 87981, - [SMALL_STATE(3015)] = 88001, - [SMALL_STATE(3016)] = 88021, - [SMALL_STATE(3017)] = 88041, - [SMALL_STATE(3018)] = 88061, - [SMALL_STATE(3019)] = 88081, - [SMALL_STATE(3020)] = 88097, - [SMALL_STATE(3021)] = 88117, - [SMALL_STATE(3022)] = 88137, - [SMALL_STATE(3023)] = 88157, - [SMALL_STATE(3024)] = 88177, - [SMALL_STATE(3025)] = 88197, - [SMALL_STATE(3026)] = 88217, - [SMALL_STATE(3027)] = 88233, - [SMALL_STATE(3028)] = 88249, - [SMALL_STATE(3029)] = 88269, - [SMALL_STATE(3030)] = 88289, - [SMALL_STATE(3031)] = 88309, - [SMALL_STATE(3032)] = 88329, - [SMALL_STATE(3033)] = 88349, - [SMALL_STATE(3034)] = 88367, - [SMALL_STATE(3035)] = 88387, - [SMALL_STATE(3036)] = 88403, - [SMALL_STATE(3037)] = 88423, - [SMALL_STATE(3038)] = 88439, - [SMALL_STATE(3039)] = 88459, - [SMALL_STATE(3040)] = 88479, - [SMALL_STATE(3041)] = 88497, - [SMALL_STATE(3042)] = 88515, - [SMALL_STATE(3043)] = 88535, - [SMALL_STATE(3044)] = 88555, - [SMALL_STATE(3045)] = 88575, - [SMALL_STATE(3046)] = 88595, - [SMALL_STATE(3047)] = 88611, - [SMALL_STATE(3048)] = 88627, - [SMALL_STATE(3049)] = 88647, - [SMALL_STATE(3050)] = 88667, - [SMALL_STATE(3051)] = 88687, - [SMALL_STATE(3052)] = 88707, - [SMALL_STATE(3053)] = 88727, - [SMALL_STATE(3054)] = 88745, - [SMALL_STATE(3055)] = 88765, - [SMALL_STATE(3056)] = 88783, - [SMALL_STATE(3057)] = 88799, - [SMALL_STATE(3058)] = 88819, - [SMALL_STATE(3059)] = 88839, - [SMALL_STATE(3060)] = 88857, - [SMALL_STATE(3061)] = 88877, - [SMALL_STATE(3062)] = 88897, - [SMALL_STATE(3063)] = 88917, - [SMALL_STATE(3064)] = 88935, - [SMALL_STATE(3065)] = 88955, - [SMALL_STATE(3066)] = 88971, - [SMALL_STATE(3067)] = 88991, - [SMALL_STATE(3068)] = 89011, - [SMALL_STATE(3069)] = 89031, - [SMALL_STATE(3070)] = 89051, - [SMALL_STATE(3071)] = 89069, - [SMALL_STATE(3072)] = 89089, - [SMALL_STATE(3073)] = 89107, - [SMALL_STATE(3074)] = 89125, - [SMALL_STATE(3075)] = 89145, - [SMALL_STATE(3076)] = 89163, - [SMALL_STATE(3077)] = 89179, - [SMALL_STATE(3078)] = 89195, - [SMALL_STATE(3079)] = 89215, - [SMALL_STATE(3080)] = 89235, - [SMALL_STATE(3081)] = 89255, - [SMALL_STATE(3082)] = 89275, - [SMALL_STATE(3083)] = 89291, - [SMALL_STATE(3084)] = 89311, - [SMALL_STATE(3085)] = 89331, - [SMALL_STATE(3086)] = 89351, - [SMALL_STATE(3087)] = 89367, - [SMALL_STATE(3088)] = 89387, - [SMALL_STATE(3089)] = 89407, - [SMALL_STATE(3090)] = 89423, - [SMALL_STATE(3091)] = 89443, - [SMALL_STATE(3092)] = 89463, - [SMALL_STATE(3093)] = 89479, - [SMALL_STATE(3094)] = 89495, - [SMALL_STATE(3095)] = 89511, - [SMALL_STATE(3096)] = 89531, - [SMALL_STATE(3097)] = 89551, - [SMALL_STATE(3098)] = 89571, - [SMALL_STATE(3099)] = 89591, - [SMALL_STATE(3100)] = 89609, - [SMALL_STATE(3101)] = 89625, - [SMALL_STATE(3102)] = 89643, - [SMALL_STATE(3103)] = 89659, - [SMALL_STATE(3104)] = 89675, - [SMALL_STATE(3105)] = 89695, - [SMALL_STATE(3106)] = 89715, - [SMALL_STATE(3107)] = 89735, - [SMALL_STATE(3108)] = 89751, - [SMALL_STATE(3109)] = 89767, - [SMALL_STATE(3110)] = 89785, - [SMALL_STATE(3111)] = 89805, - [SMALL_STATE(3112)] = 89825, - [SMALL_STATE(3113)] = 89845, - [SMALL_STATE(3114)] = 89865, - [SMALL_STATE(3115)] = 89885, - [SMALL_STATE(3116)] = 89905, - [SMALL_STATE(3117)] = 89925, - [SMALL_STATE(3118)] = 89945, - [SMALL_STATE(3119)] = 89963, - [SMALL_STATE(3120)] = 89983, - [SMALL_STATE(3121)] = 90003, - [SMALL_STATE(3122)] = 90021, - [SMALL_STATE(3123)] = 90041, - [SMALL_STATE(3124)] = 90061, - [SMALL_STATE(3125)] = 90081, - [SMALL_STATE(3126)] = 90101, - [SMALL_STATE(3127)] = 90121, - [SMALL_STATE(3128)] = 90141, - [SMALL_STATE(3129)] = 90159, - [SMALL_STATE(3130)] = 90179, - [SMALL_STATE(3131)] = 90199, - [SMALL_STATE(3132)] = 90219, - [SMALL_STATE(3133)] = 90235, - [SMALL_STATE(3134)] = 90255, - [SMALL_STATE(3135)] = 90273, - [SMALL_STATE(3136)] = 90293, - [SMALL_STATE(3137)] = 90313, - [SMALL_STATE(3138)] = 90333, - [SMALL_STATE(3139)] = 90351, - [SMALL_STATE(3140)] = 90371, - [SMALL_STATE(3141)] = 90387, - [SMALL_STATE(3142)] = 90407, - [SMALL_STATE(3143)] = 90425, - [SMALL_STATE(3144)] = 90445, - [SMALL_STATE(3145)] = 90465, - [SMALL_STATE(3146)] = 90485, - [SMALL_STATE(3147)] = 90505, - [SMALL_STATE(3148)] = 90525, - [SMALL_STATE(3149)] = 90545, - [SMALL_STATE(3150)] = 90565, - [SMALL_STATE(3151)] = 90585, - [SMALL_STATE(3152)] = 90605, - [SMALL_STATE(3153)] = 90621, - [SMALL_STATE(3154)] = 90641, - [SMALL_STATE(3155)] = 90661, - [SMALL_STATE(3156)] = 90681, - [SMALL_STATE(3157)] = 90698, - [SMALL_STATE(3158)] = 90715, - [SMALL_STATE(3159)] = 90732, - [SMALL_STATE(3160)] = 90749, - [SMALL_STATE(3161)] = 90766, - [SMALL_STATE(3162)] = 90783, - [SMALL_STATE(3163)] = 90800, - [SMALL_STATE(3164)] = 90815, - [SMALL_STATE(3165)] = 90832, - [SMALL_STATE(3166)] = 90849, - [SMALL_STATE(3167)] = 90866, - [SMALL_STATE(3168)] = 90883, - [SMALL_STATE(3169)] = 90900, - [SMALL_STATE(3170)] = 90917, - [SMALL_STATE(3171)] = 90932, - [SMALL_STATE(3172)] = 90949, - [SMALL_STATE(3173)] = 90966, - [SMALL_STATE(3174)] = 90983, - [SMALL_STATE(3175)] = 91000, - [SMALL_STATE(3176)] = 91017, - [SMALL_STATE(3177)] = 91034, - [SMALL_STATE(3178)] = 91049, - [SMALL_STATE(3179)] = 91066, - [SMALL_STATE(3180)] = 91083, - [SMALL_STATE(3181)] = 91100, - [SMALL_STATE(3182)] = 91115, - [SMALL_STATE(3183)] = 91132, - [SMALL_STATE(3184)] = 91147, - [SMALL_STATE(3185)] = 91162, - [SMALL_STATE(3186)] = 91179, - [SMALL_STATE(3187)] = 91196, - [SMALL_STATE(3188)] = 91213, - [SMALL_STATE(3189)] = 91228, - [SMALL_STATE(3190)] = 91245, - [SMALL_STATE(3191)] = 91262, - [SMALL_STATE(3192)] = 91277, - [SMALL_STATE(3193)] = 91294, - [SMALL_STATE(3194)] = 91311, - [SMALL_STATE(3195)] = 91328, - [SMALL_STATE(3196)] = 91345, - [SMALL_STATE(3197)] = 91362, - [SMALL_STATE(3198)] = 91379, - [SMALL_STATE(3199)] = 91396, - [SMALL_STATE(3200)] = 91411, - [SMALL_STATE(3201)] = 91428, - [SMALL_STATE(3202)] = 91445, - [SMALL_STATE(3203)] = 91462, - [SMALL_STATE(3204)] = 91479, - [SMALL_STATE(3205)] = 91496, - [SMALL_STATE(3206)] = 91513, - [SMALL_STATE(3207)] = 91528, - [SMALL_STATE(3208)] = 91545, - [SMALL_STATE(3209)] = 91562, - [SMALL_STATE(3210)] = 91579, - [SMALL_STATE(3211)] = 91596, - [SMALL_STATE(3212)] = 91613, - [SMALL_STATE(3213)] = 91630, - [SMALL_STATE(3214)] = 91647, - [SMALL_STATE(3215)] = 91664, - [SMALL_STATE(3216)] = 91679, - [SMALL_STATE(3217)] = 91694, - [SMALL_STATE(3218)] = 91711, - [SMALL_STATE(3219)] = 91728, - [SMALL_STATE(3220)] = 91743, - [SMALL_STATE(3221)] = 91758, - [SMALL_STATE(3222)] = 91775, - [SMALL_STATE(3223)] = 91790, - [SMALL_STATE(3224)] = 91807, - [SMALL_STATE(3225)] = 91822, - [SMALL_STATE(3226)] = 91839, - [SMALL_STATE(3227)] = 91856, - [SMALL_STATE(3228)] = 91873, - [SMALL_STATE(3229)] = 91890, - [SMALL_STATE(3230)] = 91907, - [SMALL_STATE(3231)] = 91924, - [SMALL_STATE(3232)] = 91941, - [SMALL_STATE(3233)] = 91958, - [SMALL_STATE(3234)] = 91975, - [SMALL_STATE(3235)] = 91990, - [SMALL_STATE(3236)] = 92007, - [SMALL_STATE(3237)] = 92024, - [SMALL_STATE(3238)] = 92041, - [SMALL_STATE(3239)] = 92056, - [SMALL_STATE(3240)] = 92073, - [SMALL_STATE(3241)] = 92090, - [SMALL_STATE(3242)] = 92107, - [SMALL_STATE(3243)] = 92124, - [SMALL_STATE(3244)] = 92141, - [SMALL_STATE(3245)] = 92156, - [SMALL_STATE(3246)] = 92173, - [SMALL_STATE(3247)] = 92190, - [SMALL_STATE(3248)] = 92207, - [SMALL_STATE(3249)] = 92224, - [SMALL_STATE(3250)] = 92241, - [SMALL_STATE(3251)] = 92258, - [SMALL_STATE(3252)] = 92275, - [SMALL_STATE(3253)] = 92292, - [SMALL_STATE(3254)] = 92309, - [SMALL_STATE(3255)] = 92326, - [SMALL_STATE(3256)] = 92343, - [SMALL_STATE(3257)] = 92360, - [SMALL_STATE(3258)] = 92375, - [SMALL_STATE(3259)] = 92390, - [SMALL_STATE(3260)] = 92405, - [SMALL_STATE(3261)] = 92422, - [SMALL_STATE(3262)] = 92439, - [SMALL_STATE(3263)] = 92456, - [SMALL_STATE(3264)] = 92473, - [SMALL_STATE(3265)] = 92490, - [SMALL_STATE(3266)] = 92507, - [SMALL_STATE(3267)] = 92524, - [SMALL_STATE(3268)] = 92541, - [SMALL_STATE(3269)] = 92558, - [SMALL_STATE(3270)] = 92573, - [SMALL_STATE(3271)] = 92588, - [SMALL_STATE(3272)] = 92605, - [SMALL_STATE(3273)] = 92620, - [SMALL_STATE(3274)] = 92637, - [SMALL_STATE(3275)] = 92654, - [SMALL_STATE(3276)] = 92671, - [SMALL_STATE(3277)] = 92688, - [SMALL_STATE(3278)] = 92705, - [SMALL_STATE(3279)] = 92720, - [SMALL_STATE(3280)] = 92737, - [SMALL_STATE(3281)] = 92754, - [SMALL_STATE(3282)] = 92771, - [SMALL_STATE(3283)] = 92788, - [SMALL_STATE(3284)] = 92805, - [SMALL_STATE(3285)] = 92822, - [SMALL_STATE(3286)] = 92839, - [SMALL_STATE(3287)] = 92856, - [SMALL_STATE(3288)] = 92873, - [SMALL_STATE(3289)] = 92890, - [SMALL_STATE(3290)] = 92907, - [SMALL_STATE(3291)] = 92924, - [SMALL_STATE(3292)] = 92941, - [SMALL_STATE(3293)] = 92958, - [SMALL_STATE(3294)] = 92975, - [SMALL_STATE(3295)] = 92992, - [SMALL_STATE(3296)] = 93009, - [SMALL_STATE(3297)] = 93026, - [SMALL_STATE(3298)] = 93041, - [SMALL_STATE(3299)] = 93058, - [SMALL_STATE(3300)] = 93075, - [SMALL_STATE(3301)] = 93090, - [SMALL_STATE(3302)] = 93107, - [SMALL_STATE(3303)] = 93124, - [SMALL_STATE(3304)] = 93141, - [SMALL_STATE(3305)] = 93156, - [SMALL_STATE(3306)] = 93173, - [SMALL_STATE(3307)] = 93190, - [SMALL_STATE(3308)] = 93207, - [SMALL_STATE(3309)] = 93224, - [SMALL_STATE(3310)] = 93241, - [SMALL_STATE(3311)] = 93258, - [SMALL_STATE(3312)] = 93273, - [SMALL_STATE(3313)] = 93290, - [SMALL_STATE(3314)] = 93307, - [SMALL_STATE(3315)] = 93324, - [SMALL_STATE(3316)] = 93341, - [SMALL_STATE(3317)] = 93356, - [SMALL_STATE(3318)] = 93373, - [SMALL_STATE(3319)] = 93390, - [SMALL_STATE(3320)] = 93407, - [SMALL_STATE(3321)] = 93424, - [SMALL_STATE(3322)] = 93441, - [SMALL_STATE(3323)] = 93456, - [SMALL_STATE(3324)] = 93473, - [SMALL_STATE(3325)] = 93490, - [SMALL_STATE(3326)] = 93507, - [SMALL_STATE(3327)] = 93522, - [SMALL_STATE(3328)] = 93539, - [SMALL_STATE(3329)] = 93556, - [SMALL_STATE(3330)] = 93573, - [SMALL_STATE(3331)] = 93590, - [SMALL_STATE(3332)] = 93607, - [SMALL_STATE(3333)] = 93624, - [SMALL_STATE(3334)] = 93639, - [SMALL_STATE(3335)] = 93656, - [SMALL_STATE(3336)] = 93673, - [SMALL_STATE(3337)] = 93690, - [SMALL_STATE(3338)] = 93707, - [SMALL_STATE(3339)] = 93724, - [SMALL_STATE(3340)] = 93739, - [SMALL_STATE(3341)] = 93756, - [SMALL_STATE(3342)] = 93771, - [SMALL_STATE(3343)] = 93788, - [SMALL_STATE(3344)] = 93805, - [SMALL_STATE(3345)] = 93822, - [SMALL_STATE(3346)] = 93839, - [SMALL_STATE(3347)] = 93856, - [SMALL_STATE(3348)] = 93873, - [SMALL_STATE(3349)] = 93888, - [SMALL_STATE(3350)] = 93905, - [SMALL_STATE(3351)] = 93922, - [SMALL_STATE(3352)] = 93939, - [SMALL_STATE(3353)] = 93956, - [SMALL_STATE(3354)] = 93973, - [SMALL_STATE(3355)] = 93990, - [SMALL_STATE(3356)] = 94007, - [SMALL_STATE(3357)] = 94024, - [SMALL_STATE(3358)] = 94041, - [SMALL_STATE(3359)] = 94058, - [SMALL_STATE(3360)] = 94075, - [SMALL_STATE(3361)] = 94092, - [SMALL_STATE(3362)] = 94107, - [SMALL_STATE(3363)] = 94124, - [SMALL_STATE(3364)] = 94139, - [SMALL_STATE(3365)] = 94156, - [SMALL_STATE(3366)] = 94171, - [SMALL_STATE(3367)] = 94188, - [SMALL_STATE(3368)] = 94205, - [SMALL_STATE(3369)] = 94222, - [SMALL_STATE(3370)] = 94239, - [SMALL_STATE(3371)] = 94254, - [SMALL_STATE(3372)] = 94271, - [SMALL_STATE(3373)] = 94286, - [SMALL_STATE(3374)] = 94303, - [SMALL_STATE(3375)] = 94320, - [SMALL_STATE(3376)] = 94337, - [SMALL_STATE(3377)] = 94354, - [SMALL_STATE(3378)] = 94371, - [SMALL_STATE(3379)] = 94388, - [SMALL_STATE(3380)] = 94403, - [SMALL_STATE(3381)] = 94420, - [SMALL_STATE(3382)] = 94437, - [SMALL_STATE(3383)] = 94452, - [SMALL_STATE(3384)] = 94469, - [SMALL_STATE(3385)] = 94486, - [SMALL_STATE(3386)] = 94503, - [SMALL_STATE(3387)] = 94520, - [SMALL_STATE(3388)] = 94537, - [SMALL_STATE(3389)] = 94554, - [SMALL_STATE(3390)] = 94571, - [SMALL_STATE(3391)] = 94586, - [SMALL_STATE(3392)] = 94603, - [SMALL_STATE(3393)] = 94618, - [SMALL_STATE(3394)] = 94635, - [SMALL_STATE(3395)] = 94652, - [SMALL_STATE(3396)] = 94669, - [SMALL_STATE(3397)] = 94686, - [SMALL_STATE(3398)] = 94701, - [SMALL_STATE(3399)] = 94718, - [SMALL_STATE(3400)] = 94735, - [SMALL_STATE(3401)] = 94752, - [SMALL_STATE(3402)] = 94769, - [SMALL_STATE(3403)] = 94786, - [SMALL_STATE(3404)] = 94803, - [SMALL_STATE(3405)] = 94820, - [SMALL_STATE(3406)] = 94837, - [SMALL_STATE(3407)] = 94854, - [SMALL_STATE(3408)] = 94871, - [SMALL_STATE(3409)] = 94888, - [SMALL_STATE(3410)] = 94903, - [SMALL_STATE(3411)] = 94920, - [SMALL_STATE(3412)] = 94935, - [SMALL_STATE(3413)] = 94950, - [SMALL_STATE(3414)] = 94967, - [SMALL_STATE(3415)] = 94982, - [SMALL_STATE(3416)] = 94999, - [SMALL_STATE(3417)] = 95014, - [SMALL_STATE(3418)] = 95031, - [SMALL_STATE(3419)] = 95048, - [SMALL_STATE(3420)] = 95065, - [SMALL_STATE(3421)] = 95082, - [SMALL_STATE(3422)] = 95099, - [SMALL_STATE(3423)] = 95116, - [SMALL_STATE(3424)] = 95133, - [SMALL_STATE(3425)] = 95150, - [SMALL_STATE(3426)] = 95167, - [SMALL_STATE(3427)] = 95184, - [SMALL_STATE(3428)] = 95201, - [SMALL_STATE(3429)] = 95216, - [SMALL_STATE(3430)] = 95233, - [SMALL_STATE(3431)] = 95250, - [SMALL_STATE(3432)] = 95267, - [SMALL_STATE(3433)] = 95284, - [SMALL_STATE(3434)] = 95301, - [SMALL_STATE(3435)] = 95318, - [SMALL_STATE(3436)] = 95333, - [SMALL_STATE(3437)] = 95350, - [SMALL_STATE(3438)] = 95367, - [SMALL_STATE(3439)] = 95384, - [SMALL_STATE(3440)] = 95401, - [SMALL_STATE(3441)] = 95418, - [SMALL_STATE(3442)] = 95435, - [SMALL_STATE(3443)] = 95452, - [SMALL_STATE(3444)] = 95469, - [SMALL_STATE(3445)] = 95486, - [SMALL_STATE(3446)] = 95503, - [SMALL_STATE(3447)] = 95520, - [SMALL_STATE(3448)] = 95535, - [SMALL_STATE(3449)] = 95550, - [SMALL_STATE(3450)] = 95567, - [SMALL_STATE(3451)] = 95584, - [SMALL_STATE(3452)] = 95599, - [SMALL_STATE(3453)] = 95616, - [SMALL_STATE(3454)] = 95633, - [SMALL_STATE(3455)] = 95650, - [SMALL_STATE(3456)] = 95667, - [SMALL_STATE(3457)] = 95684, - [SMALL_STATE(3458)] = 95701, - [SMALL_STATE(3459)] = 95716, - [SMALL_STATE(3460)] = 95730, - [SMALL_STATE(3461)] = 95744, - [SMALL_STATE(3462)] = 95758, - [SMALL_STATE(3463)] = 95772, - [SMALL_STATE(3464)] = 95786, - [SMALL_STATE(3465)] = 95800, - [SMALL_STATE(3466)] = 95814, - [SMALL_STATE(3467)] = 95828, - [SMALL_STATE(3468)] = 95842, - [SMALL_STATE(3469)] = 95856, - [SMALL_STATE(3470)] = 95870, - [SMALL_STATE(3471)] = 95884, - [SMALL_STATE(3472)] = 95898, - [SMALL_STATE(3473)] = 95912, - [SMALL_STATE(3474)] = 95926, - [SMALL_STATE(3475)] = 95940, - [SMALL_STATE(3476)] = 95954, - [SMALL_STATE(3477)] = 95968, - [SMALL_STATE(3478)] = 95982, - [SMALL_STATE(3479)] = 95996, - [SMALL_STATE(3480)] = 96010, - [SMALL_STATE(3481)] = 96024, - [SMALL_STATE(3482)] = 96038, - [SMALL_STATE(3483)] = 96052, - [SMALL_STATE(3484)] = 96066, - [SMALL_STATE(3485)] = 96080, - [SMALL_STATE(3486)] = 96094, - [SMALL_STATE(3487)] = 96108, - [SMALL_STATE(3488)] = 96122, - [SMALL_STATE(3489)] = 96136, - [SMALL_STATE(3490)] = 96150, - [SMALL_STATE(3491)] = 96164, - [SMALL_STATE(3492)] = 96178, - [SMALL_STATE(3493)] = 96192, - [SMALL_STATE(3494)] = 96206, - [SMALL_STATE(3495)] = 96220, - [SMALL_STATE(3496)] = 96234, - [SMALL_STATE(3497)] = 96248, - [SMALL_STATE(3498)] = 96262, - [SMALL_STATE(3499)] = 96276, - [SMALL_STATE(3500)] = 96290, - [SMALL_STATE(3501)] = 96304, - [SMALL_STATE(3502)] = 96318, - [SMALL_STATE(3503)] = 96332, - [SMALL_STATE(3504)] = 96346, - [SMALL_STATE(3505)] = 96360, - [SMALL_STATE(3506)] = 96374, - [SMALL_STATE(3507)] = 96388, - [SMALL_STATE(3508)] = 96402, - [SMALL_STATE(3509)] = 96416, - [SMALL_STATE(3510)] = 96430, - [SMALL_STATE(3511)] = 96444, - [SMALL_STATE(3512)] = 96458, - [SMALL_STATE(3513)] = 96472, - [SMALL_STATE(3514)] = 96486, - [SMALL_STATE(3515)] = 96500, - [SMALL_STATE(3516)] = 96514, - [SMALL_STATE(3517)] = 96528, - [SMALL_STATE(3518)] = 96542, - [SMALL_STATE(3519)] = 96556, - [SMALL_STATE(3520)] = 96570, - [SMALL_STATE(3521)] = 96584, - [SMALL_STATE(3522)] = 96598, - [SMALL_STATE(3523)] = 96612, - [SMALL_STATE(3524)] = 96626, - [SMALL_STATE(3525)] = 96640, - [SMALL_STATE(3526)] = 96654, - [SMALL_STATE(3527)] = 96668, - [SMALL_STATE(3528)] = 96682, - [SMALL_STATE(3529)] = 96696, - [SMALL_STATE(3530)] = 96710, - [SMALL_STATE(3531)] = 96724, - [SMALL_STATE(3532)] = 96738, - [SMALL_STATE(3533)] = 96752, - [SMALL_STATE(3534)] = 96766, - [SMALL_STATE(3535)] = 96780, - [SMALL_STATE(3536)] = 96794, - [SMALL_STATE(3537)] = 96808, - [SMALL_STATE(3538)] = 96822, - [SMALL_STATE(3539)] = 96836, - [SMALL_STATE(3540)] = 96850, - [SMALL_STATE(3541)] = 96864, - [SMALL_STATE(3542)] = 96878, - [SMALL_STATE(3543)] = 96892, - [SMALL_STATE(3544)] = 96906, - [SMALL_STATE(3545)] = 96920, - [SMALL_STATE(3546)] = 96934, - [SMALL_STATE(3547)] = 96948, - [SMALL_STATE(3548)] = 96962, - [SMALL_STATE(3549)] = 96976, - [SMALL_STATE(3550)] = 96990, - [SMALL_STATE(3551)] = 97004, - [SMALL_STATE(3552)] = 97018, - [SMALL_STATE(3553)] = 97032, - [SMALL_STATE(3554)] = 97046, - [SMALL_STATE(3555)] = 97060, - [SMALL_STATE(3556)] = 97074, - [SMALL_STATE(3557)] = 97088, - [SMALL_STATE(3558)] = 97102, - [SMALL_STATE(3559)] = 97116, - [SMALL_STATE(3560)] = 97130, - [SMALL_STATE(3561)] = 97144, - [SMALL_STATE(3562)] = 97158, - [SMALL_STATE(3563)] = 97172, - [SMALL_STATE(3564)] = 97186, - [SMALL_STATE(3565)] = 97200, - [SMALL_STATE(3566)] = 97214, - [SMALL_STATE(3567)] = 97228, - [SMALL_STATE(3568)] = 97242, - [SMALL_STATE(3569)] = 97256, - [SMALL_STATE(3570)] = 97270, - [SMALL_STATE(3571)] = 97284, - [SMALL_STATE(3572)] = 97298, - [SMALL_STATE(3573)] = 97312, - [SMALL_STATE(3574)] = 97326, - [SMALL_STATE(3575)] = 97340, - [SMALL_STATE(3576)] = 97354, - [SMALL_STATE(3577)] = 97368, - [SMALL_STATE(3578)] = 97382, - [SMALL_STATE(3579)] = 97396, - [SMALL_STATE(3580)] = 97410, - [SMALL_STATE(3581)] = 97424, - [SMALL_STATE(3582)] = 97438, - [SMALL_STATE(3583)] = 97452, - [SMALL_STATE(3584)] = 97466, - [SMALL_STATE(3585)] = 97480, - [SMALL_STATE(3586)] = 97494, - [SMALL_STATE(3587)] = 97508, - [SMALL_STATE(3588)] = 97522, - [SMALL_STATE(3589)] = 97536, - [SMALL_STATE(3590)] = 97550, - [SMALL_STATE(3591)] = 97564, - [SMALL_STATE(3592)] = 97578, - [SMALL_STATE(3593)] = 97592, - [SMALL_STATE(3594)] = 97606, - [SMALL_STATE(3595)] = 97620, - [SMALL_STATE(3596)] = 97634, - [SMALL_STATE(3597)] = 97648, - [SMALL_STATE(3598)] = 97662, - [SMALL_STATE(3599)] = 97676, - [SMALL_STATE(3600)] = 97690, - [SMALL_STATE(3601)] = 97704, - [SMALL_STATE(3602)] = 97718, - [SMALL_STATE(3603)] = 97732, - [SMALL_STATE(3604)] = 97746, - [SMALL_STATE(3605)] = 97760, - [SMALL_STATE(3606)] = 97774, - [SMALL_STATE(3607)] = 97788, - [SMALL_STATE(3608)] = 97802, - [SMALL_STATE(3609)] = 97816, - [SMALL_STATE(3610)] = 97830, - [SMALL_STATE(3611)] = 97844, - [SMALL_STATE(3612)] = 97858, - [SMALL_STATE(3613)] = 97872, - [SMALL_STATE(3614)] = 97886, - [SMALL_STATE(3615)] = 97900, - [SMALL_STATE(3616)] = 97914, - [SMALL_STATE(3617)] = 97928, - [SMALL_STATE(3618)] = 97942, - [SMALL_STATE(3619)] = 97956, - [SMALL_STATE(3620)] = 97970, - [SMALL_STATE(3621)] = 97984, - [SMALL_STATE(3622)] = 97998, - [SMALL_STATE(3623)] = 98012, - [SMALL_STATE(3624)] = 98026, - [SMALL_STATE(3625)] = 98040, - [SMALL_STATE(3626)] = 98054, - [SMALL_STATE(3627)] = 98068, - [SMALL_STATE(3628)] = 98082, - [SMALL_STATE(3629)] = 98096, - [SMALL_STATE(3630)] = 98110, - [SMALL_STATE(3631)] = 98124, - [SMALL_STATE(3632)] = 98138, - [SMALL_STATE(3633)] = 98152, - [SMALL_STATE(3634)] = 98166, - [SMALL_STATE(3635)] = 98180, - [SMALL_STATE(3636)] = 98194, - [SMALL_STATE(3637)] = 98208, - [SMALL_STATE(3638)] = 98222, - [SMALL_STATE(3639)] = 98236, - [SMALL_STATE(3640)] = 98250, - [SMALL_STATE(3641)] = 98264, - [SMALL_STATE(3642)] = 98278, - [SMALL_STATE(3643)] = 98292, - [SMALL_STATE(3644)] = 98306, - [SMALL_STATE(3645)] = 98320, - [SMALL_STATE(3646)] = 98334, - [SMALL_STATE(3647)] = 98348, - [SMALL_STATE(3648)] = 98362, - [SMALL_STATE(3649)] = 98376, - [SMALL_STATE(3650)] = 98390, - [SMALL_STATE(3651)] = 98404, - [SMALL_STATE(3652)] = 98418, - [SMALL_STATE(3653)] = 98432, - [SMALL_STATE(3654)] = 98446, - [SMALL_STATE(3655)] = 98460, - [SMALL_STATE(3656)] = 98474, - [SMALL_STATE(3657)] = 98488, - [SMALL_STATE(3658)] = 98502, - [SMALL_STATE(3659)] = 98516, - [SMALL_STATE(3660)] = 98530, - [SMALL_STATE(3661)] = 98544, - [SMALL_STATE(3662)] = 98558, - [SMALL_STATE(3663)] = 98572, - [SMALL_STATE(3664)] = 98586, - [SMALL_STATE(3665)] = 98600, - [SMALL_STATE(3666)] = 98614, - [SMALL_STATE(3667)] = 98628, - [SMALL_STATE(3668)] = 98642, - [SMALL_STATE(3669)] = 98656, - [SMALL_STATE(3670)] = 98670, - [SMALL_STATE(3671)] = 98684, - [SMALL_STATE(3672)] = 98698, - [SMALL_STATE(3673)] = 98712, - [SMALL_STATE(3674)] = 98726, - [SMALL_STATE(3675)] = 98740, - [SMALL_STATE(3676)] = 98754, - [SMALL_STATE(3677)] = 98768, - [SMALL_STATE(3678)] = 98782, - [SMALL_STATE(3679)] = 98796, - [SMALL_STATE(3680)] = 98810, - [SMALL_STATE(3681)] = 98824, - [SMALL_STATE(3682)] = 98838, - [SMALL_STATE(3683)] = 98852, - [SMALL_STATE(3684)] = 98866, - [SMALL_STATE(3685)] = 98880, - [SMALL_STATE(3686)] = 98894, - [SMALL_STATE(3687)] = 98908, - [SMALL_STATE(3688)] = 98922, - [SMALL_STATE(3689)] = 98936, - [SMALL_STATE(3690)] = 98950, - [SMALL_STATE(3691)] = 98964, - [SMALL_STATE(3692)] = 98978, - [SMALL_STATE(3693)] = 98992, - [SMALL_STATE(3694)] = 99006, - [SMALL_STATE(3695)] = 99020, - [SMALL_STATE(3696)] = 99034, - [SMALL_STATE(3697)] = 99048, - [SMALL_STATE(3698)] = 99062, - [SMALL_STATE(3699)] = 99076, - [SMALL_STATE(3700)] = 99090, - [SMALL_STATE(3701)] = 99104, - [SMALL_STATE(3702)] = 99118, - [SMALL_STATE(3703)] = 99132, - [SMALL_STATE(3704)] = 99146, - [SMALL_STATE(3705)] = 99160, - [SMALL_STATE(3706)] = 99174, - [SMALL_STATE(3707)] = 99188, - [SMALL_STATE(3708)] = 99202, - [SMALL_STATE(3709)] = 99216, - [SMALL_STATE(3710)] = 99230, - [SMALL_STATE(3711)] = 99244, - [SMALL_STATE(3712)] = 99258, - [SMALL_STATE(3713)] = 99272, - [SMALL_STATE(3714)] = 99286, - [SMALL_STATE(3715)] = 99300, - [SMALL_STATE(3716)] = 99314, - [SMALL_STATE(3717)] = 99328, - [SMALL_STATE(3718)] = 99342, - [SMALL_STATE(3719)] = 99356, - [SMALL_STATE(3720)] = 99370, - [SMALL_STATE(3721)] = 99384, - [SMALL_STATE(3722)] = 99398, - [SMALL_STATE(3723)] = 99412, - [SMALL_STATE(3724)] = 99426, - [SMALL_STATE(3725)] = 99440, - [SMALL_STATE(3726)] = 99454, - [SMALL_STATE(3727)] = 99468, - [SMALL_STATE(3728)] = 99482, - [SMALL_STATE(3729)] = 99496, - [SMALL_STATE(3730)] = 99510, - [SMALL_STATE(3731)] = 99524, - [SMALL_STATE(3732)] = 99538, - [SMALL_STATE(3733)] = 99552, - [SMALL_STATE(3734)] = 99566, - [SMALL_STATE(3735)] = 99580, - [SMALL_STATE(3736)] = 99594, - [SMALL_STATE(3737)] = 99608, - [SMALL_STATE(3738)] = 99622, - [SMALL_STATE(3739)] = 99636, - [SMALL_STATE(3740)] = 99650, - [SMALL_STATE(3741)] = 99664, - [SMALL_STATE(3742)] = 99678, - [SMALL_STATE(3743)] = 99692, - [SMALL_STATE(3744)] = 99706, - [SMALL_STATE(3745)] = 99720, - [SMALL_STATE(3746)] = 99734, - [SMALL_STATE(3747)] = 99748, - [SMALL_STATE(3748)] = 99762, - [SMALL_STATE(3749)] = 99776, - [SMALL_STATE(3750)] = 99790, - [SMALL_STATE(3751)] = 99804, - [SMALL_STATE(3752)] = 99818, - [SMALL_STATE(3753)] = 99832, - [SMALL_STATE(3754)] = 99846, - [SMALL_STATE(3755)] = 99860, - [SMALL_STATE(3756)] = 99874, - [SMALL_STATE(3757)] = 99888, - [SMALL_STATE(3758)] = 99902, - [SMALL_STATE(3759)] = 99916, - [SMALL_STATE(3760)] = 99930, - [SMALL_STATE(3761)] = 99944, - [SMALL_STATE(3762)] = 99958, - [SMALL_STATE(3763)] = 99972, - [SMALL_STATE(3764)] = 99986, - [SMALL_STATE(3765)] = 100000, - [SMALL_STATE(3766)] = 100014, - [SMALL_STATE(3767)] = 100028, - [SMALL_STATE(3768)] = 100042, - [SMALL_STATE(3769)] = 100056, - [SMALL_STATE(3770)] = 100070, - [SMALL_STATE(3771)] = 100084, - [SMALL_STATE(3772)] = 100098, - [SMALL_STATE(3773)] = 100112, - [SMALL_STATE(3774)] = 100126, - [SMALL_STATE(3775)] = 100140, - [SMALL_STATE(3776)] = 100154, - [SMALL_STATE(3777)] = 100168, - [SMALL_STATE(3778)] = 100182, - [SMALL_STATE(3779)] = 100186, - [SMALL_STATE(3780)] = 100190, - [SMALL_STATE(3781)] = 100194, - [SMALL_STATE(3782)] = 100198, - [SMALL_STATE(3783)] = 100202, - [SMALL_STATE(3784)] = 100206, + [SMALL_STATE(1208)] = 0, + [SMALL_STATE(1209)] = 75, + [SMALL_STATE(1210)] = 148, + [SMALL_STATE(1211)] = 219, + [SMALL_STATE(1212)] = 319, + [SMALL_STATE(1213)] = 419, + [SMALL_STATE(1214)] = 519, + [SMALL_STATE(1215)] = 596, + [SMALL_STATE(1216)] = 675, + [SMALL_STATE(1217)] = 752, + [SMALL_STATE(1218)] = 829, + [SMALL_STATE(1219)] = 893, + [SMALL_STATE(1220)] = 957, + [SMALL_STATE(1221)] = 1021, + [SMALL_STATE(1222)] = 1085, + [SMALL_STATE(1223)] = 1149, + [SMALL_STATE(1224)] = 1213, + [SMALL_STATE(1225)] = 1277, + [SMALL_STATE(1226)] = 1341, + [SMALL_STATE(1227)] = 1405, + [SMALL_STATE(1228)] = 1473, + [SMALL_STATE(1229)] = 1547, + [SMALL_STATE(1230)] = 1614, + [SMALL_STATE(1231)] = 1681, + [SMALL_STATE(1232)] = 1744, + [SMALL_STATE(1233)] = 1811, + [SMALL_STATE(1234)] = 1912, + [SMALL_STATE(1235)] = 1975, + [SMALL_STATE(1236)] = 2042, + [SMALL_STATE(1237)] = 2105, + [SMALL_STATE(1238)] = 2206, + [SMALL_STATE(1239)] = 2277, + [SMALL_STATE(1240)] = 2348, + [SMALL_STATE(1241)] = 2411, + [SMALL_STATE(1242)] = 2482, + [SMALL_STATE(1243)] = 2545, + [SMALL_STATE(1244)] = 2646, + [SMALL_STATE(1245)] = 2717, + [SMALL_STATE(1246)] = 2781, + [SMALL_STATE(1247)] = 2851, + [SMALL_STATE(1248)] = 2913, + [SMALL_STATE(1249)] = 2975, + [SMALL_STATE(1250)] = 3037, + [SMALL_STATE(1251)] = 3103, + [SMALL_STATE(1252)] = 3165, + [SMALL_STATE(1253)] = 3233, + [SMALL_STATE(1254)] = 3295, + [SMALL_STATE(1255)] = 3357, + [SMALL_STATE(1256)] = 3419, + [SMALL_STATE(1257)] = 3481, + [SMALL_STATE(1258)] = 3545, + [SMALL_STATE(1259)] = 3606, + [SMALL_STATE(1260)] = 3667, + [SMALL_STATE(1261)] = 3728, + [SMALL_STATE(1262)] = 3789, + [SMALL_STATE(1263)] = 3850, + [SMALL_STATE(1264)] = 3911, + [SMALL_STATE(1265)] = 3972, + [SMALL_STATE(1266)] = 4033, + [SMALL_STATE(1267)] = 4094, + [SMALL_STATE(1268)] = 4155, + [SMALL_STATE(1269)] = 4216, + [SMALL_STATE(1270)] = 4277, + [SMALL_STATE(1271)] = 4338, + [SMALL_STATE(1272)] = 4399, + [SMALL_STATE(1273)] = 4460, + [SMALL_STATE(1274)] = 4521, + [SMALL_STATE(1275)] = 4582, + [SMALL_STATE(1276)] = 4643, + [SMALL_STATE(1277)] = 4704, + [SMALL_STATE(1278)] = 4765, + [SMALL_STATE(1279)] = 4826, + [SMALL_STATE(1280)] = 4887, + [SMALL_STATE(1281)] = 4948, + [SMALL_STATE(1282)] = 5009, + [SMALL_STATE(1283)] = 5070, + [SMALL_STATE(1284)] = 5131, + [SMALL_STATE(1285)] = 5192, + [SMALL_STATE(1286)] = 5253, + [SMALL_STATE(1287)] = 5314, + [SMALL_STATE(1288)] = 5375, + [SMALL_STATE(1289)] = 5436, + [SMALL_STATE(1290)] = 5497, + [SMALL_STATE(1291)] = 5558, + [SMALL_STATE(1292)] = 5619, + [SMALL_STATE(1293)] = 5680, + [SMALL_STATE(1294)] = 5741, + [SMALL_STATE(1295)] = 5802, + [SMALL_STATE(1296)] = 5863, + [SMALL_STATE(1297)] = 5924, + [SMALL_STATE(1298)] = 5985, + [SMALL_STATE(1299)] = 6046, + [SMALL_STATE(1300)] = 6107, + [SMALL_STATE(1301)] = 6168, + [SMALL_STATE(1302)] = 6229, + [SMALL_STATE(1303)] = 6290, + [SMALL_STATE(1304)] = 6351, + [SMALL_STATE(1305)] = 6412, + [SMALL_STATE(1306)] = 6473, + [SMALL_STATE(1307)] = 6534, + [SMALL_STATE(1308)] = 6595, + [SMALL_STATE(1309)] = 6656, + [SMALL_STATE(1310)] = 6717, + [SMALL_STATE(1311)] = 6778, + [SMALL_STATE(1312)] = 6839, + [SMALL_STATE(1313)] = 6900, + [SMALL_STATE(1314)] = 6961, + [SMALL_STATE(1315)] = 7022, + [SMALL_STATE(1316)] = 7083, + [SMALL_STATE(1317)] = 7144, + [SMALL_STATE(1318)] = 7205, + [SMALL_STATE(1319)] = 7266, + [SMALL_STATE(1320)] = 7327, + [SMALL_STATE(1321)] = 7388, + [SMALL_STATE(1322)] = 7449, + [SMALL_STATE(1323)] = 7510, + [SMALL_STATE(1324)] = 7571, + [SMALL_STATE(1325)] = 7632, + [SMALL_STATE(1326)] = 7693, + [SMALL_STATE(1327)] = 7754, + [SMALL_STATE(1328)] = 7815, + [SMALL_STATE(1329)] = 7876, + [SMALL_STATE(1330)] = 7937, + [SMALL_STATE(1331)] = 7998, + [SMALL_STATE(1332)] = 8059, + [SMALL_STATE(1333)] = 8120, + [SMALL_STATE(1334)] = 8181, + [SMALL_STATE(1335)] = 8242, + [SMALL_STATE(1336)] = 8303, + [SMALL_STATE(1337)] = 8364, + [SMALL_STATE(1338)] = 8425, + [SMALL_STATE(1339)] = 8486, + [SMALL_STATE(1340)] = 8547, + [SMALL_STATE(1341)] = 8608, + [SMALL_STATE(1342)] = 8669, + [SMALL_STATE(1343)] = 8730, + [SMALL_STATE(1344)] = 8791, + [SMALL_STATE(1345)] = 8852, + [SMALL_STATE(1346)] = 8913, + [SMALL_STATE(1347)] = 8974, + [SMALL_STATE(1348)] = 9035, + [SMALL_STATE(1349)] = 9096, + [SMALL_STATE(1350)] = 9157, + [SMALL_STATE(1351)] = 9218, + [SMALL_STATE(1352)] = 9279, + [SMALL_STATE(1353)] = 9340, + [SMALL_STATE(1354)] = 9401, + [SMALL_STATE(1355)] = 9462, + [SMALL_STATE(1356)] = 9523, + [SMALL_STATE(1357)] = 9584, + [SMALL_STATE(1358)] = 9645, + [SMALL_STATE(1359)] = 9706, + [SMALL_STATE(1360)] = 9767, + [SMALL_STATE(1361)] = 9828, + [SMALL_STATE(1362)] = 9889, + [SMALL_STATE(1363)] = 9950, + [SMALL_STATE(1364)] = 10011, + [SMALL_STATE(1365)] = 10072, + [SMALL_STATE(1366)] = 10133, + [SMALL_STATE(1367)] = 10194, + [SMALL_STATE(1368)] = 10255, + [SMALL_STATE(1369)] = 10316, + [SMALL_STATE(1370)] = 10377, + [SMALL_STATE(1371)] = 10438, + [SMALL_STATE(1372)] = 10499, + [SMALL_STATE(1373)] = 10560, + [SMALL_STATE(1374)] = 10621, + [SMALL_STATE(1375)] = 10682, + [SMALL_STATE(1376)] = 10743, + [SMALL_STATE(1377)] = 10804, + [SMALL_STATE(1378)] = 10865, + [SMALL_STATE(1379)] = 10926, + [SMALL_STATE(1380)] = 10987, + [SMALL_STATE(1381)] = 11048, + [SMALL_STATE(1382)] = 11109, + [SMALL_STATE(1383)] = 11170, + [SMALL_STATE(1384)] = 11231, + [SMALL_STATE(1385)] = 11292, + [SMALL_STATE(1386)] = 11353, + [SMALL_STATE(1387)] = 11414, + [SMALL_STATE(1388)] = 11475, + [SMALL_STATE(1389)] = 11536, + [SMALL_STATE(1390)] = 11597, + [SMALL_STATE(1391)] = 11658, + [SMALL_STATE(1392)] = 11719, + [SMALL_STATE(1393)] = 11780, + [SMALL_STATE(1394)] = 11841, + [SMALL_STATE(1395)] = 11902, + [SMALL_STATE(1396)] = 11963, + [SMALL_STATE(1397)] = 12024, + [SMALL_STATE(1398)] = 12085, + [SMALL_STATE(1399)] = 12146, + [SMALL_STATE(1400)] = 12207, + [SMALL_STATE(1401)] = 12268, + [SMALL_STATE(1402)] = 12329, + [SMALL_STATE(1403)] = 12390, + [SMALL_STATE(1404)] = 12451, + [SMALL_STATE(1405)] = 12512, + [SMALL_STATE(1406)] = 12573, + [SMALL_STATE(1407)] = 12634, + [SMALL_STATE(1408)] = 12695, + [SMALL_STATE(1409)] = 12756, + [SMALL_STATE(1410)] = 12817, + [SMALL_STATE(1411)] = 12880, + [SMALL_STATE(1412)] = 12941, + [SMALL_STATE(1413)] = 13002, + [SMALL_STATE(1414)] = 13063, + [SMALL_STATE(1415)] = 13124, + [SMALL_STATE(1416)] = 13185, + [SMALL_STATE(1417)] = 13248, + [SMALL_STATE(1418)] = 13309, + [SMALL_STATE(1419)] = 13370, + [SMALL_STATE(1420)] = 13431, + [SMALL_STATE(1421)] = 13494, + [SMALL_STATE(1422)] = 13555, + [SMALL_STATE(1423)] = 13616, + [SMALL_STATE(1424)] = 13677, + [SMALL_STATE(1425)] = 13738, + [SMALL_STATE(1426)] = 13799, + [SMALL_STATE(1427)] = 13860, + [SMALL_STATE(1428)] = 13921, + [SMALL_STATE(1429)] = 13982, + [SMALL_STATE(1430)] = 14043, + [SMALL_STATE(1431)] = 14104, + [SMALL_STATE(1432)] = 14165, + [SMALL_STATE(1433)] = 14226, + [SMALL_STATE(1434)] = 14287, + [SMALL_STATE(1435)] = 14348, + [SMALL_STATE(1436)] = 14409, + [SMALL_STATE(1437)] = 14470, + [SMALL_STATE(1438)] = 14533, + [SMALL_STATE(1439)] = 14594, + [SMALL_STATE(1440)] = 14655, + [SMALL_STATE(1441)] = 14716, + [SMALL_STATE(1442)] = 14777, + [SMALL_STATE(1443)] = 14838, + [SMALL_STATE(1444)] = 14903, + [SMALL_STATE(1445)] = 14964, + [SMALL_STATE(1446)] = 15025, + [SMALL_STATE(1447)] = 15086, + [SMALL_STATE(1448)] = 15149, + [SMALL_STATE(1449)] = 15210, + [SMALL_STATE(1450)] = 15271, + [SMALL_STATE(1451)] = 15332, + [SMALL_STATE(1452)] = 15393, + [SMALL_STATE(1453)] = 15454, + [SMALL_STATE(1454)] = 15515, + [SMALL_STATE(1455)] = 15576, + [SMALL_STATE(1456)] = 15637, + [SMALL_STATE(1457)] = 15698, + [SMALL_STATE(1458)] = 15759, + [SMALL_STATE(1459)] = 15820, + [SMALL_STATE(1460)] = 15881, + [SMALL_STATE(1461)] = 15942, + [SMALL_STATE(1462)] = 16003, + [SMALL_STATE(1463)] = 16064, + [SMALL_STATE(1464)] = 16125, + [SMALL_STATE(1465)] = 16186, + [SMALL_STATE(1466)] = 16247, + [SMALL_STATE(1467)] = 16308, + [SMALL_STATE(1468)] = 16371, + [SMALL_STATE(1469)] = 16432, + [SMALL_STATE(1470)] = 16493, + [SMALL_STATE(1471)] = 16554, + [SMALL_STATE(1472)] = 16615, + [SMALL_STATE(1473)] = 16676, + [SMALL_STATE(1474)] = 16737, + [SMALL_STATE(1475)] = 16798, + [SMALL_STATE(1476)] = 16859, + [SMALL_STATE(1477)] = 16920, + [SMALL_STATE(1478)] = 16981, + [SMALL_STATE(1479)] = 17042, + [SMALL_STATE(1480)] = 17103, + [SMALL_STATE(1481)] = 17164, + [SMALL_STATE(1482)] = 17225, + [SMALL_STATE(1483)] = 17286, + [SMALL_STATE(1484)] = 17347, + [SMALL_STATE(1485)] = 17408, + [SMALL_STATE(1486)] = 17469, + [SMALL_STATE(1487)] = 17530, + [SMALL_STATE(1488)] = 17591, + [SMALL_STATE(1489)] = 17652, + [SMALL_STATE(1490)] = 17713, + [SMALL_STATE(1491)] = 17774, + [SMALL_STATE(1492)] = 17835, + [SMALL_STATE(1493)] = 17896, + [SMALL_STATE(1494)] = 17957, + [SMALL_STATE(1495)] = 18018, + [SMALL_STATE(1496)] = 18079, + [SMALL_STATE(1497)] = 18140, + [SMALL_STATE(1498)] = 18201, + [SMALL_STATE(1499)] = 18262, + [SMALL_STATE(1500)] = 18323, + [SMALL_STATE(1501)] = 18384, + [SMALL_STATE(1502)] = 18445, + [SMALL_STATE(1503)] = 18506, + [SMALL_STATE(1504)] = 18567, + [SMALL_STATE(1505)] = 18628, + [SMALL_STATE(1506)] = 18689, + [SMALL_STATE(1507)] = 18750, + [SMALL_STATE(1508)] = 18813, + [SMALL_STATE(1509)] = 18874, + [SMALL_STATE(1510)] = 18935, + [SMALL_STATE(1511)] = 18996, + [SMALL_STATE(1512)] = 19057, + [SMALL_STATE(1513)] = 19118, + [SMALL_STATE(1514)] = 19179, + [SMALL_STATE(1515)] = 19240, + [SMALL_STATE(1516)] = 19301, + [SMALL_STATE(1517)] = 19362, + [SMALL_STATE(1518)] = 19423, + [SMALL_STATE(1519)] = 19484, + [SMALL_STATE(1520)] = 19545, + [SMALL_STATE(1521)] = 19606, + [SMALL_STATE(1522)] = 19667, + [SMALL_STATE(1523)] = 19728, + [SMALL_STATE(1524)] = 19789, + [SMALL_STATE(1525)] = 19850, + [SMALL_STATE(1526)] = 19911, + [SMALL_STATE(1527)] = 19972, + [SMALL_STATE(1528)] = 20047, + [SMALL_STATE(1529)] = 20122, + [SMALL_STATE(1530)] = 20215, + [SMALL_STATE(1531)] = 20276, + [SMALL_STATE(1532)] = 20339, + [SMALL_STATE(1533)] = 20400, + [SMALL_STATE(1534)] = 20463, + [SMALL_STATE(1535)] = 20526, + [SMALL_STATE(1536)] = 20587, + [SMALL_STATE(1537)] = 20648, + [SMALL_STATE(1538)] = 20709, + [SMALL_STATE(1539)] = 20770, + [SMALL_STATE(1540)] = 20831, + [SMALL_STATE(1541)] = 20892, + [SMALL_STATE(1542)] = 20953, + [SMALL_STATE(1543)] = 21014, + [SMALL_STATE(1544)] = 21075, + [SMALL_STATE(1545)] = 21136, + [SMALL_STATE(1546)] = 21197, + [SMALL_STATE(1547)] = 21258, + [SMALL_STATE(1548)] = 21319, + [SMALL_STATE(1549)] = 21380, + [SMALL_STATE(1550)] = 21441, + [SMALL_STATE(1551)] = 21502, + [SMALL_STATE(1552)] = 21563, + [SMALL_STATE(1553)] = 21656, + [SMALL_STATE(1554)] = 21717, + [SMALL_STATE(1555)] = 21778, + [SMALL_STATE(1556)] = 21871, + [SMALL_STATE(1557)] = 21932, + [SMALL_STATE(1558)] = 21993, + [SMALL_STATE(1559)] = 22054, + [SMALL_STATE(1560)] = 22115, + [SMALL_STATE(1561)] = 22176, + [SMALL_STATE(1562)] = 22239, + [SMALL_STATE(1563)] = 22300, + [SMALL_STATE(1564)] = 22363, + [SMALL_STATE(1565)] = 22424, + [SMALL_STATE(1566)] = 22485, + [SMALL_STATE(1567)] = 22548, + [SMALL_STATE(1568)] = 22609, + [SMALL_STATE(1569)] = 22670, + [SMALL_STATE(1570)] = 22733, + [SMALL_STATE(1571)] = 22794, + [SMALL_STATE(1572)] = 22855, + [SMALL_STATE(1573)] = 22918, + [SMALL_STATE(1574)] = 22979, + [SMALL_STATE(1575)] = 23040, + [SMALL_STATE(1576)] = 23101, + [SMALL_STATE(1577)] = 23162, + [SMALL_STATE(1578)] = 23223, + [SMALL_STATE(1579)] = 23288, + [SMALL_STATE(1580)] = 23349, + [SMALL_STATE(1581)] = 23414, + [SMALL_STATE(1582)] = 23475, + [SMALL_STATE(1583)] = 23536, + [SMALL_STATE(1584)] = 23597, + [SMALL_STATE(1585)] = 23658, + [SMALL_STATE(1586)] = 23719, + [SMALL_STATE(1587)] = 23780, + [SMALL_STATE(1588)] = 23841, + [SMALL_STATE(1589)] = 23902, + [SMALL_STATE(1590)] = 23963, + [SMALL_STATE(1591)] = 24024, + [SMALL_STATE(1592)] = 24085, + [SMALL_STATE(1593)] = 24146, + [SMALL_STATE(1594)] = 24207, + [SMALL_STATE(1595)] = 24268, + [SMALL_STATE(1596)] = 24329, + [SMALL_STATE(1597)] = 24390, + [SMALL_STATE(1598)] = 24451, + [SMALL_STATE(1599)] = 24512, + [SMALL_STATE(1600)] = 24573, + [SMALL_STATE(1601)] = 24634, + [SMALL_STATE(1602)] = 24695, + [SMALL_STATE(1603)] = 24756, + [SMALL_STATE(1604)] = 24817, + [SMALL_STATE(1605)] = 24878, + [SMALL_STATE(1606)] = 24939, + [SMALL_STATE(1607)] = 25000, + [SMALL_STATE(1608)] = 25061, + [SMALL_STATE(1609)] = 25122, + [SMALL_STATE(1610)] = 25183, + [SMALL_STATE(1611)] = 25244, + [SMALL_STATE(1612)] = 25305, + [SMALL_STATE(1613)] = 25366, + [SMALL_STATE(1614)] = 25427, + [SMALL_STATE(1615)] = 25488, + [SMALL_STATE(1616)] = 25549, + [SMALL_STATE(1617)] = 25610, + [SMALL_STATE(1618)] = 25671, + [SMALL_STATE(1619)] = 25732, + [SMALL_STATE(1620)] = 25793, + [SMALL_STATE(1621)] = 25854, + [SMALL_STATE(1622)] = 25915, + [SMALL_STATE(1623)] = 25976, + [SMALL_STATE(1624)] = 26037, + [SMALL_STATE(1625)] = 26098, + [SMALL_STATE(1626)] = 26159, + [SMALL_STATE(1627)] = 26220, + [SMALL_STATE(1628)] = 26281, + [SMALL_STATE(1629)] = 26342, + [SMALL_STATE(1630)] = 26403, + [SMALL_STATE(1631)] = 26464, + [SMALL_STATE(1632)] = 26525, + [SMALL_STATE(1633)] = 26586, + [SMALL_STATE(1634)] = 26647, + [SMALL_STATE(1635)] = 26708, + [SMALL_STATE(1636)] = 26769, + [SMALL_STATE(1637)] = 26830, + [SMALL_STATE(1638)] = 26891, + [SMALL_STATE(1639)] = 26952, + [SMALL_STATE(1640)] = 27013, + [SMALL_STATE(1641)] = 27074, + [SMALL_STATE(1642)] = 27135, + [SMALL_STATE(1643)] = 27196, + [SMALL_STATE(1644)] = 27257, + [SMALL_STATE(1645)] = 27318, + [SMALL_STATE(1646)] = 27379, + [SMALL_STATE(1647)] = 27440, + [SMALL_STATE(1648)] = 27501, + [SMALL_STATE(1649)] = 27562, + [SMALL_STATE(1650)] = 27623, + [SMALL_STATE(1651)] = 27684, + [SMALL_STATE(1652)] = 27745, + [SMALL_STATE(1653)] = 27806, + [SMALL_STATE(1654)] = 27867, + [SMALL_STATE(1655)] = 27928, + [SMALL_STATE(1656)] = 27989, + [SMALL_STATE(1657)] = 28050, + [SMALL_STATE(1658)] = 28111, + [SMALL_STATE(1659)] = 28172, + [SMALL_STATE(1660)] = 28233, + [SMALL_STATE(1661)] = 28294, + [SMALL_STATE(1662)] = 28355, + [SMALL_STATE(1663)] = 28416, + [SMALL_STATE(1664)] = 28479, + [SMALL_STATE(1665)] = 28542, + [SMALL_STATE(1666)] = 28605, + [SMALL_STATE(1667)] = 28666, + [SMALL_STATE(1668)] = 28727, + [SMALL_STATE(1669)] = 28788, + [SMALL_STATE(1670)] = 28849, + [SMALL_STATE(1671)] = 28910, + [SMALL_STATE(1672)] = 28971, + [SMALL_STATE(1673)] = 29032, + [SMALL_STATE(1674)] = 29093, + [SMALL_STATE(1675)] = 29154, + [SMALL_STATE(1676)] = 29215, + [SMALL_STATE(1677)] = 29276, + [SMALL_STATE(1678)] = 29337, + [SMALL_STATE(1679)] = 29398, + [SMALL_STATE(1680)] = 29459, + [SMALL_STATE(1681)] = 29519, + [SMALL_STATE(1682)] = 29579, + [SMALL_STATE(1683)] = 29639, + [SMALL_STATE(1684)] = 29705, + [SMALL_STATE(1685)] = 29765, + [SMALL_STATE(1686)] = 29825, + [SMALL_STATE(1687)] = 29885, + [SMALL_STATE(1688)] = 29945, + [SMALL_STATE(1689)] = 30005, + [SMALL_STATE(1690)] = 30065, + [SMALL_STATE(1691)] = 30125, + [SMALL_STATE(1692)] = 30185, + [SMALL_STATE(1693)] = 30245, + [SMALL_STATE(1694)] = 30305, + [SMALL_STATE(1695)] = 30365, + [SMALL_STATE(1696)] = 30425, + [SMALL_STATE(1697)] = 30485, + [SMALL_STATE(1698)] = 30549, + [SMALL_STATE(1699)] = 30609, + [SMALL_STATE(1700)] = 30669, + [SMALL_STATE(1701)] = 30735, + [SMALL_STATE(1702)] = 30809, + [SMALL_STATE(1703)] = 30869, + [SMALL_STATE(1704)] = 30929, + [SMALL_STATE(1705)] = 30989, + [SMALL_STATE(1706)] = 31049, + [SMALL_STATE(1707)] = 31109, + [SMALL_STATE(1708)] = 31169, + [SMALL_STATE(1709)] = 31229, + [SMALL_STATE(1710)] = 31291, + [SMALL_STATE(1711)] = 31351, + [SMALL_STATE(1712)] = 31411, + [SMALL_STATE(1713)] = 31471, + [SMALL_STATE(1714)] = 31531, + [SMALL_STATE(1715)] = 31591, + [SMALL_STATE(1716)] = 31651, + [SMALL_STATE(1717)] = 31711, + [SMALL_STATE(1718)] = 31771, + [SMALL_STATE(1719)] = 31831, + [SMALL_STATE(1720)] = 31891, + [SMALL_STATE(1721)] = 31951, + [SMALL_STATE(1722)] = 32011, + [SMALL_STATE(1723)] = 32071, + [SMALL_STATE(1724)] = 32131, + [SMALL_STATE(1725)] = 32191, + [SMALL_STATE(1726)] = 32251, + [SMALL_STATE(1727)] = 32311, + [SMALL_STATE(1728)] = 32371, + [SMALL_STATE(1729)] = 32431, + [SMALL_STATE(1730)] = 32491, + [SMALL_STATE(1731)] = 32551, + [SMALL_STATE(1732)] = 32611, + [SMALL_STATE(1733)] = 32671, + [SMALL_STATE(1734)] = 32731, + [SMALL_STATE(1735)] = 32795, + [SMALL_STATE(1736)] = 32861, + [SMALL_STATE(1737)] = 32921, + [SMALL_STATE(1738)] = 32981, + [SMALL_STATE(1739)] = 33041, + [SMALL_STATE(1740)] = 33101, + [SMALL_STATE(1741)] = 33197, + [SMALL_STATE(1742)] = 33257, + [SMALL_STATE(1743)] = 33325, + [SMALL_STATE(1744)] = 33385, + [SMALL_STATE(1745)] = 33445, + [SMALL_STATE(1746)] = 33505, + [SMALL_STATE(1747)] = 33565, + [SMALL_STATE(1748)] = 33625, + [SMALL_STATE(1749)] = 33685, + [SMALL_STATE(1750)] = 33745, + [SMALL_STATE(1751)] = 33805, + [SMALL_STATE(1752)] = 33865, + [SMALL_STATE(1753)] = 33925, + [SMALL_STATE(1754)] = 33985, + [SMALL_STATE(1755)] = 34045, + [SMALL_STATE(1756)] = 34105, + [SMALL_STATE(1757)] = 34165, + [SMALL_STATE(1758)] = 34225, + [SMALL_STATE(1759)] = 34285, + [SMALL_STATE(1760)] = 34345, + [SMALL_STATE(1761)] = 34405, + [SMALL_STATE(1762)] = 34465, + [SMALL_STATE(1763)] = 34525, + [SMALL_STATE(1764)] = 34585, + [SMALL_STATE(1765)] = 34645, + [SMALL_STATE(1766)] = 34711, + [SMALL_STATE(1767)] = 34771, + [SMALL_STATE(1768)] = 34831, + [SMALL_STATE(1769)] = 34891, + [SMALL_STATE(1770)] = 34951, + [SMALL_STATE(1771)] = 35011, + [SMALL_STATE(1772)] = 35071, + [SMALL_STATE(1773)] = 35131, + [SMALL_STATE(1774)] = 35191, + [SMALL_STATE(1775)] = 35251, + [SMALL_STATE(1776)] = 35311, + [SMALL_STATE(1777)] = 35371, + [SMALL_STATE(1778)] = 35431, + [SMALL_STATE(1779)] = 35491, + [SMALL_STATE(1780)] = 35551, + [SMALL_STATE(1781)] = 35611, + [SMALL_STATE(1782)] = 35671, + [SMALL_STATE(1783)] = 35731, + [SMALL_STATE(1784)] = 35791, + [SMALL_STATE(1785)] = 35851, + [SMALL_STATE(1786)] = 35911, + [SMALL_STATE(1787)] = 35971, + [SMALL_STATE(1788)] = 36031, + [SMALL_STATE(1789)] = 36093, + [SMALL_STATE(1790)] = 36153, + [SMALL_STATE(1791)] = 36213, + [SMALL_STATE(1792)] = 36273, + [SMALL_STATE(1793)] = 36333, + [SMALL_STATE(1794)] = 36393, + [SMALL_STATE(1795)] = 36453, + [SMALL_STATE(1796)] = 36513, + [SMALL_STATE(1797)] = 36573, + [SMALL_STATE(1798)] = 36633, + [SMALL_STATE(1799)] = 36693, + [SMALL_STATE(1800)] = 36753, + [SMALL_STATE(1801)] = 36813, + [SMALL_STATE(1802)] = 36873, + [SMALL_STATE(1803)] = 36972, + [SMALL_STATE(1804)] = 37071, + [SMALL_STATE(1805)] = 37142, + [SMALL_STATE(1806)] = 37203, + [SMALL_STATE(1807)] = 37302, + [SMALL_STATE(1808)] = 37371, + [SMALL_STATE(1809)] = 37432, + [SMALL_STATE(1810)] = 37531, + [SMALL_STATE(1811)] = 37613, + [SMALL_STATE(1812)] = 37699, + [SMALL_STATE(1813)] = 37789, + [SMALL_STATE(1814)] = 37875, + [SMALL_STATE(1815)] = 37941, + [SMALL_STATE(1816)] = 38031, + [SMALL_STATE(1817)] = 38101, + [SMALL_STATE(1818)] = 38159, + [SMALL_STATE(1819)] = 38249, + [SMALL_STATE(1820)] = 38335, + [SMALL_STATE(1821)] = 38405, + [SMALL_STATE(1822)] = 38495, + [SMALL_STATE(1823)] = 38573, + [SMALL_STATE(1824)] = 38643, + [SMALL_STATE(1825)] = 38729, + [SMALL_STATE(1826)] = 38797, + [SMALL_STATE(1827)] = 38883, + [SMALL_STATE(1828)] = 38969, + [SMALL_STATE(1829)] = 39043, + [SMALL_STATE(1830)] = 39133, + [SMALL_STATE(1831)] = 39191, + [SMALL_STATE(1832)] = 39249, + [SMALL_STATE(1833)] = 39341, + [SMALL_STATE(1834)] = 39411, + [SMALL_STATE(1835)] = 39497, + [SMALL_STATE(1836)] = 39573, + [SMALL_STATE(1837)] = 39657, + [SMALL_STATE(1838)] = 39729, + [SMALL_STATE(1839)] = 39819, + [SMALL_STATE(1840)] = 39879, + [SMALL_STATE(1841)] = 39971, + [SMALL_STATE(1842)] = 40057, + [SMALL_STATE(1843)] = 40117, + [SMALL_STATE(1844)] = 40209, + [SMALL_STATE(1845)] = 40274, + [SMALL_STATE(1846)] = 40341, + [SMALL_STATE(1847)] = 40404, + [SMALL_STATE(1848)] = 40467, + [SMALL_STATE(1849)] = 40527, + [SMALL_STATE(1850)] = 40587, + [SMALL_STATE(1851)] = 40643, + [SMALL_STATE(1852)] = 40699, + [SMALL_STATE(1853)] = 40755, + [SMALL_STATE(1854)] = 40811, + [SMALL_STATE(1855)] = 40871, + [SMALL_STATE(1856)] = 40935, + [SMALL_STATE(1857)] = 40993, + [SMALL_STATE(1858)] = 41051, + [SMALL_STATE(1859)] = 41115, + [SMALL_STATE(1860)] = 41179, + [SMALL_STATE(1861)] = 41237, + [SMALL_STATE(1862)] = 41295, + [SMALL_STATE(1863)] = 41359, + [SMALL_STATE(1864)] = 41419, + [SMALL_STATE(1865)] = 41479, + [SMALL_STATE(1866)] = 41539, + [SMALL_STATE(1867)] = 41599, + [SMALL_STATE(1868)] = 41694, + [SMALL_STATE(1869)] = 41751, + [SMALL_STATE(1870)] = 41840, + [SMALL_STATE(1871)] = 41935, + [SMALL_STATE(1872)] = 41994, + [SMALL_STATE(1873)] = 42053, + [SMALL_STATE(1874)] = 42108, + [SMALL_STATE(1875)] = 42167, + [SMALL_STATE(1876)] = 42222, + [SMALL_STATE(1877)] = 42279, + [SMALL_STATE(1878)] = 42334, + [SMALL_STATE(1879)] = 42391, + [SMALL_STATE(1880)] = 42446, + [SMALL_STATE(1881)] = 42503, + [SMALL_STATE(1882)] = 42558, + [SMALL_STATE(1883)] = 42653, + [SMALL_STATE(1884)] = 42742, + [SMALL_STATE(1885)] = 42797, + [SMALL_STATE(1886)] = 42852, + [SMALL_STATE(1887)] = 42911, + [SMALL_STATE(1888)] = 43000, + [SMALL_STATE(1889)] = 43095, + [SMALL_STATE(1890)] = 43152, + [SMALL_STATE(1891)] = 43247, + [SMALL_STATE(1892)] = 43342, + [SMALL_STATE(1893)] = 43437, + [SMALL_STATE(1894)] = 43532, + [SMALL_STATE(1895)] = 43627, + [SMALL_STATE(1896)] = 43722, + [SMALL_STATE(1897)] = 43817, + [SMALL_STATE(1898)] = 43912, + [SMALL_STATE(1899)] = 43969, + [SMALL_STATE(1900)] = 44026, + [SMALL_STATE(1901)] = 44115, + [SMALL_STATE(1902)] = 44170, + [SMALL_STATE(1903)] = 44256, + [SMALL_STATE(1904)] = 44312, + [SMALL_STATE(1905)] = 44366, + [SMALL_STATE(1906)] = 44420, + [SMALL_STATE(1907)] = 44502, + [SMALL_STATE(1908)] = 44594, + [SMALL_STATE(1909)] = 44662, + [SMALL_STATE(1910)] = 44750, + [SMALL_STATE(1911)] = 44804, + [SMALL_STATE(1912)] = 44858, + [SMALL_STATE(1913)] = 44914, + [SMALL_STATE(1914)] = 44970, + [SMALL_STATE(1915)] = 45026, + [SMALL_STATE(1916)] = 45114, + [SMALL_STATE(1917)] = 45168, + [SMALL_STATE(1918)] = 45224, + [SMALL_STATE(1919)] = 45296, + [SMALL_STATE(1920)] = 45352, + [SMALL_STATE(1921)] = 45430, + [SMALL_STATE(1922)] = 45484, + [SMALL_STATE(1923)] = 45564, + [SMALL_STATE(1924)] = 45618, + [SMALL_STATE(1925)] = 45674, + [SMALL_STATE(1926)] = 45728, + [SMALL_STATE(1927)] = 45820, + [SMALL_STATE(1928)] = 45900, + [SMALL_STATE(1929)] = 45956, + [SMALL_STATE(1930)] = 46012, + [SMALL_STATE(1931)] = 46082, + [SMALL_STATE(1932)] = 46136, + [SMALL_STATE(1933)] = 46190, + [SMALL_STATE(1934)] = 46244, + [SMALL_STATE(1935)] = 46298, + [SMALL_STATE(1936)] = 46364, + [SMALL_STATE(1937)] = 46452, + [SMALL_STATE(1938)] = 46508, + [SMALL_STATE(1939)] = 46564, + [SMALL_STATE(1940)] = 46622, + [SMALL_STATE(1941)] = 46708, + [SMALL_STATE(1942)] = 46790, + [SMALL_STATE(1943)] = 46876, + [SMALL_STATE(1944)] = 46962, + [SMALL_STATE(1945)] = 47048, + [SMALL_STATE(1946)] = 47134, + [SMALL_STATE(1947)] = 47226, + [SMALL_STATE(1948)] = 47318, + [SMALL_STATE(1949)] = 47392, + [SMALL_STATE(1950)] = 47484, + [SMALL_STATE(1951)] = 47572, + [SMALL_STATE(1952)] = 47626, + [SMALL_STATE(1953)] = 47718, + [SMALL_STATE(1954)] = 47772, + [SMALL_STATE(1955)] = 47826, + [SMALL_STATE(1956)] = 47882, + [SMALL_STATE(1957)] = 47938, + [SMALL_STATE(1958)] = 47994, + [SMALL_STATE(1959)] = 48050, + [SMALL_STATE(1960)] = 48114, + [SMALL_STATE(1961)] = 48202, + [SMALL_STATE(1962)] = 48258, + [SMALL_STATE(1963)] = 48312, + [SMALL_STATE(1964)] = 48365, + [SMALL_STATE(1965)] = 48454, + [SMALL_STATE(1966)] = 48543, + [SMALL_STATE(1967)] = 48596, + [SMALL_STATE(1968)] = 48655, + [SMALL_STATE(1969)] = 48708, + [SMALL_STATE(1970)] = 48761, + [SMALL_STATE(1971)] = 48814, + [SMALL_STATE(1972)] = 48867, + [SMALL_STATE(1973)] = 48920, + [SMALL_STATE(1974)] = 48973, + [SMALL_STATE(1975)] = 49026, + [SMALL_STATE(1976)] = 49079, + [SMALL_STATE(1977)] = 49132, + [SMALL_STATE(1978)] = 49185, + [SMALL_STATE(1979)] = 49238, + [SMALL_STATE(1980)] = 49323, + [SMALL_STATE(1981)] = 49376, + [SMALL_STATE(1982)] = 49429, + [SMALL_STATE(1983)] = 49482, + [SMALL_STATE(1984)] = 49571, + [SMALL_STATE(1985)] = 49624, + [SMALL_STATE(1986)] = 49677, + [SMALL_STATE(1987)] = 49766, + [SMALL_STATE(1988)] = 49819, + [SMALL_STATE(1989)] = 49872, + [SMALL_STATE(1990)] = 49925, + [SMALL_STATE(1991)] = 50002, + [SMALL_STATE(1992)] = 50089, + [SMALL_STATE(1993)] = 50176, + [SMALL_STATE(1994)] = 50265, + [SMALL_STATE(1995)] = 50318, + [SMALL_STATE(1996)] = 50405, + [SMALL_STATE(1997)] = 50494, + [SMALL_STATE(1998)] = 50581, + [SMALL_STATE(1999)] = 50634, + [SMALL_STATE(2000)] = 50687, + [SMALL_STATE(2001)] = 50768, + [SMALL_STATE(2002)] = 50853, + [SMALL_STATE(2003)] = 50942, + [SMALL_STATE(2004)] = 51029, + [SMALL_STATE(2005)] = 51118, + [SMALL_STATE(2006)] = 51171, + [SMALL_STATE(2007)] = 51256, + [SMALL_STATE(2008)] = 51341, + [SMALL_STATE(2009)] = 51394, + [SMALL_STATE(2010)] = 51447, + [SMALL_STATE(2011)] = 51500, + [SMALL_STATE(2012)] = 51577, + [SMALL_STATE(2013)] = 51630, + [SMALL_STATE(2014)] = 51683, + [SMALL_STATE(2015)] = 51736, + [SMALL_STATE(2016)] = 51789, + [SMALL_STATE(2017)] = 51842, + [SMALL_STATE(2018)] = 51895, + [SMALL_STATE(2019)] = 51982, + [SMALL_STATE(2020)] = 52067, + [SMALL_STATE(2021)] = 52154, + [SMALL_STATE(2022)] = 52207, + [SMALL_STATE(2023)] = 52260, + [SMALL_STATE(2024)] = 52313, + [SMALL_STATE(2025)] = 52376, + [SMALL_STATE(2026)] = 52445, + [SMALL_STATE(2027)] = 52512, + [SMALL_STATE(2028)] = 52583, + [SMALL_STATE(2029)] = 52660, + [SMALL_STATE(2030)] = 52739, + [SMALL_STATE(2031)] = 52804, + [SMALL_STATE(2032)] = 52889, + [SMALL_STATE(2033)] = 52974, + [SMALL_STATE(2034)] = 53047, + [SMALL_STATE(2035)] = 53128, + [SMALL_STATE(2036)] = 53181, + [SMALL_STATE(2037)] = 53270, + [SMALL_STATE(2038)] = 53323, + [SMALL_STATE(2039)] = 53376, + [SMALL_STATE(2040)] = 53429, + [SMALL_STATE(2041)] = 53488, + [SMALL_STATE(2042)] = 53541, + [SMALL_STATE(2043)] = 53628, + [SMALL_STATE(2044)] = 53681, + [SMALL_STATE(2045)] = 53734, + [SMALL_STATE(2046)] = 53787, + [SMALL_STATE(2047)] = 53840, + [SMALL_STATE(2048)] = 53893, + [SMALL_STATE(2049)] = 53946, + [SMALL_STATE(2050)] = 54035, + [SMALL_STATE(2051)] = 54088, + [SMALL_STATE(2052)] = 54141, + [SMALL_STATE(2053)] = 54194, + [SMALL_STATE(2054)] = 54283, + [SMALL_STATE(2055)] = 54336, + [SMALL_STATE(2056)] = 54389, + [SMALL_STATE(2057)] = 54442, + [SMALL_STATE(2058)] = 54495, + [SMALL_STATE(2059)] = 54548, + [SMALL_STATE(2060)] = 54601, + [SMALL_STATE(2061)] = 54654, + [SMALL_STATE(2062)] = 54707, + [SMALL_STATE(2063)] = 54760, + [SMALL_STATE(2064)] = 54813, + [SMALL_STATE(2065)] = 54866, + [SMALL_STATE(2066)] = 54919, + [SMALL_STATE(2067)] = 54972, + [SMALL_STATE(2068)] = 55025, + [SMALL_STATE(2069)] = 55078, + [SMALL_STATE(2070)] = 55165, + [SMALL_STATE(2071)] = 55252, + [SMALL_STATE(2072)] = 55339, + [SMALL_STATE(2073)] = 55392, + [SMALL_STATE(2074)] = 55445, + [SMALL_STATE(2075)] = 55498, + [SMALL_STATE(2076)] = 55583, + [SMALL_STATE(2077)] = 55636, + [SMALL_STATE(2078)] = 55689, + [SMALL_STATE(2079)] = 55776, + [SMALL_STATE(2080)] = 55829, + [SMALL_STATE(2081)] = 55892, + [SMALL_STATE(2082)] = 55961, + [SMALL_STATE(2083)] = 56028, + [SMALL_STATE(2084)] = 56099, + [SMALL_STATE(2085)] = 56176, + [SMALL_STATE(2086)] = 56255, + [SMALL_STATE(2087)] = 56320, + [SMALL_STATE(2088)] = 56405, + [SMALL_STATE(2089)] = 56490, + [SMALL_STATE(2090)] = 56563, + [SMALL_STATE(2091)] = 56644, + [SMALL_STATE(2092)] = 56697, + [SMALL_STATE(2093)] = 56750, + [SMALL_STATE(2094)] = 56803, + [SMALL_STATE(2095)] = 56890, + [SMALL_STATE(2096)] = 56943, + [SMALL_STATE(2097)] = 56996, + [SMALL_STATE(2098)] = 57049, + [SMALL_STATE(2099)] = 57102, + [SMALL_STATE(2100)] = 57155, + [SMALL_STATE(2101)] = 57208, + [SMALL_STATE(2102)] = 57261, + [SMALL_STATE(2103)] = 57314, + [SMALL_STATE(2104)] = 57367, + [SMALL_STATE(2105)] = 57420, + [SMALL_STATE(2106)] = 57473, + [SMALL_STATE(2107)] = 57526, + [SMALL_STATE(2108)] = 57613, + [SMALL_STATE(2109)] = 57666, + [SMALL_STATE(2110)] = 57719, + [SMALL_STATE(2111)] = 57806, + [SMALL_STATE(2112)] = 57859, + [SMALL_STATE(2113)] = 57912, + [SMALL_STATE(2114)] = 57999, + [SMALL_STATE(2115)] = 58052, + [SMALL_STATE(2116)] = 58105, + [SMALL_STATE(2117)] = 58158, + [SMALL_STATE(2118)] = 58247, + [SMALL_STATE(2119)] = 58300, + [SMALL_STATE(2120)] = 58389, + [SMALL_STATE(2121)] = 58450, + [SMALL_STATE(2122)] = 58539, + [SMALL_STATE(2123)] = 58624, + [SMALL_STATE(2124)] = 58713, + [SMALL_STATE(2125)] = 58766, + [SMALL_STATE(2126)] = 58855, + [SMALL_STATE(2127)] = 58908, + [SMALL_STATE(2128)] = 58997, + [SMALL_STATE(2129)] = 59086, + [SMALL_STATE(2130)] = 59139, + [SMALL_STATE(2131)] = 59228, + [SMALL_STATE(2132)] = 59281, + [SMALL_STATE(2133)] = 59370, + [SMALL_STATE(2134)] = 59459, + [SMALL_STATE(2135)] = 59548, + [SMALL_STATE(2136)] = 59601, + [SMALL_STATE(2137)] = 59690, + [SMALL_STATE(2138)] = 59779, + [SMALL_STATE(2139)] = 59868, + [SMALL_STATE(2140)] = 59957, + [SMALL_STATE(2141)] = 60010, + [SMALL_STATE(2142)] = 60099, + [SMALL_STATE(2143)] = 60186, + [SMALL_STATE(2144)] = 60275, + [SMALL_STATE(2145)] = 60364, + [SMALL_STATE(2146)] = 60417, + [SMALL_STATE(2147)] = 60504, + [SMALL_STATE(2148)] = 60593, + [SMALL_STATE(2149)] = 60674, + [SMALL_STATE(2150)] = 60759, + [SMALL_STATE(2151)] = 60848, + [SMALL_STATE(2152)] = 60933, + [SMALL_STATE(2153)] = 61018, + [SMALL_STATE(2154)] = 61107, + [SMALL_STATE(2155)] = 61166, + [SMALL_STATE(2156)] = 61255, + [SMALL_STATE(2157)] = 61344, + [SMALL_STATE(2158)] = 61433, + [SMALL_STATE(2159)] = 61486, + [SMALL_STATE(2160)] = 61575, + [SMALL_STATE(2161)] = 61664, + [SMALL_STATE(2162)] = 61753, + [SMALL_STATE(2163)] = 61842, + [SMALL_STATE(2164)] = 61895, + [SMALL_STATE(2165)] = 61984, + [SMALL_STATE(2166)] = 62073, + [SMALL_STATE(2167)] = 62126, + [SMALL_STATE(2168)] = 62215, + [SMALL_STATE(2169)] = 62304, + [SMALL_STATE(2170)] = 62393, + [SMALL_STATE(2171)] = 62482, + [SMALL_STATE(2172)] = 62571, + [SMALL_STATE(2173)] = 62660, + [SMALL_STATE(2174)] = 62749, + [SMALL_STATE(2175)] = 62838, + [SMALL_STATE(2176)] = 62927, + [SMALL_STATE(2177)] = 63016, + [SMALL_STATE(2178)] = 63105, + [SMALL_STATE(2179)] = 63194, + [SMALL_STATE(2180)] = 63253, + [SMALL_STATE(2181)] = 63340, + [SMALL_STATE(2182)] = 63429, + [SMALL_STATE(2183)] = 63482, + [SMALL_STATE(2184)] = 63568, + [SMALL_STATE(2185)] = 63654, + [SMALL_STATE(2186)] = 63740, + [SMALL_STATE(2187)] = 63826, + [SMALL_STATE(2188)] = 63912, + [SMALL_STATE(2189)] = 63998, + [SMALL_STATE(2190)] = 64084, + [SMALL_STATE(2191)] = 64170, + [SMALL_STATE(2192)] = 64256, + [SMALL_STATE(2193)] = 64342, + [SMALL_STATE(2194)] = 64428, + [SMALL_STATE(2195)] = 64502, + [SMALL_STATE(2196)] = 64588, + [SMALL_STATE(2197)] = 64674, + [SMALL_STATE(2198)] = 64760, + [SMALL_STATE(2199)] = 64846, + [SMALL_STATE(2200)] = 64932, + [SMALL_STATE(2201)] = 65016, + [SMALL_STATE(2202)] = 65102, + [SMALL_STATE(2203)] = 65188, + [SMALL_STATE(2204)] = 65274, + [SMALL_STATE(2205)] = 65360, + [SMALL_STATE(2206)] = 65446, + [SMALL_STATE(2207)] = 65530, + [SMALL_STATE(2208)] = 65616, + [SMALL_STATE(2209)] = 65702, + [SMALL_STATE(2210)] = 65788, + [SMALL_STATE(2211)] = 65874, + [SMALL_STATE(2212)] = 65960, + [SMALL_STATE(2213)] = 66046, + [SMALL_STATE(2214)] = 66120, + [SMALL_STATE(2215)] = 66194, + [SMALL_STATE(2216)] = 66280, + [SMALL_STATE(2217)] = 66366, + [SMALL_STATE(2218)] = 66440, + [SMALL_STATE(2219)] = 66514, + [SMALL_STATE(2220)] = 66588, + [SMALL_STATE(2221)] = 66674, + [SMALL_STATE(2222)] = 66760, + [SMALL_STATE(2223)] = 66846, + [SMALL_STATE(2224)] = 66920, + [SMALL_STATE(2225)] = 67006, + [SMALL_STATE(2226)] = 67092, + [SMALL_STATE(2227)] = 67167, + [SMALL_STATE(2228)] = 67242, + [SMALL_STATE(2229)] = 67317, + [SMALL_STATE(2230)] = 67392, + [SMALL_STATE(2231)] = 67467, + [SMALL_STATE(2232)] = 67542, + [SMALL_STATE(2233)] = 67617, + [SMALL_STATE(2234)] = 67692, + [SMALL_STATE(2235)] = 67767, + [SMALL_STATE(2236)] = 67842, + [SMALL_STATE(2237)] = 67917, + [SMALL_STATE(2238)] = 67992, + [SMALL_STATE(2239)] = 68039, + [SMALL_STATE(2240)] = 68086, + [SMALL_STATE(2241)] = 68133, + [SMALL_STATE(2242)] = 68195, + [SMALL_STATE(2243)] = 68257, + [SMALL_STATE(2244)] = 68319, + [SMALL_STATE(2245)] = 68381, + [SMALL_STATE(2246)] = 68443, + [SMALL_STATE(2247)] = 68505, + [SMALL_STATE(2248)] = 68567, + [SMALL_STATE(2249)] = 68629, + [SMALL_STATE(2250)] = 68688, + [SMALL_STATE(2251)] = 68747, + [SMALL_STATE(2252)] = 68831, + [SMALL_STATE(2253)] = 68915, + [SMALL_STATE(2254)] = 68959, + [SMALL_STATE(2255)] = 68997, + [SMALL_STATE(2256)] = 69035, + [SMALL_STATE(2257)] = 69071, + [SMALL_STATE(2258)] = 69107, + [SMALL_STATE(2259)] = 69144, + [SMALL_STATE(2260)] = 69197, + [SMALL_STATE(2261)] = 69234, + [SMALL_STATE(2262)] = 69271, + [SMALL_STATE(2263)] = 69308, + [SMALL_STATE(2264)] = 69352, + [SMALL_STATE(2265)] = 69386, + [SMALL_STATE(2266)] = 69422, + [SMALL_STATE(2267)] = 69456, + [SMALL_STATE(2268)] = 69490, + [SMALL_STATE(2269)] = 69526, + [SMALL_STATE(2270)] = 69562, + [SMALL_STATE(2271)] = 69596, + [SMALL_STATE(2272)] = 69632, + [SMALL_STATE(2273)] = 69676, + [SMALL_STATE(2274)] = 69720, + [SMALL_STATE(2275)] = 69753, + [SMALL_STATE(2276)] = 69784, + [SMALL_STATE(2277)] = 69817, + [SMALL_STATE(2278)] = 69868, + [SMALL_STATE(2279)] = 69901, + [SMALL_STATE(2280)] = 69934, + [SMALL_STATE(2281)] = 69975, + [SMALL_STATE(2282)] = 70013, + [SMALL_STATE(2283)] = 70045, + [SMALL_STATE(2284)] = 70105, + [SMALL_STATE(2285)] = 70149, + [SMALL_STATE(2286)] = 70181, + [SMALL_STATE(2287)] = 70241, + [SMALL_STATE(2288)] = 70301, + [SMALL_STATE(2289)] = 70361, + [SMALL_STATE(2290)] = 70399, + [SMALL_STATE(2291)] = 70437, + [SMALL_STATE(2292)] = 70475, + [SMALL_STATE(2293)] = 70507, + [SMALL_STATE(2294)] = 70553, + [SMALL_STATE(2295)] = 70582, + [SMALL_STATE(2296)] = 70611, + [SMALL_STATE(2297)] = 70640, + [SMALL_STATE(2298)] = 70669, + [SMALL_STATE(2299)] = 70702, + [SMALL_STATE(2300)] = 70731, + [SMALL_STATE(2301)] = 70784, + [SMALL_STATE(2302)] = 70815, + [SMALL_STATE(2303)] = 70844, + [SMALL_STATE(2304)] = 70873, + [SMALL_STATE(2305)] = 70914, + [SMALL_STATE(2306)] = 70967, + [SMALL_STATE(2307)] = 71010, + [SMALL_STATE(2308)] = 71039, + [SMALL_STATE(2309)] = 71094, + [SMALL_STATE(2310)] = 71127, + [SMALL_STATE(2311)] = 71156, + [SMALL_STATE(2312)] = 71189, + [SMALL_STATE(2313)] = 71222, + [SMALL_STATE(2314)] = 71255, + [SMALL_STATE(2315)] = 71288, + [SMALL_STATE(2316)] = 71316, + [SMALL_STATE(2317)] = 71344, + [SMALL_STATE(2318)] = 71372, + [SMALL_STATE(2319)] = 71400, + [SMALL_STATE(2320)] = 71428, + [SMALL_STATE(2321)] = 71456, + [SMALL_STATE(2322)] = 71486, + [SMALL_STATE(2323)] = 71514, + [SMALL_STATE(2324)] = 71542, + [SMALL_STATE(2325)] = 71570, + [SMALL_STATE(2326)] = 71598, + [SMALL_STATE(2327)] = 71626, + [SMALL_STATE(2328)] = 71654, + [SMALL_STATE(2329)] = 71682, + [SMALL_STATE(2330)] = 71710, + [SMALL_STATE(2331)] = 71738, + [SMALL_STATE(2332)] = 71766, + [SMALL_STATE(2333)] = 71810, + [SMALL_STATE(2334)] = 71838, + [SMALL_STATE(2335)] = 71866, + [SMALL_STATE(2336)] = 71894, + [SMALL_STATE(2337)] = 71922, + [SMALL_STATE(2338)] = 71950, + [SMALL_STATE(2339)] = 71980, + [SMALL_STATE(2340)] = 72008, + [SMALL_STATE(2341)] = 72036, + [SMALL_STATE(2342)] = 72064, + [SMALL_STATE(2343)] = 72092, + [SMALL_STATE(2344)] = 72120, + [SMALL_STATE(2345)] = 72148, + [SMALL_STATE(2346)] = 72176, + [SMALL_STATE(2347)] = 72204, + [SMALL_STATE(2348)] = 72232, + [SMALL_STATE(2349)] = 72260, + [SMALL_STATE(2350)] = 72288, + [SMALL_STATE(2351)] = 72316, + [SMALL_STATE(2352)] = 72344, + [SMALL_STATE(2353)] = 72372, + [SMALL_STATE(2354)] = 72400, + [SMALL_STATE(2355)] = 72429, + [SMALL_STATE(2356)] = 72458, + [SMALL_STATE(2357)] = 72487, + [SMALL_STATE(2358)] = 72522, + [SMALL_STATE(2359)] = 72553, + [SMALL_STATE(2360)] = 72582, + [SMALL_STATE(2361)] = 72611, + [SMALL_STATE(2362)] = 72640, + [SMALL_STATE(2363)] = 72669, + [SMALL_STATE(2364)] = 72698, + [SMALL_STATE(2365)] = 72727, + [SMALL_STATE(2366)] = 72756, + [SMALL_STATE(2367)] = 72788, + [SMALL_STATE(2368)] = 72820, + [SMALL_STATE(2369)] = 72852, + [SMALL_STATE(2370)] = 72884, + [SMALL_STATE(2371)] = 72916, + [SMALL_STATE(2372)] = 72948, + [SMALL_STATE(2373)] = 72980, + [SMALL_STATE(2374)] = 73012, + [SMALL_STATE(2375)] = 73044, + [SMALL_STATE(2376)] = 73076, + [SMALL_STATE(2377)] = 73108, + [SMALL_STATE(2378)] = 73136, + [SMALL_STATE(2379)] = 73168, + [SMALL_STATE(2380)] = 73214, + [SMALL_STATE(2381)] = 73258, + [SMALL_STATE(2382)] = 73288, + [SMALL_STATE(2383)] = 73331, + [SMALL_STATE(2384)] = 73360, + [SMALL_STATE(2385)] = 73403, + [SMALL_STATE(2386)] = 73446, + [SMALL_STATE(2387)] = 73489, + [SMALL_STATE(2388)] = 73526, + [SMALL_STATE(2389)] = 73569, + [SMALL_STATE(2390)] = 73612, + [SMALL_STATE(2391)] = 73641, + [SMALL_STATE(2392)] = 73669, + [SMALL_STATE(2393)] = 73709, + [SMALL_STATE(2394)] = 73739, + [SMALL_STATE(2395)] = 73779, + [SMALL_STATE(2396)] = 73817, + [SMALL_STATE(2397)] = 73857, + [SMALL_STATE(2398)] = 73897, + [SMALL_STATE(2399)] = 73921, + [SMALL_STATE(2400)] = 73959, + [SMALL_STATE(2401)] = 73983, + [SMALL_STATE(2402)] = 74023, + [SMALL_STATE(2403)] = 74061, + [SMALL_STATE(2404)] = 74089, + [SMALL_STATE(2405)] = 74117, + [SMALL_STATE(2406)] = 74155, + [SMALL_STATE(2407)] = 74183, + [SMALL_STATE(2408)] = 74217, + [SMALL_STATE(2409)] = 74255, + [SMALL_STATE(2410)] = 74295, + [SMALL_STATE(2411)] = 74335, + [SMALL_STATE(2412)] = 74375, + [SMALL_STATE(2413)] = 74409, + [SMALL_STATE(2414)] = 74433, + [SMALL_STATE(2415)] = 74463, + [SMALL_STATE(2416)] = 74501, + [SMALL_STATE(2417)] = 74531, + [SMALL_STATE(2418)] = 74555, + [SMALL_STATE(2419)] = 74583, + [SMALL_STATE(2420)] = 74611, + [SMALL_STATE(2421)] = 74649, + [SMALL_STATE(2422)] = 74687, + [SMALL_STATE(2423)] = 74717, + [SMALL_STATE(2424)] = 74745, + [SMALL_STATE(2425)] = 74773, + [SMALL_STATE(2426)] = 74811, + [SMALL_STATE(2427)] = 74849, + [SMALL_STATE(2428)] = 74887, + [SMALL_STATE(2429)] = 74927, + [SMALL_STATE(2430)] = 74955, + [SMALL_STATE(2431)] = 74993, + [SMALL_STATE(2432)] = 75031, + [SMALL_STATE(2433)] = 75059, + [SMALL_STATE(2434)] = 75087, + [SMALL_STATE(2435)] = 75115, + [SMALL_STATE(2436)] = 75155, + [SMALL_STATE(2437)] = 75183, + [SMALL_STATE(2438)] = 75221, + [SMALL_STATE(2439)] = 75245, + [SMALL_STATE(2440)] = 75273, + [SMALL_STATE(2441)] = 75301, + [SMALL_STATE(2442)] = 75331, + [SMALL_STATE(2443)] = 75359, + [SMALL_STATE(2444)] = 75397, + [SMALL_STATE(2445)] = 75427, + [SMALL_STATE(2446)] = 75465, + [SMALL_STATE(2447)] = 75496, + [SMALL_STATE(2448)] = 75531, + [SMALL_STATE(2449)] = 75566, + [SMALL_STATE(2450)] = 75607, + [SMALL_STATE(2451)] = 75630, + [SMALL_STATE(2452)] = 75653, + [SMALL_STATE(2453)] = 75690, + [SMALL_STATE(2454)] = 75721, + [SMALL_STATE(2455)] = 75762, + [SMALL_STATE(2456)] = 75803, + [SMALL_STATE(2457)] = 75844, + [SMALL_STATE(2458)] = 75881, + [SMALL_STATE(2459)] = 75904, + [SMALL_STATE(2460)] = 75927, + [SMALL_STATE(2461)] = 75950, + [SMALL_STATE(2462)] = 75973, + [SMALL_STATE(2463)] = 76010, + [SMALL_STATE(2464)] = 76033, + [SMALL_STATE(2465)] = 76056, + [SMALL_STATE(2466)] = 76079, + [SMALL_STATE(2467)] = 76102, + [SMALL_STATE(2468)] = 76125, + [SMALL_STATE(2469)] = 76148, + [SMALL_STATE(2470)] = 76171, + [SMALL_STATE(2471)] = 76194, + [SMALL_STATE(2472)] = 76217, + [SMALL_STATE(2473)] = 76240, + [SMALL_STATE(2474)] = 76263, + [SMALL_STATE(2475)] = 76286, + [SMALL_STATE(2476)] = 76309, + [SMALL_STATE(2477)] = 76346, + [SMALL_STATE(2478)] = 76369, + [SMALL_STATE(2479)] = 76392, + [SMALL_STATE(2480)] = 76415, + [SMALL_STATE(2481)] = 76438, + [SMALL_STATE(2482)] = 76461, + [SMALL_STATE(2483)] = 76484, + [SMALL_STATE(2484)] = 76507, + [SMALL_STATE(2485)] = 76530, + [SMALL_STATE(2486)] = 76553, + [SMALL_STATE(2487)] = 76576, + [SMALL_STATE(2488)] = 76599, + [SMALL_STATE(2489)] = 76622, + [SMALL_STATE(2490)] = 76645, + [SMALL_STATE(2491)] = 76676, + [SMALL_STATE(2492)] = 76709, + [SMALL_STATE(2493)] = 76732, + [SMALL_STATE(2494)] = 76763, + [SMALL_STATE(2495)] = 76798, + [SMALL_STATE(2496)] = 76821, + [SMALL_STATE(2497)] = 76844, + [SMALL_STATE(2498)] = 76867, + [SMALL_STATE(2499)] = 76902, + [SMALL_STATE(2500)] = 76933, + [SMALL_STATE(2501)] = 76964, + [SMALL_STATE(2502)] = 76996, + [SMALL_STATE(2503)] = 77028, + [SMALL_STATE(2504)] = 77058, + [SMALL_STATE(2505)] = 77090, + [SMALL_STATE(2506)] = 77128, + [SMALL_STATE(2507)] = 77158, + [SMALL_STATE(2508)] = 77186, + [SMALL_STATE(2509)] = 77214, + [SMALL_STATE(2510)] = 77242, + [SMALL_STATE(2511)] = 77276, + [SMALL_STATE(2512)] = 77300, + [SMALL_STATE(2513)] = 77328, + [SMALL_STATE(2514)] = 77366, + [SMALL_STATE(2515)] = 77404, + [SMALL_STATE(2516)] = 77432, + [SMALL_STATE(2517)] = 77460, + [SMALL_STATE(2518)] = 77492, + [SMALL_STATE(2519)] = 77530, + [SMALL_STATE(2520)] = 77562, + [SMALL_STATE(2521)] = 77600, + [SMALL_STATE(2522)] = 77626, + [SMALL_STATE(2523)] = 77654, + [SMALL_STATE(2524)] = 77680, + [SMALL_STATE(2525)] = 77718, + [SMALL_STATE(2526)] = 77750, + [SMALL_STATE(2527)] = 77778, + [SMALL_STATE(2528)] = 77814, + [SMALL_STATE(2529)] = 77846, + [SMALL_STATE(2530)] = 77876, + [SMALL_STATE(2531)] = 77914, + [SMALL_STATE(2532)] = 77948, + [SMALL_STATE(2533)] = 77972, + [SMALL_STATE(2534)] = 77996, + [SMALL_STATE(2535)] = 78020, + [SMALL_STATE(2536)] = 78058, + [SMALL_STATE(2537)] = 78090, + [SMALL_STATE(2538)] = 78128, + [SMALL_STATE(2539)] = 78166, + [SMALL_STATE(2540)] = 78204, + [SMALL_STATE(2541)] = 78232, + [SMALL_STATE(2542)] = 78264, + [SMALL_STATE(2543)] = 78302, + [SMALL_STATE(2544)] = 78340, + [SMALL_STATE(2545)] = 78364, + [SMALL_STATE(2546)] = 78402, + [SMALL_STATE(2547)] = 78428, + [SMALL_STATE(2548)] = 78466, + [SMALL_STATE(2549)] = 78498, + [SMALL_STATE(2550)] = 78530, + [SMALL_STATE(2551)] = 78562, + [SMALL_STATE(2552)] = 78600, + [SMALL_STATE(2553)] = 78632, + [SMALL_STATE(2554)] = 78664, + [SMALL_STATE(2555)] = 78696, + [SMALL_STATE(2556)] = 78728, + [SMALL_STATE(2557)] = 78760, + [SMALL_STATE(2558)] = 78790, + [SMALL_STATE(2559)] = 78828, + [SMALL_STATE(2560)] = 78866, + [SMALL_STATE(2561)] = 78891, + [SMALL_STATE(2562)] = 78912, + [SMALL_STATE(2563)] = 78947, + [SMALL_STATE(2564)] = 78982, + [SMALL_STATE(2565)] = 79017, + [SMALL_STATE(2566)] = 79052, + [SMALL_STATE(2567)] = 79073, + [SMALL_STATE(2568)] = 79108, + [SMALL_STATE(2569)] = 79143, + [SMALL_STATE(2570)] = 79178, + [SMALL_STATE(2571)] = 79211, + [SMALL_STATE(2572)] = 79244, + [SMALL_STATE(2573)] = 79279, + [SMALL_STATE(2574)] = 79314, + [SMALL_STATE(2575)] = 79349, + [SMALL_STATE(2576)] = 79384, + [SMALL_STATE(2577)] = 79419, + [SMALL_STATE(2578)] = 79454, + [SMALL_STATE(2579)] = 79489, + [SMALL_STATE(2580)] = 79524, + [SMALL_STATE(2581)] = 79545, + [SMALL_STATE(2582)] = 79580, + [SMALL_STATE(2583)] = 79615, + [SMALL_STATE(2584)] = 79650, + [SMALL_STATE(2585)] = 79685, + [SMALL_STATE(2586)] = 79706, + [SMALL_STATE(2587)] = 79741, + [SMALL_STATE(2588)] = 79776, + [SMALL_STATE(2589)] = 79811, + [SMALL_STATE(2590)] = 79846, + [SMALL_STATE(2591)] = 79881, + [SMALL_STATE(2592)] = 79916, + [SMALL_STATE(2593)] = 79951, + [SMALL_STATE(2594)] = 79986, + [SMALL_STATE(2595)] = 80021, + [SMALL_STATE(2596)] = 80056, + [SMALL_STATE(2597)] = 80091, + [SMALL_STATE(2598)] = 80126, + [SMALL_STATE(2599)] = 80161, + [SMALL_STATE(2600)] = 80196, + [SMALL_STATE(2601)] = 80231, + [SMALL_STATE(2602)] = 80256, + [SMALL_STATE(2603)] = 80289, + [SMALL_STATE(2604)] = 80324, + [SMALL_STATE(2605)] = 80359, + [SMALL_STATE(2606)] = 80388, + [SMALL_STATE(2607)] = 80423, + [SMALL_STATE(2608)] = 80458, + [SMALL_STATE(2609)] = 80493, + [SMALL_STATE(2610)] = 80518, + [SMALL_STATE(2611)] = 80543, + [SMALL_STATE(2612)] = 80568, + [SMALL_STATE(2613)] = 80601, + [SMALL_STATE(2614)] = 80636, + [SMALL_STATE(2615)] = 80669, + [SMALL_STATE(2616)] = 80704, + [SMALL_STATE(2617)] = 80739, + [SMALL_STATE(2618)] = 80766, + [SMALL_STATE(2619)] = 80801, + [SMALL_STATE(2620)] = 80836, + [SMALL_STATE(2621)] = 80871, + [SMALL_STATE(2622)] = 80906, + [SMALL_STATE(2623)] = 80941, + [SMALL_STATE(2624)] = 80976, + [SMALL_STATE(2625)] = 81011, + [SMALL_STATE(2626)] = 81046, + [SMALL_STATE(2627)] = 81081, + [SMALL_STATE(2628)] = 81116, + [SMALL_STATE(2629)] = 81148, + [SMALL_STATE(2630)] = 81180, + [SMALL_STATE(2631)] = 81212, + [SMALL_STATE(2632)] = 81244, + [SMALL_STATE(2633)] = 81276, + [SMALL_STATE(2634)] = 81308, + [SMALL_STATE(2635)] = 81340, + [SMALL_STATE(2636)] = 81362, + [SMALL_STATE(2637)] = 81392, + [SMALL_STATE(2638)] = 81422, + [SMALL_STATE(2639)] = 81454, + [SMALL_STATE(2640)] = 81486, + [SMALL_STATE(2641)] = 81516, + [SMALL_STATE(2642)] = 81546, + [SMALL_STATE(2643)] = 81578, + [SMALL_STATE(2644)] = 81608, + [SMALL_STATE(2645)] = 81638, + [SMALL_STATE(2646)] = 81660, + [SMALL_STATE(2647)] = 81692, + [SMALL_STATE(2648)] = 81722, + [SMALL_STATE(2649)] = 81754, + [SMALL_STATE(2650)] = 81786, + [SMALL_STATE(2651)] = 81818, + [SMALL_STATE(2652)] = 81850, + [SMALL_STATE(2653)] = 81882, + [SMALL_STATE(2654)] = 81914, + [SMALL_STATE(2655)] = 81944, + [SMALL_STATE(2656)] = 81976, + [SMALL_STATE(2657)] = 82008, + [SMALL_STATE(2658)] = 82034, + [SMALL_STATE(2659)] = 82056, + [SMALL_STATE(2660)] = 82088, + [SMALL_STATE(2661)] = 82120, + [SMALL_STATE(2662)] = 82148, + [SMALL_STATE(2663)] = 82170, + [SMALL_STATE(2664)] = 82202, + [SMALL_STATE(2665)] = 82234, + [SMALL_STATE(2666)] = 82266, + [SMALL_STATE(2667)] = 82298, + [SMALL_STATE(2668)] = 82330, + [SMALL_STATE(2669)] = 82362, + [SMALL_STATE(2670)] = 82394, + [SMALL_STATE(2671)] = 82426, + [SMALL_STATE(2672)] = 82458, + [SMALL_STATE(2673)] = 82486, + [SMALL_STATE(2674)] = 82512, + [SMALL_STATE(2675)] = 82534, + [SMALL_STATE(2676)] = 82562, + [SMALL_STATE(2677)] = 82588, + [SMALL_STATE(2678)] = 82618, + [SMALL_STATE(2679)] = 82650, + [SMALL_STATE(2680)] = 82680, + [SMALL_STATE(2681)] = 82712, + [SMALL_STATE(2682)] = 82738, + [SMALL_STATE(2683)] = 82770, + [SMALL_STATE(2684)] = 82798, + [SMALL_STATE(2685)] = 82820, + [SMALL_STATE(2686)] = 82848, + [SMALL_STATE(2687)] = 82870, + [SMALL_STATE(2688)] = 82892, + [SMALL_STATE(2689)] = 82924, + [SMALL_STATE(2690)] = 82946, + [SMALL_STATE(2691)] = 82968, + [SMALL_STATE(2692)] = 83000, + [SMALL_STATE(2693)] = 83021, + [SMALL_STATE(2694)] = 83050, + [SMALL_STATE(2695)] = 83079, + [SMALL_STATE(2696)] = 83108, + [SMALL_STATE(2697)] = 83137, + [SMALL_STATE(2698)] = 83166, + [SMALL_STATE(2699)] = 83195, + [SMALL_STATE(2700)] = 83224, + [SMALL_STATE(2701)] = 83253, + [SMALL_STATE(2702)] = 83274, + [SMALL_STATE(2703)] = 83303, + [SMALL_STATE(2704)] = 83332, + [SMALL_STATE(2705)] = 83361, + [SMALL_STATE(2706)] = 83390, + [SMALL_STATE(2707)] = 83419, + [SMALL_STATE(2708)] = 83448, + [SMALL_STATE(2709)] = 83477, + [SMALL_STATE(2710)] = 83504, + [SMALL_STATE(2711)] = 83529, + [SMALL_STATE(2712)] = 83558, + [SMALL_STATE(2713)] = 83587, + [SMALL_STATE(2714)] = 83610, + [SMALL_STATE(2715)] = 83639, + [SMALL_STATE(2716)] = 83660, + [SMALL_STATE(2717)] = 83689, + [SMALL_STATE(2718)] = 83718, + [SMALL_STATE(2719)] = 83747, + [SMALL_STATE(2720)] = 83768, + [SMALL_STATE(2721)] = 83795, + [SMALL_STATE(2722)] = 83816, + [SMALL_STATE(2723)] = 83845, + [SMALL_STATE(2724)] = 83874, + [SMALL_STATE(2725)] = 83895, + [SMALL_STATE(2726)] = 83924, + [SMALL_STATE(2727)] = 83953, + [SMALL_STATE(2728)] = 83982, + [SMALL_STATE(2729)] = 84003, + [SMALL_STATE(2730)] = 84032, + [SMALL_STATE(2731)] = 84061, + [SMALL_STATE(2732)] = 84088, + [SMALL_STATE(2733)] = 84117, + [SMALL_STATE(2734)] = 84146, + [SMALL_STATE(2735)] = 84169, + [SMALL_STATE(2736)] = 84188, + [SMALL_STATE(2737)] = 84215, + [SMALL_STATE(2738)] = 84244, + [SMALL_STATE(2739)] = 84273, + [SMALL_STATE(2740)] = 84302, + [SMALL_STATE(2741)] = 84331, + [SMALL_STATE(2742)] = 84360, + [SMALL_STATE(2743)] = 84389, + [SMALL_STATE(2744)] = 84418, + [SMALL_STATE(2745)] = 84447, + [SMALL_STATE(2746)] = 84476, + [SMALL_STATE(2747)] = 84499, + [SMALL_STATE(2748)] = 84528, + [SMALL_STATE(2749)] = 84551, + [SMALL_STATE(2750)] = 84580, + [SMALL_STATE(2751)] = 84609, + [SMALL_STATE(2752)] = 84632, + [SMALL_STATE(2753)] = 84661, + [SMALL_STATE(2754)] = 84690, + [SMALL_STATE(2755)] = 84719, + [SMALL_STATE(2756)] = 84740, + [SMALL_STATE(2757)] = 84763, + [SMALL_STATE(2758)] = 84786, + [SMALL_STATE(2759)] = 84815, + [SMALL_STATE(2760)] = 84838, + [SMALL_STATE(2761)] = 84867, + [SMALL_STATE(2762)] = 84896, + [SMALL_STATE(2763)] = 84925, + [SMALL_STATE(2764)] = 84946, + [SMALL_STATE(2765)] = 84969, + [SMALL_STATE(2766)] = 84990, + [SMALL_STATE(2767)] = 85019, + [SMALL_STATE(2768)] = 85042, + [SMALL_STATE(2769)] = 85071, + [SMALL_STATE(2770)] = 85100, + [SMALL_STATE(2771)] = 85129, + [SMALL_STATE(2772)] = 85158, + [SMALL_STATE(2773)] = 85187, + [SMALL_STATE(2774)] = 85216, + [SMALL_STATE(2775)] = 85245, + [SMALL_STATE(2776)] = 85274, + [SMALL_STATE(2777)] = 85303, + [SMALL_STATE(2778)] = 85332, + [SMALL_STATE(2779)] = 85361, + [SMALL_STATE(2780)] = 85390, + [SMALL_STATE(2781)] = 85419, + [SMALL_STATE(2782)] = 85444, + [SMALL_STATE(2783)] = 85471, + [SMALL_STATE(2784)] = 85492, + [SMALL_STATE(2785)] = 85521, + [SMALL_STATE(2786)] = 85544, + [SMALL_STATE(2787)] = 85569, + [SMALL_STATE(2788)] = 85590, + [SMALL_STATE(2789)] = 85619, + [SMALL_STATE(2790)] = 85640, + [SMALL_STATE(2791)] = 85661, + [SMALL_STATE(2792)] = 85690, + [SMALL_STATE(2793)] = 85719, + [SMALL_STATE(2794)] = 85748, + [SMALL_STATE(2795)] = 85777, + [SMALL_STATE(2796)] = 85806, + [SMALL_STATE(2797)] = 85835, + [SMALL_STATE(2798)] = 85858, + [SMALL_STATE(2799)] = 85887, + [SMALL_STATE(2800)] = 85912, + [SMALL_STATE(2801)] = 85941, + [SMALL_STATE(2802)] = 85964, + [SMALL_STATE(2803)] = 85987, + [SMALL_STATE(2804)] = 86016, + [SMALL_STATE(2805)] = 86035, + [SMALL_STATE(2806)] = 86064, + [SMALL_STATE(2807)] = 86087, + [SMALL_STATE(2808)] = 86110, + [SMALL_STATE(2809)] = 86131, + [SMALL_STATE(2810)] = 86152, + [SMALL_STATE(2811)] = 86181, + [SMALL_STATE(2812)] = 86204, + [SMALL_STATE(2813)] = 86227, + [SMALL_STATE(2814)] = 86250, + [SMALL_STATE(2815)] = 86277, + [SMALL_STATE(2816)] = 86306, + [SMALL_STATE(2817)] = 86335, + [SMALL_STATE(2818)] = 86364, + [SMALL_STATE(2819)] = 86393, + [SMALL_STATE(2820)] = 86422, + [SMALL_STATE(2821)] = 86445, + [SMALL_STATE(2822)] = 86471, + [SMALL_STATE(2823)] = 86497, + [SMALL_STATE(2824)] = 86523, + [SMALL_STATE(2825)] = 86549, + [SMALL_STATE(2826)] = 86573, + [SMALL_STATE(2827)] = 86595, + [SMALL_STATE(2828)] = 86621, + [SMALL_STATE(2829)] = 86647, + [SMALL_STATE(2830)] = 86673, + [SMALL_STATE(2831)] = 86699, + [SMALL_STATE(2832)] = 86725, + [SMALL_STATE(2833)] = 86751, + [SMALL_STATE(2834)] = 86769, + [SMALL_STATE(2835)] = 86793, + [SMALL_STATE(2836)] = 86819, + [SMALL_STATE(2837)] = 86845, + [SMALL_STATE(2838)] = 86871, + [SMALL_STATE(2839)] = 86897, + [SMALL_STATE(2840)] = 86923, + [SMALL_STATE(2841)] = 86943, + [SMALL_STATE(2842)] = 86969, + [SMALL_STATE(2843)] = 86995, + [SMALL_STATE(2844)] = 87021, + [SMALL_STATE(2845)] = 87045, + [SMALL_STATE(2846)] = 87071, + [SMALL_STATE(2847)] = 87097, + [SMALL_STATE(2848)] = 87123, + [SMALL_STATE(2849)] = 87147, + [SMALL_STATE(2850)] = 87171, + [SMALL_STATE(2851)] = 87197, + [SMALL_STATE(2852)] = 87223, + [SMALL_STATE(2853)] = 87249, + [SMALL_STATE(2854)] = 87275, + [SMALL_STATE(2855)] = 87293, + [SMALL_STATE(2856)] = 87319, + [SMALL_STATE(2857)] = 87345, + [SMALL_STATE(2858)] = 87369, + [SMALL_STATE(2859)] = 87395, + [SMALL_STATE(2860)] = 87419, + [SMALL_STATE(2861)] = 87441, + [SMALL_STATE(2862)] = 87467, + [SMALL_STATE(2863)] = 87489, + [SMALL_STATE(2864)] = 87513, + [SMALL_STATE(2865)] = 87539, + [SMALL_STATE(2866)] = 87557, + [SMALL_STATE(2867)] = 87575, + [SMALL_STATE(2868)] = 87601, + [SMALL_STATE(2869)] = 87627, + [SMALL_STATE(2870)] = 87653, + [SMALL_STATE(2871)] = 87679, + [SMALL_STATE(2872)] = 87705, + [SMALL_STATE(2873)] = 87731, + [SMALL_STATE(2874)] = 87755, + [SMALL_STATE(2875)] = 87781, + [SMALL_STATE(2876)] = 87799, + [SMALL_STATE(2877)] = 87817, + [SMALL_STATE(2878)] = 87835, + [SMALL_STATE(2879)] = 87853, + [SMALL_STATE(2880)] = 87875, + [SMALL_STATE(2881)] = 87897, + [SMALL_STATE(2882)] = 87915, + [SMALL_STATE(2883)] = 87941, + [SMALL_STATE(2884)] = 87959, + [SMALL_STATE(2885)] = 87985, + [SMALL_STATE(2886)] = 88011, + [SMALL_STATE(2887)] = 88037, + [SMALL_STATE(2888)] = 88063, + [SMALL_STATE(2889)] = 88089, + [SMALL_STATE(2890)] = 88115, + [SMALL_STATE(2891)] = 88141, + [SMALL_STATE(2892)] = 88165, + [SMALL_STATE(2893)] = 88191, + [SMALL_STATE(2894)] = 88209, + [SMALL_STATE(2895)] = 88233, + [SMALL_STATE(2896)] = 88259, + [SMALL_STATE(2897)] = 88277, + [SMALL_STATE(2898)] = 88297, + [SMALL_STATE(2899)] = 88323, + [SMALL_STATE(2900)] = 88349, + [SMALL_STATE(2901)] = 88375, + [SMALL_STATE(2902)] = 88393, + [SMALL_STATE(2903)] = 88419, + [SMALL_STATE(2904)] = 88437, + [SMALL_STATE(2905)] = 88455, + [SMALL_STATE(2906)] = 88473, + [SMALL_STATE(2907)] = 88491, + [SMALL_STATE(2908)] = 88517, + [SMALL_STATE(2909)] = 88543, + [SMALL_STATE(2910)] = 88561, + [SMALL_STATE(2911)] = 88583, + [SMALL_STATE(2912)] = 88609, + [SMALL_STATE(2913)] = 88635, + [SMALL_STATE(2914)] = 88653, + [SMALL_STATE(2915)] = 88671, + [SMALL_STATE(2916)] = 88697, + [SMALL_STATE(2917)] = 88717, + [SMALL_STATE(2918)] = 88743, + [SMALL_STATE(2919)] = 88767, + [SMALL_STATE(2920)] = 88787, + [SMALL_STATE(2921)] = 88813, + [SMALL_STATE(2922)] = 88831, + [SMALL_STATE(2923)] = 88855, + [SMALL_STATE(2924)] = 88881, + [SMALL_STATE(2925)] = 88907, + [SMALL_STATE(2926)] = 88933, + [SMALL_STATE(2927)] = 88959, + [SMALL_STATE(2928)] = 88977, + [SMALL_STATE(2929)] = 88995, + [SMALL_STATE(2930)] = 89013, + [SMALL_STATE(2931)] = 89039, + [SMALL_STATE(2932)] = 89057, + [SMALL_STATE(2933)] = 89083, + [SMALL_STATE(2934)] = 89105, + [SMALL_STATE(2935)] = 89123, + [SMALL_STATE(2936)] = 89147, + [SMALL_STATE(2937)] = 89171, + [SMALL_STATE(2938)] = 89197, + [SMALL_STATE(2939)] = 89223, + [SMALL_STATE(2940)] = 89247, + [SMALL_STATE(2941)] = 89273, + [SMALL_STATE(2942)] = 89295, + [SMALL_STATE(2943)] = 89321, + [SMALL_STATE(2944)] = 89347, + [SMALL_STATE(2945)] = 89366, + [SMALL_STATE(2946)] = 89389, + [SMALL_STATE(2947)] = 89412, + [SMALL_STATE(2948)] = 89435, + [SMALL_STATE(2949)] = 89458, + [SMALL_STATE(2950)] = 89481, + [SMALL_STATE(2951)] = 89502, + [SMALL_STATE(2952)] = 89525, + [SMALL_STATE(2953)] = 89548, + [SMALL_STATE(2954)] = 89571, + [SMALL_STATE(2955)] = 89594, + [SMALL_STATE(2956)] = 89617, + [SMALL_STATE(2957)] = 89640, + [SMALL_STATE(2958)] = 89663, + [SMALL_STATE(2959)] = 89686, + [SMALL_STATE(2960)] = 89709, + [SMALL_STATE(2961)] = 89730, + [SMALL_STATE(2962)] = 89753, + [SMALL_STATE(2963)] = 89776, + [SMALL_STATE(2964)] = 89799, + [SMALL_STATE(2965)] = 89822, + [SMALL_STATE(2966)] = 89845, + [SMALL_STATE(2967)] = 89868, + [SMALL_STATE(2968)] = 89885, + [SMALL_STATE(2969)] = 89908, + [SMALL_STATE(2970)] = 89929, + [SMALL_STATE(2971)] = 89952, + [SMALL_STATE(2972)] = 89975, + [SMALL_STATE(2973)] = 89998, + [SMALL_STATE(2974)] = 90021, + [SMALL_STATE(2975)] = 90044, + [SMALL_STATE(2976)] = 90065, + [SMALL_STATE(2977)] = 90086, + [SMALL_STATE(2978)] = 90109, + [SMALL_STATE(2979)] = 90128, + [SMALL_STATE(2980)] = 90151, + [SMALL_STATE(2981)] = 90174, + [SMALL_STATE(2982)] = 90197, + [SMALL_STATE(2983)] = 90216, + [SMALL_STATE(2984)] = 90239, + [SMALL_STATE(2985)] = 90262, + [SMALL_STATE(2986)] = 90285, + [SMALL_STATE(2987)] = 90308, + [SMALL_STATE(2988)] = 90329, + [SMALL_STATE(2989)] = 90352, + [SMALL_STATE(2990)] = 90371, + [SMALL_STATE(2991)] = 90394, + [SMALL_STATE(2992)] = 90415, + [SMALL_STATE(2993)] = 90438, + [SMALL_STATE(2994)] = 90459, + [SMALL_STATE(2995)] = 90482, + [SMALL_STATE(2996)] = 90505, + [SMALL_STATE(2997)] = 90528, + [SMALL_STATE(2998)] = 90551, + [SMALL_STATE(2999)] = 90574, + [SMALL_STATE(3000)] = 90597, + [SMALL_STATE(3001)] = 90620, + [SMALL_STATE(3002)] = 90643, + [SMALL_STATE(3003)] = 90664, + [SMALL_STATE(3004)] = 90687, + [SMALL_STATE(3005)] = 90708, + [SMALL_STATE(3006)] = 90729, + [SMALL_STATE(3007)] = 90752, + [SMALL_STATE(3008)] = 90775, + [SMALL_STATE(3009)] = 90798, + [SMALL_STATE(3010)] = 90821, + [SMALL_STATE(3011)] = 90844, + [SMALL_STATE(3012)] = 90867, + [SMALL_STATE(3013)] = 90890, + [SMALL_STATE(3014)] = 90913, + [SMALL_STATE(3015)] = 90936, + [SMALL_STATE(3016)] = 90957, + [SMALL_STATE(3017)] = 90980, + [SMALL_STATE(3018)] = 91003, + [SMALL_STATE(3019)] = 91026, + [SMALL_STATE(3020)] = 91049, + [SMALL_STATE(3021)] = 91072, + [SMALL_STATE(3022)] = 91095, + [SMALL_STATE(3023)] = 91118, + [SMALL_STATE(3024)] = 91141, + [SMALL_STATE(3025)] = 91162, + [SMALL_STATE(3026)] = 91185, + [SMALL_STATE(3027)] = 91208, + [SMALL_STATE(3028)] = 91231, + [SMALL_STATE(3029)] = 91254, + [SMALL_STATE(3030)] = 91277, + [SMALL_STATE(3031)] = 91296, + [SMALL_STATE(3032)] = 91319, + [SMALL_STATE(3033)] = 91338, + [SMALL_STATE(3034)] = 91361, + [SMALL_STATE(3035)] = 91384, + [SMALL_STATE(3036)] = 91407, + [SMALL_STATE(3037)] = 91428, + [SMALL_STATE(3038)] = 91451, + [SMALL_STATE(3039)] = 91474, + [SMALL_STATE(3040)] = 91497, + [SMALL_STATE(3041)] = 91520, + [SMALL_STATE(3042)] = 91539, + [SMALL_STATE(3043)] = 91558, + [SMALL_STATE(3044)] = 91575, + [SMALL_STATE(3045)] = 91598, + [SMALL_STATE(3046)] = 91621, + [SMALL_STATE(3047)] = 91644, + [SMALL_STATE(3048)] = 91667, + [SMALL_STATE(3049)] = 91686, + [SMALL_STATE(3050)] = 91707, + [SMALL_STATE(3051)] = 91730, + [SMALL_STATE(3052)] = 91749, + [SMALL_STATE(3053)] = 91772, + [SMALL_STATE(3054)] = 91795, + [SMALL_STATE(3055)] = 91818, + [SMALL_STATE(3056)] = 91841, + [SMALL_STATE(3057)] = 91864, + [SMALL_STATE(3058)] = 91883, + [SMALL_STATE(3059)] = 91900, + [SMALL_STATE(3060)] = 91923, + [SMALL_STATE(3061)] = 91946, + [SMALL_STATE(3062)] = 91969, + [SMALL_STATE(3063)] = 91992, + [SMALL_STATE(3064)] = 92015, + [SMALL_STATE(3065)] = 92038, + [SMALL_STATE(3066)] = 92057, + [SMALL_STATE(3067)] = 92080, + [SMALL_STATE(3068)] = 92103, + [SMALL_STATE(3069)] = 92126, + [SMALL_STATE(3070)] = 92149, + [SMALL_STATE(3071)] = 92168, + [SMALL_STATE(3072)] = 92187, + [SMALL_STATE(3073)] = 92208, + [SMALL_STATE(3074)] = 92231, + [SMALL_STATE(3075)] = 92254, + [SMALL_STATE(3076)] = 92277, + [SMALL_STATE(3077)] = 92296, + [SMALL_STATE(3078)] = 92319, + [SMALL_STATE(3079)] = 92342, + [SMALL_STATE(3080)] = 92365, + [SMALL_STATE(3081)] = 92388, + [SMALL_STATE(3082)] = 92411, + [SMALL_STATE(3083)] = 92434, + [SMALL_STATE(3084)] = 92457, + [SMALL_STATE(3085)] = 92476, + [SMALL_STATE(3086)] = 92499, + [SMALL_STATE(3087)] = 92518, + [SMALL_STATE(3088)] = 92541, + [SMALL_STATE(3089)] = 92564, + [SMALL_STATE(3090)] = 92587, + [SMALL_STATE(3091)] = 92610, + [SMALL_STATE(3092)] = 92633, + [SMALL_STATE(3093)] = 92656, + [SMALL_STATE(3094)] = 92679, + [SMALL_STATE(3095)] = 92698, + [SMALL_STATE(3096)] = 92719, + [SMALL_STATE(3097)] = 92738, + [SMALL_STATE(3098)] = 92757, + [SMALL_STATE(3099)] = 92780, + [SMALL_STATE(3100)] = 92803, + [SMALL_STATE(3101)] = 92826, + [SMALL_STATE(3102)] = 92849, + [SMALL_STATE(3103)] = 92872, + [SMALL_STATE(3104)] = 92895, + [SMALL_STATE(3105)] = 92918, + [SMALL_STATE(3106)] = 92941, + [SMALL_STATE(3107)] = 92964, + [SMALL_STATE(3108)] = 92987, + [SMALL_STATE(3109)] = 93010, + [SMALL_STATE(3110)] = 93033, + [SMALL_STATE(3111)] = 93056, + [SMALL_STATE(3112)] = 93079, + [SMALL_STATE(3113)] = 93102, + [SMALL_STATE(3114)] = 93125, + [SMALL_STATE(3115)] = 93148, + [SMALL_STATE(3116)] = 93171, + [SMALL_STATE(3117)] = 93190, + [SMALL_STATE(3118)] = 93213, + [SMALL_STATE(3119)] = 93236, + [SMALL_STATE(3120)] = 93259, + [SMALL_STATE(3121)] = 93276, + [SMALL_STATE(3122)] = 93299, + [SMALL_STATE(3123)] = 93322, + [SMALL_STATE(3124)] = 93345, + [SMALL_STATE(3125)] = 93368, + [SMALL_STATE(3126)] = 93391, + [SMALL_STATE(3127)] = 93414, + [SMALL_STATE(3128)] = 93433, + [SMALL_STATE(3129)] = 93456, + [SMALL_STATE(3130)] = 93479, + [SMALL_STATE(3131)] = 93502, + [SMALL_STATE(3132)] = 93525, + [SMALL_STATE(3133)] = 93548, + [SMALL_STATE(3134)] = 93571, + [SMALL_STATE(3135)] = 93588, + [SMALL_STATE(3136)] = 93609, + [SMALL_STATE(3137)] = 93632, + [SMALL_STATE(3138)] = 93655, + [SMALL_STATE(3139)] = 93678, + [SMALL_STATE(3140)] = 93701, + [SMALL_STATE(3141)] = 93724, + [SMALL_STATE(3142)] = 93747, + [SMALL_STATE(3143)] = 93770, + [SMALL_STATE(3144)] = 93791, + [SMALL_STATE(3145)] = 93814, + [SMALL_STATE(3146)] = 93837, + [SMALL_STATE(3147)] = 93860, + [SMALL_STATE(3148)] = 93881, + [SMALL_STATE(3149)] = 93904, + [SMALL_STATE(3150)] = 93927, + [SMALL_STATE(3151)] = 93946, + [SMALL_STATE(3152)] = 93969, + [SMALL_STATE(3153)] = 93992, + [SMALL_STATE(3154)] = 94015, + [SMALL_STATE(3155)] = 94038, + [SMALL_STATE(3156)] = 94061, + [SMALL_STATE(3157)] = 94084, + [SMALL_STATE(3158)] = 94107, + [SMALL_STATE(3159)] = 94130, + [SMALL_STATE(3160)] = 94153, + [SMALL_STATE(3161)] = 94176, + [SMALL_STATE(3162)] = 94199, + [SMALL_STATE(3163)] = 94222, + [SMALL_STATE(3164)] = 94243, + [SMALL_STATE(3165)] = 94262, + [SMALL_STATE(3166)] = 94285, + [SMALL_STATE(3167)] = 94308, + [SMALL_STATE(3168)] = 94327, + [SMALL_STATE(3169)] = 94350, + [SMALL_STATE(3170)] = 94373, + [SMALL_STATE(3171)] = 94396, + [SMALL_STATE(3172)] = 94415, + [SMALL_STATE(3173)] = 94438, + [SMALL_STATE(3174)] = 94461, + [SMALL_STATE(3175)] = 94482, + [SMALL_STATE(3176)] = 94505, + [SMALL_STATE(3177)] = 94528, + [SMALL_STATE(3178)] = 94551, + [SMALL_STATE(3179)] = 94574, + [SMALL_STATE(3180)] = 94597, + [SMALL_STATE(3181)] = 94620, + [SMALL_STATE(3182)] = 94643, + [SMALL_STATE(3183)] = 94662, + [SMALL_STATE(3184)] = 94685, + [SMALL_STATE(3185)] = 94708, + [SMALL_STATE(3186)] = 94727, + [SMALL_STATE(3187)] = 94750, + [SMALL_STATE(3188)] = 94773, + [SMALL_STATE(3189)] = 94796, + [SMALL_STATE(3190)] = 94819, + [SMALL_STATE(3191)] = 94842, + [SMALL_STATE(3192)] = 94865, + [SMALL_STATE(3193)] = 94888, + [SMALL_STATE(3194)] = 94907, + [SMALL_STATE(3195)] = 94928, + [SMALL_STATE(3196)] = 94951, + [SMALL_STATE(3197)] = 94974, + [SMALL_STATE(3198)] = 94997, + [SMALL_STATE(3199)] = 95020, + [SMALL_STATE(3200)] = 95043, + [SMALL_STATE(3201)] = 95062, + [SMALL_STATE(3202)] = 95085, + [SMALL_STATE(3203)] = 95108, + [SMALL_STATE(3204)] = 95131, + [SMALL_STATE(3205)] = 95154, + [SMALL_STATE(3206)] = 95177, + [SMALL_STATE(3207)] = 95200, + [SMALL_STATE(3208)] = 95223, + [SMALL_STATE(3209)] = 95246, + [SMALL_STATE(3210)] = 95269, + [SMALL_STATE(3211)] = 95292, + [SMALL_STATE(3212)] = 95315, + [SMALL_STATE(3213)] = 95338, + [SMALL_STATE(3214)] = 95361, + [SMALL_STATE(3215)] = 95384, + [SMALL_STATE(3216)] = 95405, + [SMALL_STATE(3217)] = 95428, + [SMALL_STATE(3218)] = 95451, + [SMALL_STATE(3219)] = 95474, + [SMALL_STATE(3220)] = 95497, + [SMALL_STATE(3221)] = 95520, + [SMALL_STATE(3222)] = 95539, + [SMALL_STATE(3223)] = 95562, + [SMALL_STATE(3224)] = 95585, + [SMALL_STATE(3225)] = 95608, + [SMALL_STATE(3226)] = 95631, + [SMALL_STATE(3227)] = 95654, + [SMALL_STATE(3228)] = 95677, + [SMALL_STATE(3229)] = 95698, + [SMALL_STATE(3230)] = 95721, + [SMALL_STATE(3231)] = 95740, + [SMALL_STATE(3232)] = 95763, + [SMALL_STATE(3233)] = 95786, + [SMALL_STATE(3234)] = 95807, + [SMALL_STATE(3235)] = 95830, + [SMALL_STATE(3236)] = 95853, + [SMALL_STATE(3237)] = 95876, + [SMALL_STATE(3238)] = 95896, + [SMALL_STATE(3239)] = 95916, + [SMALL_STATE(3240)] = 95936, + [SMALL_STATE(3241)] = 95956, + [SMALL_STATE(3242)] = 95974, + [SMALL_STATE(3243)] = 95994, + [SMALL_STATE(3244)] = 96014, + [SMALL_STATE(3245)] = 96034, + [SMALL_STATE(3246)] = 96054, + [SMALL_STATE(3247)] = 96074, + [SMALL_STATE(3248)] = 96094, + [SMALL_STATE(3249)] = 96114, + [SMALL_STATE(3250)] = 96134, + [SMALL_STATE(3251)] = 96154, + [SMALL_STATE(3252)] = 96174, + [SMALL_STATE(3253)] = 96194, + [SMALL_STATE(3254)] = 96214, + [SMALL_STATE(3255)] = 96234, + [SMALL_STATE(3256)] = 96254, + [SMALL_STATE(3257)] = 96274, + [SMALL_STATE(3258)] = 96294, + [SMALL_STATE(3259)] = 96314, + [SMALL_STATE(3260)] = 96334, + [SMALL_STATE(3261)] = 96350, + [SMALL_STATE(3262)] = 96370, + [SMALL_STATE(3263)] = 96390, + [SMALL_STATE(3264)] = 96410, + [SMALL_STATE(3265)] = 96430, + [SMALL_STATE(3266)] = 96450, + [SMALL_STATE(3267)] = 96470, + [SMALL_STATE(3268)] = 96490, + [SMALL_STATE(3269)] = 96506, + [SMALL_STATE(3270)] = 96526, + [SMALL_STATE(3271)] = 96546, + [SMALL_STATE(3272)] = 96564, + [SMALL_STATE(3273)] = 96584, + [SMALL_STATE(3274)] = 96602, + [SMALL_STATE(3275)] = 96622, + [SMALL_STATE(3276)] = 96642, + [SMALL_STATE(3277)] = 96662, + [SMALL_STATE(3278)] = 96682, + [SMALL_STATE(3279)] = 96702, + [SMALL_STATE(3280)] = 96718, + [SMALL_STATE(3281)] = 96738, + [SMALL_STATE(3282)] = 96754, + [SMALL_STATE(3283)] = 96774, + [SMALL_STATE(3284)] = 96792, + [SMALL_STATE(3285)] = 96812, + [SMALL_STATE(3286)] = 96832, + [SMALL_STATE(3287)] = 96850, + [SMALL_STATE(3288)] = 96870, + [SMALL_STATE(3289)] = 96886, + [SMALL_STATE(3290)] = 96906, + [SMALL_STATE(3291)] = 96926, + [SMALL_STATE(3292)] = 96946, + [SMALL_STATE(3293)] = 96962, + [SMALL_STATE(3294)] = 96982, + [SMALL_STATE(3295)] = 97002, + [SMALL_STATE(3296)] = 97022, + [SMALL_STATE(3297)] = 97042, + [SMALL_STATE(3298)] = 97058, + [SMALL_STATE(3299)] = 97074, + [SMALL_STATE(3300)] = 97090, + [SMALL_STATE(3301)] = 97106, + [SMALL_STATE(3302)] = 97122, + [SMALL_STATE(3303)] = 97142, + [SMALL_STATE(3304)] = 97162, + [SMALL_STATE(3305)] = 97178, + [SMALL_STATE(3306)] = 97194, + [SMALL_STATE(3307)] = 97214, + [SMALL_STATE(3308)] = 97234, + [SMALL_STATE(3309)] = 97250, + [SMALL_STATE(3310)] = 97270, + [SMALL_STATE(3311)] = 97286, + [SMALL_STATE(3312)] = 97302, + [SMALL_STATE(3313)] = 97322, + [SMALL_STATE(3314)] = 97342, + [SMALL_STATE(3315)] = 97358, + [SMALL_STATE(3316)] = 97378, + [SMALL_STATE(3317)] = 97394, + [SMALL_STATE(3318)] = 97410, + [SMALL_STATE(3319)] = 97430, + [SMALL_STATE(3320)] = 97450, + [SMALL_STATE(3321)] = 97470, + [SMALL_STATE(3322)] = 97486, + [SMALL_STATE(3323)] = 97506, + [SMALL_STATE(3324)] = 97526, + [SMALL_STATE(3325)] = 97546, + [SMALL_STATE(3326)] = 97566, + [SMALL_STATE(3327)] = 97586, + [SMALL_STATE(3328)] = 97602, + [SMALL_STATE(3329)] = 97620, + [SMALL_STATE(3330)] = 97638, + [SMALL_STATE(3331)] = 97658, + [SMALL_STATE(3332)] = 97674, + [SMALL_STATE(3333)] = 97694, + [SMALL_STATE(3334)] = 97710, + [SMALL_STATE(3335)] = 97730, + [SMALL_STATE(3336)] = 97750, + [SMALL_STATE(3337)] = 97770, + [SMALL_STATE(3338)] = 97790, + [SMALL_STATE(3339)] = 97806, + [SMALL_STATE(3340)] = 97824, + [SMALL_STATE(3341)] = 97844, + [SMALL_STATE(3342)] = 97864, + [SMALL_STATE(3343)] = 97880, + [SMALL_STATE(3344)] = 97900, + [SMALL_STATE(3345)] = 97920, + [SMALL_STATE(3346)] = 97940, + [SMALL_STATE(3347)] = 97958, + [SMALL_STATE(3348)] = 97978, + [SMALL_STATE(3349)] = 97994, + [SMALL_STATE(3350)] = 98014, + [SMALL_STATE(3351)] = 98034, + [SMALL_STATE(3352)] = 98052, + [SMALL_STATE(3353)] = 98072, + [SMALL_STATE(3354)] = 98092, + [SMALL_STATE(3355)] = 98112, + [SMALL_STATE(3356)] = 98130, + [SMALL_STATE(3357)] = 98150, + [SMALL_STATE(3358)] = 98170, + [SMALL_STATE(3359)] = 98190, + [SMALL_STATE(3360)] = 98210, + [SMALL_STATE(3361)] = 98230, + [SMALL_STATE(3362)] = 98250, + [SMALL_STATE(3363)] = 98270, + [SMALL_STATE(3364)] = 98290, + [SMALL_STATE(3365)] = 98310, + [SMALL_STATE(3366)] = 98330, + [SMALL_STATE(3367)] = 98350, + [SMALL_STATE(3368)] = 98370, + [SMALL_STATE(3369)] = 98390, + [SMALL_STATE(3370)] = 98410, + [SMALL_STATE(3371)] = 98430, + [SMALL_STATE(3372)] = 98450, + [SMALL_STATE(3373)] = 98466, + [SMALL_STATE(3374)] = 98482, + [SMALL_STATE(3375)] = 98502, + [SMALL_STATE(3376)] = 98522, + [SMALL_STATE(3377)] = 98542, + [SMALL_STATE(3378)] = 98562, + [SMALL_STATE(3379)] = 98582, + [SMALL_STATE(3380)] = 98602, + [SMALL_STATE(3381)] = 98622, + [SMALL_STATE(3382)] = 98642, + [SMALL_STATE(3383)] = 98662, + [SMALL_STATE(3384)] = 98682, + [SMALL_STATE(3385)] = 98702, + [SMALL_STATE(3386)] = 98722, + [SMALL_STATE(3387)] = 98742, + [SMALL_STATE(3388)] = 98762, + [SMALL_STATE(3389)] = 98778, + [SMALL_STATE(3390)] = 98794, + [SMALL_STATE(3391)] = 98814, + [SMALL_STATE(3392)] = 98830, + [SMALL_STATE(3393)] = 98846, + [SMALL_STATE(3394)] = 98862, + [SMALL_STATE(3395)] = 98878, + [SMALL_STATE(3396)] = 98894, + [SMALL_STATE(3397)] = 98910, + [SMALL_STATE(3398)] = 98928, + [SMALL_STATE(3399)] = 98948, + [SMALL_STATE(3400)] = 98968, + [SMALL_STATE(3401)] = 98988, + [SMALL_STATE(3402)] = 99004, + [SMALL_STATE(3403)] = 99024, + [SMALL_STATE(3404)] = 99042, + [SMALL_STATE(3405)] = 99062, + [SMALL_STATE(3406)] = 99082, + [SMALL_STATE(3407)] = 99102, + [SMALL_STATE(3408)] = 99118, + [SMALL_STATE(3409)] = 99138, + [SMALL_STATE(3410)] = 99158, + [SMALL_STATE(3411)] = 99178, + [SMALL_STATE(3412)] = 99198, + [SMALL_STATE(3413)] = 99218, + [SMALL_STATE(3414)] = 99238, + [SMALL_STATE(3415)] = 99256, + [SMALL_STATE(3416)] = 99276, + [SMALL_STATE(3417)] = 99296, + [SMALL_STATE(3418)] = 99316, + [SMALL_STATE(3419)] = 99336, + [SMALL_STATE(3420)] = 99352, + [SMALL_STATE(3421)] = 99370, + [SMALL_STATE(3422)] = 99390, + [SMALL_STATE(3423)] = 99410, + [SMALL_STATE(3424)] = 99430, + [SMALL_STATE(3425)] = 99450, + [SMALL_STATE(3426)] = 99470, + [SMALL_STATE(3427)] = 99490, + [SMALL_STATE(3428)] = 99510, + [SMALL_STATE(3429)] = 99530, + [SMALL_STATE(3430)] = 99550, + [SMALL_STATE(3431)] = 99570, + [SMALL_STATE(3432)] = 99590, + [SMALL_STATE(3433)] = 99610, + [SMALL_STATE(3434)] = 99630, + [SMALL_STATE(3435)] = 99650, + [SMALL_STATE(3436)] = 99666, + [SMALL_STATE(3437)] = 99686, + [SMALL_STATE(3438)] = 99706, + [SMALL_STATE(3439)] = 99726, + [SMALL_STATE(3440)] = 99746, + [SMALL_STATE(3441)] = 99766, + [SMALL_STATE(3442)] = 99786, + [SMALL_STATE(3443)] = 99806, + [SMALL_STATE(3444)] = 99826, + [SMALL_STATE(3445)] = 99846, + [SMALL_STATE(3446)] = 99866, + [SMALL_STATE(3447)] = 99884, + [SMALL_STATE(3448)] = 99904, + [SMALL_STATE(3449)] = 99924, + [SMALL_STATE(3450)] = 99944, + [SMALL_STATE(3451)] = 99964, + [SMALL_STATE(3452)] = 99984, + [SMALL_STATE(3453)] = 100004, + [SMALL_STATE(3454)] = 100024, + [SMALL_STATE(3455)] = 100044, + [SMALL_STATE(3456)] = 100062, + [SMALL_STATE(3457)] = 100078, + [SMALL_STATE(3458)] = 100098, + [SMALL_STATE(3459)] = 100116, + [SMALL_STATE(3460)] = 100136, + [SMALL_STATE(3461)] = 100156, + [SMALL_STATE(3462)] = 100176, + [SMALL_STATE(3463)] = 100194, + [SMALL_STATE(3464)] = 100214, + [SMALL_STATE(3465)] = 100234, + [SMALL_STATE(3466)] = 100250, + [SMALL_STATE(3467)] = 100266, + [SMALL_STATE(3468)] = 100286, + [SMALL_STATE(3469)] = 100306, + [SMALL_STATE(3470)] = 100326, + [SMALL_STATE(3471)] = 100342, + [SMALL_STATE(3472)] = 100358, + [SMALL_STATE(3473)] = 100374, + [SMALL_STATE(3474)] = 100394, + [SMALL_STATE(3475)] = 100410, + [SMALL_STATE(3476)] = 100430, + [SMALL_STATE(3477)] = 100450, + [SMALL_STATE(3478)] = 100468, + [SMALL_STATE(3479)] = 100488, + [SMALL_STATE(3480)] = 100508, + [SMALL_STATE(3481)] = 100528, + [SMALL_STATE(3482)] = 100548, + [SMALL_STATE(3483)] = 100566, + [SMALL_STATE(3484)] = 100586, + [SMALL_STATE(3485)] = 100606, + [SMALL_STATE(3486)] = 100626, + [SMALL_STATE(3487)] = 100644, + [SMALL_STATE(3488)] = 100660, + [SMALL_STATE(3489)] = 100678, + [SMALL_STATE(3490)] = 100696, + [SMALL_STATE(3491)] = 100716, + [SMALL_STATE(3492)] = 100732, + [SMALL_STATE(3493)] = 100752, + [SMALL_STATE(3494)] = 100772, + [SMALL_STATE(3495)] = 100792, + [SMALL_STATE(3496)] = 100812, + [SMALL_STATE(3497)] = 100832, + [SMALL_STATE(3498)] = 100848, + [SMALL_STATE(3499)] = 100868, + [SMALL_STATE(3500)] = 100888, + [SMALL_STATE(3501)] = 100908, + [SMALL_STATE(3502)] = 100928, + [SMALL_STATE(3503)] = 100948, + [SMALL_STATE(3504)] = 100966, + [SMALL_STATE(3505)] = 100982, + [SMALL_STATE(3506)] = 101000, + [SMALL_STATE(3507)] = 101018, + [SMALL_STATE(3508)] = 101036, + [SMALL_STATE(3509)] = 101056, + [SMALL_STATE(3510)] = 101076, + [SMALL_STATE(3511)] = 101096, + [SMALL_STATE(3512)] = 101114, + [SMALL_STATE(3513)] = 101134, + [SMALL_STATE(3514)] = 101152, + [SMALL_STATE(3515)] = 101168, + [SMALL_STATE(3516)] = 101188, + [SMALL_STATE(3517)] = 101208, + [SMALL_STATE(3518)] = 101228, + [SMALL_STATE(3519)] = 101244, + [SMALL_STATE(3520)] = 101262, + [SMALL_STATE(3521)] = 101280, + [SMALL_STATE(3522)] = 101298, + [SMALL_STATE(3523)] = 101318, + [SMALL_STATE(3524)] = 101338, + [SMALL_STATE(3525)] = 101356, + [SMALL_STATE(3526)] = 101376, + [SMALL_STATE(3527)] = 101396, + [SMALL_STATE(3528)] = 101416, + [SMALL_STATE(3529)] = 101436, + [SMALL_STATE(3530)] = 101456, + [SMALL_STATE(3531)] = 101474, + [SMALL_STATE(3532)] = 101494, + [SMALL_STATE(3533)] = 101514, + [SMALL_STATE(3534)] = 101532, + [SMALL_STATE(3535)] = 101548, + [SMALL_STATE(3536)] = 101568, + [SMALL_STATE(3537)] = 101588, + [SMALL_STATE(3538)] = 101608, + [SMALL_STATE(3539)] = 101626, + [SMALL_STATE(3540)] = 101646, + [SMALL_STATE(3541)] = 101666, + [SMALL_STATE(3542)] = 101686, + [SMALL_STATE(3543)] = 101706, + [SMALL_STATE(3544)] = 101726, + [SMALL_STATE(3545)] = 101742, + [SMALL_STATE(3546)] = 101762, + [SMALL_STATE(3547)] = 101782, + [SMALL_STATE(3548)] = 101802, + [SMALL_STATE(3549)] = 101822, + [SMALL_STATE(3550)] = 101842, + [SMALL_STATE(3551)] = 101862, + [SMALL_STATE(3552)] = 101882, + [SMALL_STATE(3553)] = 101902, + [SMALL_STATE(3554)] = 101920, + [SMALL_STATE(3555)] = 101940, + [SMALL_STATE(3556)] = 101958, + [SMALL_STATE(3557)] = 101978, + [SMALL_STATE(3558)] = 101998, + [SMALL_STATE(3559)] = 102018, + [SMALL_STATE(3560)] = 102038, + [SMALL_STATE(3561)] = 102058, + [SMALL_STATE(3562)] = 102078, + [SMALL_STATE(3563)] = 102096, + [SMALL_STATE(3564)] = 102116, + [SMALL_STATE(3565)] = 102136, + [SMALL_STATE(3566)] = 102156, + [SMALL_STATE(3567)] = 102176, + [SMALL_STATE(3568)] = 102196, + [SMALL_STATE(3569)] = 102216, + [SMALL_STATE(3570)] = 102236, + [SMALL_STATE(3571)] = 102256, + [SMALL_STATE(3572)] = 102276, + [SMALL_STATE(3573)] = 102296, + [SMALL_STATE(3574)] = 102312, + [SMALL_STATE(3575)] = 102332, + [SMALL_STATE(3576)] = 102352, + [SMALL_STATE(3577)] = 102370, + [SMALL_STATE(3578)] = 102390, + [SMALL_STATE(3579)] = 102410, + [SMALL_STATE(3580)] = 102430, + [SMALL_STATE(3581)] = 102450, + [SMALL_STATE(3582)] = 102470, + [SMALL_STATE(3583)] = 102490, + [SMALL_STATE(3584)] = 102510, + [SMALL_STATE(3585)] = 102530, + [SMALL_STATE(3586)] = 102547, + [SMALL_STATE(3587)] = 102564, + [SMALL_STATE(3588)] = 102581, + [SMALL_STATE(3589)] = 102598, + [SMALL_STATE(3590)] = 102613, + [SMALL_STATE(3591)] = 102630, + [SMALL_STATE(3592)] = 102647, + [SMALL_STATE(3593)] = 102664, + [SMALL_STATE(3594)] = 102679, + [SMALL_STATE(3595)] = 102696, + [SMALL_STATE(3596)] = 102713, + [SMALL_STATE(3597)] = 102728, + [SMALL_STATE(3598)] = 102745, + [SMALL_STATE(3599)] = 102760, + [SMALL_STATE(3600)] = 102777, + [SMALL_STATE(3601)] = 102792, + [SMALL_STATE(3602)] = 102809, + [SMALL_STATE(3603)] = 102826, + [SMALL_STATE(3604)] = 102843, + [SMALL_STATE(3605)] = 102860, + [SMALL_STATE(3606)] = 102877, + [SMALL_STATE(3607)] = 102894, + [SMALL_STATE(3608)] = 102909, + [SMALL_STATE(3609)] = 102926, + [SMALL_STATE(3610)] = 102943, + [SMALL_STATE(3611)] = 102960, + [SMALL_STATE(3612)] = 102975, + [SMALL_STATE(3613)] = 102992, + [SMALL_STATE(3614)] = 103007, + [SMALL_STATE(3615)] = 103024, + [SMALL_STATE(3616)] = 103041, + [SMALL_STATE(3617)] = 103058, + [SMALL_STATE(3618)] = 103075, + [SMALL_STATE(3619)] = 103090, + [SMALL_STATE(3620)] = 103107, + [SMALL_STATE(3621)] = 103124, + [SMALL_STATE(3622)] = 103141, + [SMALL_STATE(3623)] = 103158, + [SMALL_STATE(3624)] = 103175, + [SMALL_STATE(3625)] = 103192, + [SMALL_STATE(3626)] = 103209, + [SMALL_STATE(3627)] = 103226, + [SMALL_STATE(3628)] = 103243, + [SMALL_STATE(3629)] = 103260, + [SMALL_STATE(3630)] = 103275, + [SMALL_STATE(3631)] = 103292, + [SMALL_STATE(3632)] = 103307, + [SMALL_STATE(3633)] = 103322, + [SMALL_STATE(3634)] = 103339, + [SMALL_STATE(3635)] = 103356, + [SMALL_STATE(3636)] = 103373, + [SMALL_STATE(3637)] = 103390, + [SMALL_STATE(3638)] = 103407, + [SMALL_STATE(3639)] = 103422, + [SMALL_STATE(3640)] = 103439, + [SMALL_STATE(3641)] = 103456, + [SMALL_STATE(3642)] = 103473, + [SMALL_STATE(3643)] = 103490, + [SMALL_STATE(3644)] = 103507, + [SMALL_STATE(3645)] = 103522, + [SMALL_STATE(3646)] = 103539, + [SMALL_STATE(3647)] = 103556, + [SMALL_STATE(3648)] = 103573, + [SMALL_STATE(3649)] = 103590, + [SMALL_STATE(3650)] = 103607, + [SMALL_STATE(3651)] = 103624, + [SMALL_STATE(3652)] = 103641, + [SMALL_STATE(3653)] = 103658, + [SMALL_STATE(3654)] = 103675, + [SMALL_STATE(3655)] = 103690, + [SMALL_STATE(3656)] = 103707, + [SMALL_STATE(3657)] = 103722, + [SMALL_STATE(3658)] = 103739, + [SMALL_STATE(3659)] = 103756, + [SMALL_STATE(3660)] = 103773, + [SMALL_STATE(3661)] = 103790, + [SMALL_STATE(3662)] = 103807, + [SMALL_STATE(3663)] = 103822, + [SMALL_STATE(3664)] = 103839, + [SMALL_STATE(3665)] = 103856, + [SMALL_STATE(3666)] = 103873, + [SMALL_STATE(3667)] = 103888, + [SMALL_STATE(3668)] = 103905, + [SMALL_STATE(3669)] = 103922, + [SMALL_STATE(3670)] = 103939, + [SMALL_STATE(3671)] = 103956, + [SMALL_STATE(3672)] = 103973, + [SMALL_STATE(3673)] = 103990, + [SMALL_STATE(3674)] = 104007, + [SMALL_STATE(3675)] = 104022, + [SMALL_STATE(3676)] = 104039, + [SMALL_STATE(3677)] = 104056, + [SMALL_STATE(3678)] = 104073, + [SMALL_STATE(3679)] = 104090, + [SMALL_STATE(3680)] = 104107, + [SMALL_STATE(3681)] = 104124, + [SMALL_STATE(3682)] = 104141, + [SMALL_STATE(3683)] = 104156, + [SMALL_STATE(3684)] = 104173, + [SMALL_STATE(3685)] = 104190, + [SMALL_STATE(3686)] = 104207, + [SMALL_STATE(3687)] = 104224, + [SMALL_STATE(3688)] = 104241, + [SMALL_STATE(3689)] = 104258, + [SMALL_STATE(3690)] = 104275, + [SMALL_STATE(3691)] = 104292, + [SMALL_STATE(3692)] = 104309, + [SMALL_STATE(3693)] = 104326, + [SMALL_STATE(3694)] = 104343, + [SMALL_STATE(3695)] = 104360, + [SMALL_STATE(3696)] = 104377, + [SMALL_STATE(3697)] = 104392, + [SMALL_STATE(3698)] = 104407, + [SMALL_STATE(3699)] = 104424, + [SMALL_STATE(3700)] = 104441, + [SMALL_STATE(3701)] = 104458, + [SMALL_STATE(3702)] = 104475, + [SMALL_STATE(3703)] = 104492, + [SMALL_STATE(3704)] = 104509, + [SMALL_STATE(3705)] = 104526, + [SMALL_STATE(3706)] = 104541, + [SMALL_STATE(3707)] = 104558, + [SMALL_STATE(3708)] = 104575, + [SMALL_STATE(3709)] = 104592, + [SMALL_STATE(3710)] = 104609, + [SMALL_STATE(3711)] = 104624, + [SMALL_STATE(3712)] = 104641, + [SMALL_STATE(3713)] = 104658, + [SMALL_STATE(3714)] = 104675, + [SMALL_STATE(3715)] = 104692, + [SMALL_STATE(3716)] = 104707, + [SMALL_STATE(3717)] = 104724, + [SMALL_STATE(3718)] = 104741, + [SMALL_STATE(3719)] = 104758, + [SMALL_STATE(3720)] = 104775, + [SMALL_STATE(3721)] = 104792, + [SMALL_STATE(3722)] = 104809, + [SMALL_STATE(3723)] = 104826, + [SMALL_STATE(3724)] = 104843, + [SMALL_STATE(3725)] = 104860, + [SMALL_STATE(3726)] = 104877, + [SMALL_STATE(3727)] = 104894, + [SMALL_STATE(3728)] = 104911, + [SMALL_STATE(3729)] = 104928, + [SMALL_STATE(3730)] = 104945, + [SMALL_STATE(3731)] = 104962, + [SMALL_STATE(3732)] = 104979, + [SMALL_STATE(3733)] = 104994, + [SMALL_STATE(3734)] = 105011, + [SMALL_STATE(3735)] = 105026, + [SMALL_STATE(3736)] = 105043, + [SMALL_STATE(3737)] = 105060, + [SMALL_STATE(3738)] = 105077, + [SMALL_STATE(3739)] = 105094, + [SMALL_STATE(3740)] = 105111, + [SMALL_STATE(3741)] = 105128, + [SMALL_STATE(3742)] = 105145, + [SMALL_STATE(3743)] = 105160, + [SMALL_STATE(3744)] = 105177, + [SMALL_STATE(3745)] = 105194, + [SMALL_STATE(3746)] = 105211, + [SMALL_STATE(3747)] = 105228, + [SMALL_STATE(3748)] = 105245, + [SMALL_STATE(3749)] = 105262, + [SMALL_STATE(3750)] = 105279, + [SMALL_STATE(3751)] = 105296, + [SMALL_STATE(3752)] = 105313, + [SMALL_STATE(3753)] = 105330, + [SMALL_STATE(3754)] = 105347, + [SMALL_STATE(3755)] = 105364, + [SMALL_STATE(3756)] = 105381, + [SMALL_STATE(3757)] = 105398, + [SMALL_STATE(3758)] = 105415, + [SMALL_STATE(3759)] = 105432, + [SMALL_STATE(3760)] = 105447, + [SMALL_STATE(3761)] = 105464, + [SMALL_STATE(3762)] = 105481, + [SMALL_STATE(3763)] = 105496, + [SMALL_STATE(3764)] = 105513, + [SMALL_STATE(3765)] = 105530, + [SMALL_STATE(3766)] = 105547, + [SMALL_STATE(3767)] = 105562, + [SMALL_STATE(3768)] = 105579, + [SMALL_STATE(3769)] = 105594, + [SMALL_STATE(3770)] = 105609, + [SMALL_STATE(3771)] = 105626, + [SMALL_STATE(3772)] = 105643, + [SMALL_STATE(3773)] = 105660, + [SMALL_STATE(3774)] = 105677, + [SMALL_STATE(3775)] = 105694, + [SMALL_STATE(3776)] = 105711, + [SMALL_STATE(3777)] = 105728, + [SMALL_STATE(3778)] = 105745, + [SMALL_STATE(3779)] = 105760, + [SMALL_STATE(3780)] = 105777, + [SMALL_STATE(3781)] = 105794, + [SMALL_STATE(3782)] = 105811, + [SMALL_STATE(3783)] = 105826, + [SMALL_STATE(3784)] = 105843, + [SMALL_STATE(3785)] = 105860, + [SMALL_STATE(3786)] = 105875, + [SMALL_STATE(3787)] = 105890, + [SMALL_STATE(3788)] = 105907, + [SMALL_STATE(3789)] = 105924, + [SMALL_STATE(3790)] = 105941, + [SMALL_STATE(3791)] = 105958, + [SMALL_STATE(3792)] = 105975, + [SMALL_STATE(3793)] = 105990, + [SMALL_STATE(3794)] = 106007, + [SMALL_STATE(3795)] = 106024, + [SMALL_STATE(3796)] = 106041, + [SMALL_STATE(3797)] = 106058, + [SMALL_STATE(3798)] = 106075, + [SMALL_STATE(3799)] = 106092, + [SMALL_STATE(3800)] = 106109, + [SMALL_STATE(3801)] = 106124, + [SMALL_STATE(3802)] = 106139, + [SMALL_STATE(3803)] = 106156, + [SMALL_STATE(3804)] = 106173, + [SMALL_STATE(3805)] = 106190, + [SMALL_STATE(3806)] = 106207, + [SMALL_STATE(3807)] = 106222, + [SMALL_STATE(3808)] = 106239, + [SMALL_STATE(3809)] = 106256, + [SMALL_STATE(3810)] = 106273, + [SMALL_STATE(3811)] = 106290, + [SMALL_STATE(3812)] = 106307, + [SMALL_STATE(3813)] = 106324, + [SMALL_STATE(3814)] = 106341, + [SMALL_STATE(3815)] = 106358, + [SMALL_STATE(3816)] = 106375, + [SMALL_STATE(3817)] = 106392, + [SMALL_STATE(3818)] = 106409, + [SMALL_STATE(3819)] = 106424, + [SMALL_STATE(3820)] = 106439, + [SMALL_STATE(3821)] = 106456, + [SMALL_STATE(3822)] = 106473, + [SMALL_STATE(3823)] = 106490, + [SMALL_STATE(3824)] = 106507, + [SMALL_STATE(3825)] = 106522, + [SMALL_STATE(3826)] = 106539, + [SMALL_STATE(3827)] = 106556, + [SMALL_STATE(3828)] = 106571, + [SMALL_STATE(3829)] = 106588, + [SMALL_STATE(3830)] = 106603, + [SMALL_STATE(3831)] = 106620, + [SMALL_STATE(3832)] = 106637, + [SMALL_STATE(3833)] = 106652, + [SMALL_STATE(3834)] = 106669, + [SMALL_STATE(3835)] = 106686, + [SMALL_STATE(3836)] = 106703, + [SMALL_STATE(3837)] = 106720, + [SMALL_STATE(3838)] = 106735, + [SMALL_STATE(3839)] = 106752, + [SMALL_STATE(3840)] = 106769, + [SMALL_STATE(3841)] = 106786, + [SMALL_STATE(3842)] = 106803, + [SMALL_STATE(3843)] = 106818, + [SMALL_STATE(3844)] = 106835, + [SMALL_STATE(3845)] = 106852, + [SMALL_STATE(3846)] = 106869, + [SMALL_STATE(3847)] = 106886, + [SMALL_STATE(3848)] = 106903, + [SMALL_STATE(3849)] = 106920, + [SMALL_STATE(3850)] = 106937, + [SMALL_STATE(3851)] = 106954, + [SMALL_STATE(3852)] = 106971, + [SMALL_STATE(3853)] = 106988, + [SMALL_STATE(3854)] = 107005, + [SMALL_STATE(3855)] = 107022, + [SMALL_STATE(3856)] = 107039, + [SMALL_STATE(3857)] = 107056, + [SMALL_STATE(3858)] = 107073, + [SMALL_STATE(3859)] = 107090, + [SMALL_STATE(3860)] = 107107, + [SMALL_STATE(3861)] = 107124, + [SMALL_STATE(3862)] = 107141, + [SMALL_STATE(3863)] = 107158, + [SMALL_STATE(3864)] = 107175, + [SMALL_STATE(3865)] = 107192, + [SMALL_STATE(3866)] = 107207, + [SMALL_STATE(3867)] = 107224, + [SMALL_STATE(3868)] = 107239, + [SMALL_STATE(3869)] = 107256, + [SMALL_STATE(3870)] = 107273, + [SMALL_STATE(3871)] = 107288, + [SMALL_STATE(3872)] = 107303, + [SMALL_STATE(3873)] = 107320, + [SMALL_STATE(3874)] = 107337, + [SMALL_STATE(3875)] = 107354, + [SMALL_STATE(3876)] = 107371, + [SMALL_STATE(3877)] = 107388, + [SMALL_STATE(3878)] = 107405, + [SMALL_STATE(3879)] = 107422, + [SMALL_STATE(3880)] = 107439, + [SMALL_STATE(3881)] = 107454, + [SMALL_STATE(3882)] = 107471, + [SMALL_STATE(3883)] = 107488, + [SMALL_STATE(3884)] = 107503, + [SMALL_STATE(3885)] = 107520, + [SMALL_STATE(3886)] = 107537, + [SMALL_STATE(3887)] = 107554, + [SMALL_STATE(3888)] = 107571, + [SMALL_STATE(3889)] = 107588, + [SMALL_STATE(3890)] = 107605, + [SMALL_STATE(3891)] = 107622, + [SMALL_STATE(3892)] = 107637, + [SMALL_STATE(3893)] = 107654, + [SMALL_STATE(3894)] = 107671, + [SMALL_STATE(3895)] = 107688, + [SMALL_STATE(3896)] = 107705, + [SMALL_STATE(3897)] = 107722, + [SMALL_STATE(3898)] = 107739, + [SMALL_STATE(3899)] = 107754, + [SMALL_STATE(3900)] = 107771, + [SMALL_STATE(3901)] = 107788, + [SMALL_STATE(3902)] = 107805, + [SMALL_STATE(3903)] = 107822, + [SMALL_STATE(3904)] = 107839, + [SMALL_STATE(3905)] = 107856, + [SMALL_STATE(3906)] = 107873, + [SMALL_STATE(3907)] = 107890, + [SMALL_STATE(3908)] = 107907, + [SMALL_STATE(3909)] = 107924, + [SMALL_STATE(3910)] = 107941, + [SMALL_STATE(3911)] = 107958, + [SMALL_STATE(3912)] = 107975, + [SMALL_STATE(3913)] = 107990, + [SMALL_STATE(3914)] = 108007, + [SMALL_STATE(3915)] = 108022, + [SMALL_STATE(3916)] = 108039, + [SMALL_STATE(3917)] = 108056, + [SMALL_STATE(3918)] = 108073, + [SMALL_STATE(3919)] = 108088, + [SMALL_STATE(3920)] = 108105, + [SMALL_STATE(3921)] = 108122, + [SMALL_STATE(3922)] = 108139, + [SMALL_STATE(3923)] = 108156, + [SMALL_STATE(3924)] = 108173, + [SMALL_STATE(3925)] = 108187, + [SMALL_STATE(3926)] = 108201, + [SMALL_STATE(3927)] = 108215, + [SMALL_STATE(3928)] = 108229, + [SMALL_STATE(3929)] = 108243, + [SMALL_STATE(3930)] = 108257, + [SMALL_STATE(3931)] = 108271, + [SMALL_STATE(3932)] = 108285, + [SMALL_STATE(3933)] = 108299, + [SMALL_STATE(3934)] = 108313, + [SMALL_STATE(3935)] = 108327, + [SMALL_STATE(3936)] = 108341, + [SMALL_STATE(3937)] = 108355, + [SMALL_STATE(3938)] = 108369, + [SMALL_STATE(3939)] = 108383, + [SMALL_STATE(3940)] = 108397, + [SMALL_STATE(3941)] = 108411, + [SMALL_STATE(3942)] = 108425, + [SMALL_STATE(3943)] = 108439, + [SMALL_STATE(3944)] = 108453, + [SMALL_STATE(3945)] = 108467, + [SMALL_STATE(3946)] = 108481, + [SMALL_STATE(3947)] = 108495, + [SMALL_STATE(3948)] = 108509, + [SMALL_STATE(3949)] = 108523, + [SMALL_STATE(3950)] = 108537, + [SMALL_STATE(3951)] = 108551, + [SMALL_STATE(3952)] = 108565, + [SMALL_STATE(3953)] = 108579, + [SMALL_STATE(3954)] = 108593, + [SMALL_STATE(3955)] = 108607, + [SMALL_STATE(3956)] = 108621, + [SMALL_STATE(3957)] = 108635, + [SMALL_STATE(3958)] = 108649, + [SMALL_STATE(3959)] = 108663, + [SMALL_STATE(3960)] = 108677, + [SMALL_STATE(3961)] = 108691, + [SMALL_STATE(3962)] = 108705, + [SMALL_STATE(3963)] = 108719, + [SMALL_STATE(3964)] = 108733, + [SMALL_STATE(3965)] = 108747, + [SMALL_STATE(3966)] = 108761, + [SMALL_STATE(3967)] = 108775, + [SMALL_STATE(3968)] = 108789, + [SMALL_STATE(3969)] = 108803, + [SMALL_STATE(3970)] = 108817, + [SMALL_STATE(3971)] = 108831, + [SMALL_STATE(3972)] = 108845, + [SMALL_STATE(3973)] = 108859, + [SMALL_STATE(3974)] = 108873, + [SMALL_STATE(3975)] = 108887, + [SMALL_STATE(3976)] = 108901, + [SMALL_STATE(3977)] = 108915, + [SMALL_STATE(3978)] = 108929, + [SMALL_STATE(3979)] = 108943, + [SMALL_STATE(3980)] = 108957, + [SMALL_STATE(3981)] = 108971, + [SMALL_STATE(3982)] = 108985, + [SMALL_STATE(3983)] = 108999, + [SMALL_STATE(3984)] = 109013, + [SMALL_STATE(3985)] = 109027, + [SMALL_STATE(3986)] = 109041, + [SMALL_STATE(3987)] = 109055, + [SMALL_STATE(3988)] = 109069, + [SMALL_STATE(3989)] = 109083, + [SMALL_STATE(3990)] = 109097, + [SMALL_STATE(3991)] = 109111, + [SMALL_STATE(3992)] = 109125, + [SMALL_STATE(3993)] = 109139, + [SMALL_STATE(3994)] = 109153, + [SMALL_STATE(3995)] = 109167, + [SMALL_STATE(3996)] = 109181, + [SMALL_STATE(3997)] = 109195, + [SMALL_STATE(3998)] = 109209, + [SMALL_STATE(3999)] = 109223, + [SMALL_STATE(4000)] = 109237, + [SMALL_STATE(4001)] = 109251, + [SMALL_STATE(4002)] = 109265, + [SMALL_STATE(4003)] = 109279, + [SMALL_STATE(4004)] = 109293, + [SMALL_STATE(4005)] = 109307, + [SMALL_STATE(4006)] = 109321, + [SMALL_STATE(4007)] = 109335, + [SMALL_STATE(4008)] = 109349, + [SMALL_STATE(4009)] = 109363, + [SMALL_STATE(4010)] = 109377, + [SMALL_STATE(4011)] = 109391, + [SMALL_STATE(4012)] = 109405, + [SMALL_STATE(4013)] = 109419, + [SMALL_STATE(4014)] = 109433, + [SMALL_STATE(4015)] = 109447, + [SMALL_STATE(4016)] = 109461, + [SMALL_STATE(4017)] = 109475, + [SMALL_STATE(4018)] = 109489, + [SMALL_STATE(4019)] = 109503, + [SMALL_STATE(4020)] = 109517, + [SMALL_STATE(4021)] = 109531, + [SMALL_STATE(4022)] = 109545, + [SMALL_STATE(4023)] = 109559, + [SMALL_STATE(4024)] = 109573, + [SMALL_STATE(4025)] = 109587, + [SMALL_STATE(4026)] = 109601, + [SMALL_STATE(4027)] = 109615, + [SMALL_STATE(4028)] = 109629, + [SMALL_STATE(4029)] = 109643, + [SMALL_STATE(4030)] = 109657, + [SMALL_STATE(4031)] = 109671, + [SMALL_STATE(4032)] = 109685, + [SMALL_STATE(4033)] = 109699, + [SMALL_STATE(4034)] = 109713, + [SMALL_STATE(4035)] = 109727, + [SMALL_STATE(4036)] = 109741, + [SMALL_STATE(4037)] = 109755, + [SMALL_STATE(4038)] = 109769, + [SMALL_STATE(4039)] = 109783, + [SMALL_STATE(4040)] = 109797, + [SMALL_STATE(4041)] = 109811, + [SMALL_STATE(4042)] = 109825, + [SMALL_STATE(4043)] = 109839, + [SMALL_STATE(4044)] = 109853, + [SMALL_STATE(4045)] = 109867, + [SMALL_STATE(4046)] = 109881, + [SMALL_STATE(4047)] = 109895, + [SMALL_STATE(4048)] = 109909, + [SMALL_STATE(4049)] = 109923, + [SMALL_STATE(4050)] = 109937, + [SMALL_STATE(4051)] = 109951, + [SMALL_STATE(4052)] = 109965, + [SMALL_STATE(4053)] = 109979, + [SMALL_STATE(4054)] = 109993, + [SMALL_STATE(4055)] = 110007, + [SMALL_STATE(4056)] = 110021, + [SMALL_STATE(4057)] = 110035, + [SMALL_STATE(4058)] = 110049, + [SMALL_STATE(4059)] = 110063, + [SMALL_STATE(4060)] = 110077, + [SMALL_STATE(4061)] = 110091, + [SMALL_STATE(4062)] = 110105, + [SMALL_STATE(4063)] = 110119, + [SMALL_STATE(4064)] = 110133, + [SMALL_STATE(4065)] = 110147, + [SMALL_STATE(4066)] = 110161, + [SMALL_STATE(4067)] = 110175, + [SMALL_STATE(4068)] = 110189, + [SMALL_STATE(4069)] = 110203, + [SMALL_STATE(4070)] = 110217, + [SMALL_STATE(4071)] = 110231, + [SMALL_STATE(4072)] = 110245, + [SMALL_STATE(4073)] = 110259, + [SMALL_STATE(4074)] = 110273, + [SMALL_STATE(4075)] = 110287, + [SMALL_STATE(4076)] = 110301, + [SMALL_STATE(4077)] = 110315, + [SMALL_STATE(4078)] = 110329, + [SMALL_STATE(4079)] = 110343, + [SMALL_STATE(4080)] = 110357, + [SMALL_STATE(4081)] = 110371, + [SMALL_STATE(4082)] = 110385, + [SMALL_STATE(4083)] = 110399, + [SMALL_STATE(4084)] = 110413, + [SMALL_STATE(4085)] = 110427, + [SMALL_STATE(4086)] = 110441, + [SMALL_STATE(4087)] = 110455, + [SMALL_STATE(4088)] = 110469, + [SMALL_STATE(4089)] = 110483, + [SMALL_STATE(4090)] = 110497, + [SMALL_STATE(4091)] = 110511, + [SMALL_STATE(4092)] = 110525, + [SMALL_STATE(4093)] = 110539, + [SMALL_STATE(4094)] = 110553, + [SMALL_STATE(4095)] = 110567, + [SMALL_STATE(4096)] = 110581, + [SMALL_STATE(4097)] = 110595, + [SMALL_STATE(4098)] = 110609, + [SMALL_STATE(4099)] = 110623, + [SMALL_STATE(4100)] = 110637, + [SMALL_STATE(4101)] = 110651, + [SMALL_STATE(4102)] = 110665, + [SMALL_STATE(4103)] = 110679, + [SMALL_STATE(4104)] = 110693, + [SMALL_STATE(4105)] = 110707, + [SMALL_STATE(4106)] = 110721, + [SMALL_STATE(4107)] = 110735, + [SMALL_STATE(4108)] = 110749, + [SMALL_STATE(4109)] = 110763, + [SMALL_STATE(4110)] = 110777, + [SMALL_STATE(4111)] = 110791, + [SMALL_STATE(4112)] = 110805, + [SMALL_STATE(4113)] = 110819, + [SMALL_STATE(4114)] = 110833, + [SMALL_STATE(4115)] = 110847, + [SMALL_STATE(4116)] = 110861, + [SMALL_STATE(4117)] = 110875, + [SMALL_STATE(4118)] = 110889, + [SMALL_STATE(4119)] = 110903, + [SMALL_STATE(4120)] = 110917, + [SMALL_STATE(4121)] = 110931, + [SMALL_STATE(4122)] = 110945, + [SMALL_STATE(4123)] = 110959, + [SMALL_STATE(4124)] = 110973, + [SMALL_STATE(4125)] = 110987, + [SMALL_STATE(4126)] = 111001, + [SMALL_STATE(4127)] = 111015, + [SMALL_STATE(4128)] = 111029, + [SMALL_STATE(4129)] = 111043, + [SMALL_STATE(4130)] = 111057, + [SMALL_STATE(4131)] = 111071, + [SMALL_STATE(4132)] = 111085, + [SMALL_STATE(4133)] = 111099, + [SMALL_STATE(4134)] = 111113, + [SMALL_STATE(4135)] = 111127, + [SMALL_STATE(4136)] = 111141, + [SMALL_STATE(4137)] = 111155, + [SMALL_STATE(4138)] = 111169, + [SMALL_STATE(4139)] = 111183, + [SMALL_STATE(4140)] = 111197, + [SMALL_STATE(4141)] = 111211, + [SMALL_STATE(4142)] = 111225, + [SMALL_STATE(4143)] = 111239, + [SMALL_STATE(4144)] = 111253, + [SMALL_STATE(4145)] = 111267, + [SMALL_STATE(4146)] = 111281, + [SMALL_STATE(4147)] = 111295, + [SMALL_STATE(4148)] = 111309, + [SMALL_STATE(4149)] = 111323, + [SMALL_STATE(4150)] = 111337, + [SMALL_STATE(4151)] = 111351, + [SMALL_STATE(4152)] = 111365, + [SMALL_STATE(4153)] = 111379, + [SMALL_STATE(4154)] = 111393, + [SMALL_STATE(4155)] = 111407, + [SMALL_STATE(4156)] = 111421, + [SMALL_STATE(4157)] = 111435, + [SMALL_STATE(4158)] = 111449, + [SMALL_STATE(4159)] = 111463, + [SMALL_STATE(4160)] = 111477, + [SMALL_STATE(4161)] = 111491, + [SMALL_STATE(4162)] = 111505, + [SMALL_STATE(4163)] = 111519, + [SMALL_STATE(4164)] = 111533, + [SMALL_STATE(4165)] = 111547, + [SMALL_STATE(4166)] = 111561, + [SMALL_STATE(4167)] = 111575, + [SMALL_STATE(4168)] = 111589, + [SMALL_STATE(4169)] = 111603, + [SMALL_STATE(4170)] = 111617, + [SMALL_STATE(4171)] = 111631, + [SMALL_STATE(4172)] = 111645, + [SMALL_STATE(4173)] = 111659, + [SMALL_STATE(4174)] = 111673, + [SMALL_STATE(4175)] = 111687, + [SMALL_STATE(4176)] = 111701, + [SMALL_STATE(4177)] = 111715, + [SMALL_STATE(4178)] = 111729, + [SMALL_STATE(4179)] = 111743, + [SMALL_STATE(4180)] = 111757, + [SMALL_STATE(4181)] = 111771, + [SMALL_STATE(4182)] = 111785, + [SMALL_STATE(4183)] = 111799, + [SMALL_STATE(4184)] = 111813, + [SMALL_STATE(4185)] = 111827, + [SMALL_STATE(4186)] = 111841, + [SMALL_STATE(4187)] = 111855, + [SMALL_STATE(4188)] = 111869, + [SMALL_STATE(4189)] = 111883, + [SMALL_STATE(4190)] = 111897, + [SMALL_STATE(4191)] = 111911, + [SMALL_STATE(4192)] = 111925, + [SMALL_STATE(4193)] = 111939, + [SMALL_STATE(4194)] = 111953, + [SMALL_STATE(4195)] = 111967, + [SMALL_STATE(4196)] = 111981, + [SMALL_STATE(4197)] = 111995, + [SMALL_STATE(4198)] = 112009, + [SMALL_STATE(4199)] = 112023, + [SMALL_STATE(4200)] = 112037, + [SMALL_STATE(4201)] = 112051, + [SMALL_STATE(4202)] = 112065, + [SMALL_STATE(4203)] = 112079, + [SMALL_STATE(4204)] = 112093, + [SMALL_STATE(4205)] = 112107, + [SMALL_STATE(4206)] = 112121, + [SMALL_STATE(4207)] = 112135, + [SMALL_STATE(4208)] = 112149, + [SMALL_STATE(4209)] = 112163, + [SMALL_STATE(4210)] = 112177, + [SMALL_STATE(4211)] = 112191, + [SMALL_STATE(4212)] = 112205, + [SMALL_STATE(4213)] = 112219, + [SMALL_STATE(4214)] = 112233, + [SMALL_STATE(4215)] = 112247, + [SMALL_STATE(4216)] = 112261, + [SMALL_STATE(4217)] = 112275, + [SMALL_STATE(4218)] = 112289, + [SMALL_STATE(4219)] = 112303, + [SMALL_STATE(4220)] = 112317, + [SMALL_STATE(4221)] = 112331, + [SMALL_STATE(4222)] = 112345, + [SMALL_STATE(4223)] = 112359, + [SMALL_STATE(4224)] = 112373, + [SMALL_STATE(4225)] = 112387, + [SMALL_STATE(4226)] = 112401, + [SMALL_STATE(4227)] = 112415, + [SMALL_STATE(4228)] = 112429, + [SMALL_STATE(4229)] = 112443, + [SMALL_STATE(4230)] = 112457, + [SMALL_STATE(4231)] = 112471, + [SMALL_STATE(4232)] = 112485, + [SMALL_STATE(4233)] = 112499, + [SMALL_STATE(4234)] = 112513, + [SMALL_STATE(4235)] = 112527, + [SMALL_STATE(4236)] = 112541, + [SMALL_STATE(4237)] = 112555, + [SMALL_STATE(4238)] = 112569, + [SMALL_STATE(4239)] = 112583, + [SMALL_STATE(4240)] = 112597, + [SMALL_STATE(4241)] = 112611, + [SMALL_STATE(4242)] = 112625, + [SMALL_STATE(4243)] = 112639, + [SMALL_STATE(4244)] = 112653, + [SMALL_STATE(4245)] = 112667, + [SMALL_STATE(4246)] = 112681, + [SMALL_STATE(4247)] = 112695, + [SMALL_STATE(4248)] = 112709, + [SMALL_STATE(4249)] = 112723, + [SMALL_STATE(4250)] = 112737, + [SMALL_STATE(4251)] = 112751, + [SMALL_STATE(4252)] = 112765, + [SMALL_STATE(4253)] = 112779, + [SMALL_STATE(4254)] = 112793, + [SMALL_STATE(4255)] = 112807, + [SMALL_STATE(4256)] = 112821, + [SMALL_STATE(4257)] = 112835, + [SMALL_STATE(4258)] = 112849, + [SMALL_STATE(4259)] = 112863, + [SMALL_STATE(4260)] = 112877, + [SMALL_STATE(4261)] = 112891, + [SMALL_STATE(4262)] = 112905, + [SMALL_STATE(4263)] = 112919, + [SMALL_STATE(4264)] = 112933, + [SMALL_STATE(4265)] = 112947, + [SMALL_STATE(4266)] = 112961, + [SMALL_STATE(4267)] = 112975, + [SMALL_STATE(4268)] = 112989, + [SMALL_STATE(4269)] = 113003, + [SMALL_STATE(4270)] = 113017, + [SMALL_STATE(4271)] = 113031, + [SMALL_STATE(4272)] = 113045, + [SMALL_STATE(4273)] = 113059, + [SMALL_STATE(4274)] = 113073, + [SMALL_STATE(4275)] = 113087, + [SMALL_STATE(4276)] = 113101, + [SMALL_STATE(4277)] = 113115, + [SMALL_STATE(4278)] = 113129, + [SMALL_STATE(4279)] = 113143, + [SMALL_STATE(4280)] = 113157, + [SMALL_STATE(4281)] = 113171, + [SMALL_STATE(4282)] = 113185, + [SMALL_STATE(4283)] = 113199, + [SMALL_STATE(4284)] = 113213, + [SMALL_STATE(4285)] = 113227, + [SMALL_STATE(4286)] = 113241, + [SMALL_STATE(4287)] = 113255, + [SMALL_STATE(4288)] = 113269, + [SMALL_STATE(4289)] = 113283, + [SMALL_STATE(4290)] = 113297, + [SMALL_STATE(4291)] = 113311, + [SMALL_STATE(4292)] = 113325, + [SMALL_STATE(4293)] = 113339, + [SMALL_STATE(4294)] = 113353, + [SMALL_STATE(4295)] = 113367, + [SMALL_STATE(4296)] = 113381, + [SMALL_STATE(4297)] = 113395, + [SMALL_STATE(4298)] = 113409, + [SMALL_STATE(4299)] = 113423, + [SMALL_STATE(4300)] = 113437, + [SMALL_STATE(4301)] = 113441, + [SMALL_STATE(4302)] = 113445, + [SMALL_STATE(4303)] = 113449, + [SMALL_STATE(4304)] = 113453, + [SMALL_STATE(4305)] = 113457, + [SMALL_STATE(4306)] = 113461, }; 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(2327), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [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(1564), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(685), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2732), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(158), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(290), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(249), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3375), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3452), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3592), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1101), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3638), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3191), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(153), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(866), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2827), - [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(3685), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3621), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2101), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1919), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2141), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3160), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2638), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2731), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2055), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3167), + [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1808), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(930), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3845), + [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3642), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4101), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2407), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2412), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4265), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1527), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(989), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(960), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3023), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(342), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3944), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2301), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2769), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3996), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4067), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1846), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2387), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2223), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2444), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3655), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3226), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3174), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4048), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2338), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3973), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [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(249), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [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(3503), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [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(4235), + [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(1844), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), [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(150), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(151), [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(71), [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(72), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3540), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(147), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(154), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [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(151), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4092), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2987), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4138), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), [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(103), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3585), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(147), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1100), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(158), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(144), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(12), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(290), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1545), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(249), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(810), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(877), - [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(39), - [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3375), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3592), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2574), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2603), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1409), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1508), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(843), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1060), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(187), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2598), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(365), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3001), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2842), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3160), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2599), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1491), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2731), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1424), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1544), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3460), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1544), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3543), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [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(177), - [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(177), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 208), - [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 208), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(103), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3015), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(4078), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(108), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(4256), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2987), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(4138), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1246), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(192), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(139), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(10), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(337), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1808), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(245), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(930), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(975), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(38), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(3845), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT_REPEAT(4079), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(4101), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(2908), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(39), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(3154), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1578), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1734), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(963), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1215), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(186), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(3229), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(357), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(42), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(3541), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(3158), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(187), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(37), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(3655), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(3234), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1693), + [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(3174), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1769), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1805), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(4048), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1805), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(3973), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [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 = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 221), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 221), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), @@ -198845,3181 +224013,3653 @@ static const TSParseActionEntry ts_parse_actions[] = { [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(158), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(290), - [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(249), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3375), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3592), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2574), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2603), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1060), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), - [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(365), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), - [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2842), - [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3160), - [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2731), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 34), - [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 34), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [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_expression_statement, 1, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 153), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 153), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 32), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 32), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 254), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 254), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 83), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 83), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 125), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 125), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 39), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 39), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1246), + [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1808), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(930), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3845), + [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4101), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2908), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3154), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), + [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(963), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1215), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3229), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(357), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3541), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3158), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3655), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3234), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3174), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4048), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3973), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 34), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 34), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 39), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 39), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 267), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 267), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 83), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 83), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 32), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 32), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 125), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 125), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 153), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 153), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 182), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 182), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2097), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(493), - [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2343), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(839), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3065), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1116), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), - [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), - [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2705), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2465), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2743), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), - [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3624), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2380), + [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(913), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3762), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(938), + [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(950), + [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3514), + [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1529), + [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), + [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3864), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3027), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2448), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(954), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(951), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2755), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2950), + [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2719), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3072), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3072), + [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4117), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 188), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 188), [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 126), [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 126), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 196), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 196), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 251), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 251), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 252), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 252), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 206), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 206), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 253), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 253), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 121), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 121), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 138), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 138), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 215), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 215), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 257), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 257), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 220), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 220), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 222), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 222), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 260), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 260), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 261), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 261), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 232), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 232), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 233), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 233), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 265), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 265), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 266), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 266), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 273), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 273), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 274), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 274), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 243), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 243), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 275), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 275), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 263), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 263), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 276), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 276), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 245), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 245), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 246), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 246), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 277), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 277), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 278), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 278), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 251), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 251), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 279), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 279), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 280), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 280), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 282), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 282), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 283), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 283), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 267), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 267), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 284), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 284), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 285), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 285), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 286), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 286), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 277), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 277), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 287), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 287), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 280), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 280), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 289), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 289), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 139), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 139), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 290), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 290), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 291), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 291), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 287), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 287), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 292), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 292), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 121), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 121), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 140), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 140), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 118), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 118), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 148), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 148), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 149), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 149), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 143), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 143), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 145), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 145), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 143), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 143), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 150), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 150), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 145), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 145), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 143), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 143), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 145), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 145), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 151), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 151), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 33), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 33), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 121), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 121), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 122), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 122), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 123), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 123), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 81), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 81), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 128), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 128), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 86), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 86), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 122), - [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 122), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 165), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 165), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 166), - [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 166), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 37), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 37), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), - [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 128), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 128), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 174), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 174), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), - [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 38), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 38), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), - [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 131), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 131), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 179), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 179), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 180), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 180), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 40), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 40), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 184), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 184), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 80), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 80), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 189), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 189), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 138), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 138), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 139), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 139), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 140), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 140), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 192), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 192), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 33), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 33), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 33), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 33), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 33), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 33), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 248), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 248), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 199), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 199), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 200), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 200), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 148), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 148), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 184), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 184), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 126), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 126), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 194), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 194), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 145), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 145), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 194), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 194), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 202), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 202), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 250), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 250), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 194), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 194), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 203), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 203), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 206), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 206), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 207), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 207), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 133), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 133), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 118), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 118), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 212), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 212), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 33), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 33), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 215), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 215), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 79), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 79), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 81), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 81), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 216), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 216), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 82), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 82), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 166), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 166), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 218), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 218), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 86), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 86), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 89), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 89), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 174), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 174), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 33), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 33), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 79), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 79), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 79), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 79), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 79), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 79), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 226), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 226), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), - [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3391), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1114), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), - [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3370), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), - [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2316), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), - [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3409), - [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3381), - [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(855), - [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3679), - [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3122), - [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3680), - [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), - [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), - [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3125), - [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2279), - [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1930), - [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2142), - [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), - [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), - [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 121), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 121), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 229), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 229), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 212), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 212), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 190), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 190), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 232), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 232), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 233), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 233), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 234), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 234), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 241), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 241), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 199), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 199), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 242), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 242), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 243), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 243), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), - [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 145), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 145), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 202), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 202), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 245), - [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 245), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), - [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 246), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 246), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 247), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 247), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 190), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 190), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 182), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 182), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 182), - [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 126), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 126), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 126), - [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), - [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), - [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 135), - [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 135), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 154), - [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 154), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), - [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), - [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 211), - [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 211), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 185), - [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 185), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), - [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), - [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), - [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), - [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), - [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 41), - [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 41), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 158), - [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 158), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 161), - [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 161), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), - [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), - [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), - [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 90), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 90), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), - [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), - [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), - [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 134), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 134), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2789), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [4171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3246), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 164), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 182), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 256), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 197), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 213), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 146), - [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 126), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 126), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [4588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 35), - [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), - [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [5062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [5065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2288), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 36), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [5483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 230), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), - [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 264), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 264), - [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 36), - [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 186), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), - [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 230), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 186), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 119), - [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), - [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2025), - [5749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(257), - [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 155), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 209), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [6002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [6010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(827), - [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), - [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [6017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 118), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), - [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 187), - [6168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 187), SHIFT_REPEAT(791), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 188), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [6211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 156), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), - [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2308), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 210), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 172), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(292), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [6423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2230), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), - [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3194), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), - [6556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(948), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 84), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 231), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 127), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [6684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2130), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2274), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 255), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 40), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 212), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [6800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 159), - [6802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 85), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 160), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [6942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 38), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [7034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), - [7036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [7058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [7062] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [7108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 183), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [7154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [7200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), - [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3754), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), + [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3171), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4209), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3905), + [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2804), + [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), + [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2610), + [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4135), + [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3865), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3599), + [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(988), + [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(959), + [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4158), + [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2301), + [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3254), + [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4159), + [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4163), + [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4164), + [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3257), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2611), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2213), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2414), + [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4179), + [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2321), + [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4179), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 196), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 196), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 7, 0, 261), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 7, 0, 261), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 151), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 151), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 211), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 211), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 261), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 261), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 272), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 272), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 7, 0, 261), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 7, 0, 261), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 273), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 273), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 274), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 274), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 275), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 275), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 276), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 276), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 277), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 277), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 228), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 228), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 280), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 280), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 233), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 233), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 281), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 281), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 282), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 282), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 283), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 283), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 284), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 284), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 285), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 285), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 214), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 214), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 286), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 286), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 245), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 245), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 246), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 246), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 288), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 288), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 248), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 248), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 289), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 289), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 290), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 290), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 291), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 291), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 292), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 292), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 293), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 293), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 250), + [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 250), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 294), + [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 294), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 252), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 252), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 295), + [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 295), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 296), + [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 296), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 297), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 297), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 256), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 256), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 298), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 298), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 286), + [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 286), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 299), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 299), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 215), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 215), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 258), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 258), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 259), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 259), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 300), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 300), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 301), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 301), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 264), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 264), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 302), + [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 302), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 303), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 303), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 304), + [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 304), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 305), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 305), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 306), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 306), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 307), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 307), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 308), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 308), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 309), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 309), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 310), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 310), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 311), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 311), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 312), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 312), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 8, 0, 211), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 8, 0, 211), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 272), + [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 272), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 313), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 313), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 314), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 314), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 315), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 315), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 316), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 316), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 317), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 317), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 8, 0, 318), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 8, 0, 318), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 319), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 319), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 320), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 320), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 276), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 276), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 321), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 321), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 216), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 216), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 322), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 322), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 323), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 323), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 290), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 290), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 324), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 324), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 292), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 292), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 325), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 325), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 296), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 296), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 326), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 326), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 300), + [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 300), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 327), + [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 327), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 328), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 328), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 303), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 303), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 329), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 329), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 330), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 330), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 331), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 331), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 332), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 332), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 305), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 305), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 333), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 333), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 307), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 307), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 334), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 334), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 335), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 335), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 336), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 336), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 337), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 337), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 338), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 338), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 309), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 309), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 339), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 339), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 311), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 311), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 340), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 340), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 9, 0, 323), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 9, 0, 323), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 341), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 341), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 109), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 109), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 313), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 313), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 314), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 314), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 342), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 342), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 9, 0, 343), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 9, 0, 343), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 319), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 319), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 344), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 344), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 345), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 345), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 346), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 346), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 217), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 217), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 209), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 209), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 347), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 347), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 348), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 348), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 327), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 327), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 349), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 349), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 10, 0, 335), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 10, 0, 335), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 10, 0, 350), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 10, 0, 350), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 10, 0, 337), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 10, 0, 337), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 10, 0, 351), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 10, 0, 351), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 10, 0, 342), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 10, 0, 342), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 352), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 352), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 353), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 353), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 345), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 345), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 354), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 354), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 11, 0, 355), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 11, 0, 355), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 11, 0, 356), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 11, 0, 356), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 11, 0, 352), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 11, 0, 352), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 11, 0, 357), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 11, 0, 357), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 211), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 211), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 151), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 151), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 209), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 209), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 218), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 218), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 79), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 79), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 81), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 81), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 82), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 82), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 211), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 211), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 86), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 86), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), + [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), + [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 89), + [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 89), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 209), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 209), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 211), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 211), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 219), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 219), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 33), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 33), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 79), + [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 79), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 220), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 220), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 79), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 79), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 79), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 79), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 212), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 212), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 213), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 213), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 102), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 102), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 4, 0, 0), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 4, 0, 0), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 4, 0, 105), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 4, 0, 105), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 225), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 225), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 228), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 228), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 229), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 229), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 172), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 172), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 230), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 230), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 174), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 174), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 231), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 231), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 232), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 232), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 233), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 233), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 234), + [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 234), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 180), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 180), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 33), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 33), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 182), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 182), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 239), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 239), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 240), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 240), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 241), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 241), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 118), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 118), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 155), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 155), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 37), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 37), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 121), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 121), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 122), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 122), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 242), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 242), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 123), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 123), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 81), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 81), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 225), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 225), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 128), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 128), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 86), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 86), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 38), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 38), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 126), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 126), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 133), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 133), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 196), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 196), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 197), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 197), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 245), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 245), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 118), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 118), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 246), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 246), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 247), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 247), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 33), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 33), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 121), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 121), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 248), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 248), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 249), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 249), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 121), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 121), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 138), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 138), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 139), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 139), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 121), + [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 121), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 140), + [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 140), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), + [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), + [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), + [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 40), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 40), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 148), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 148), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 250), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 250), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 251), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 251), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 149), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 149), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 143), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 143), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 145), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 145), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 143), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 143), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 150), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 150), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 145), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 145), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 252), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 252), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 253), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 253), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 143), + [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 143), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 145), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 145), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 151), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 151), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), + [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 254), + [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 254), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 205), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 205), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 154), + [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 154), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 33), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 33), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 102), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 102), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 155), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 155), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 150), + [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 150), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 109), + [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 109), + [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 255), + [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 255), + [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 156), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 156), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 151), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 151), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 5, 0, 152), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 5, 0, 152), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 5, 0, 157), + [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 5, 0, 157), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 158), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 158), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 151), + [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 151), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 256), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 256), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 151), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 151), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 5, 0, 159), + [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 5, 0, 159), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 257), + [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 257), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 145), + [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 145), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 33), + [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 33), + [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), + [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 33), + [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 33), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), + [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 208), + [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 208), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 258), + [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 258), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 259), + [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 259), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 260), + [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 260), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 261), + [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 261), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 262), + [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 262), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 263), + [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 263), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 264), + [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 264), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 265), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 265), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 122), + [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 122), + [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 171), + [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 171), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 172), + [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 172), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 173), + [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 173), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 174), + [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 174), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), + [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), + [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), + [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), + [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 128), + [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 128), + [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 179), + [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 179), + [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 180), + [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 180), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 181), + [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 181), + [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 182), + [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 182), + [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 183), + [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 183), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 131), + [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 131), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 184), + [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 184), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 185), + [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 185), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 212), + [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 212), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 186), + [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 186), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 187), + [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 187), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 266), + [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 266), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 150), + [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 150), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 268), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 268), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 190), + [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 190), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 269), + [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 269), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 80), + [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 80), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), + [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 138), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 138), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 197), + [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 197), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 139), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 139), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 140), + [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 140), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 198), + [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 198), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 199), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 199), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 200), + [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 200), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 201), + [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 201), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 202), + [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 202), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 205), + [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 205), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 206), + [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 206), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 148), + [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 148), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 270), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 270), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 207), + [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 207), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 190), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 190), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 7, 0, 214), + [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 7, 0, 214), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 215), + [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 215), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 200), + [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 200), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), + [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 145), + [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 145), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 200), + [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 200), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 271), + [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 271), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 208), + [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 208), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 200), + [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 200), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 242), + [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 242), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 209), + [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 209), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 210), + [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 210), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 211), + [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 211), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), + [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 1, 0, 0), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 1, 0, 0), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [3830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3864), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 126), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 126), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 126), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT_REPEAT(4248), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 188), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 188), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 188), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), + [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), + [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), + [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), + [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), + [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), + [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), + [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), + [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 160), + [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 160), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), + [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), + [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 191), + [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 191), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 135), + [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 135), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), + [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), + [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 164), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 164), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 167), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 167), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 224), + [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 224), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 168), + [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 168), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 169), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 169), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), + [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), + [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 41), + [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 41), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 90), + [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 90), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [4602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 134), + [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 134), + [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3042), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3828), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 126), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 146), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 170), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 188), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 203), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 204), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 226), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 227), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 126), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 279), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [5178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT_REPEAT(4162), + [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [5213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [5215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [5291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [5324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [5335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [5338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [5341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [5344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [5346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 35), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), + [5392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), + [5416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), + [5422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [5438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [5446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), + [5448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), + [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), + [5452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), + [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), + [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), + [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), + [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), + [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), + [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), + [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), + [5552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), + [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), + [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), + [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [5637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(80), + [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [5642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [5645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [5692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(978), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2804), + [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2609), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 36), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [6053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [6074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [6121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [6128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [6218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2295), + [6297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(259), + [6300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [6314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [6343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), + [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 243), + [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 192), + [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), + [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 243), + [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), + [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 287), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [6411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 119), + [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 36), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 287), + [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 192), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [6468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 161), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 118), + [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [6584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), + [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 222), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(961), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [6635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [6739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(214), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [6834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [6836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3534), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [6917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 127), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [6921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 223), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [6935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [6937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2401), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [6946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [6954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [6964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [6980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [6984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [7004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [7020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 193), + [7022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 193), SHIFT_REPEAT(908), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [7039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 194), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [7047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [7059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [7061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2607), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [7120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [7122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [7124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [7126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [7141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [7145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2531), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [7170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [7182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [7219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [7239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [7245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 244), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 84), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [7305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [7309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(924), + [7312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1023), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [7329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [7335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [7355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(459), + [7358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), + [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 162), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 163), + [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [7368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2709), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [7395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(276), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 278), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [7424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3667), + [7427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), + [7439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3349), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [7480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2600), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 40), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [7533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 178), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [7609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [7623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 38), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [7679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [7743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 3, 0, 0), + [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [7783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 225), + [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), + [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 165), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 166), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 85), + [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [7963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 189), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [8127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [8133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [8253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [8319] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [8329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [8461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [8463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [8465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [8467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [8469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [8471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [8473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), }; enum ts_external_scanner_symbol_identifiers { @@ -202080,13 +227720,13 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_float_literal] = true, }, [7] = { - [ts_external_token__line_doc_content] = true, + [ts_external_token__raw_string_literal_end] = true, }, [8] = { - [ts_external_token__raw_string_literal_end] = true, + [ts_external_token_raw_string_literal_content] = true, }, [9] = { - [ts_external_token_raw_string_literal_content] = true, + [ts_external_token__line_doc_content] = true, }, }; @@ -202117,6 +227757,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_rust(void) { .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, + .supertype_count = SUPERTYPE_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], @@ -202127,6 +227768,9 @@ TS_PUBLIC const TSLanguage *tree_sitter_rust(void) { .field_names = ts_field_names, .field_map_slices = ts_field_map_slices, .field_map_entries = ts_field_map_entries, + .supertype_map_slices = ts_supertype_map_slices, + .supertype_map_entries = ts_supertype_map_entries, + .supertype_symbols = ts_supertype_symbols, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, @@ -202145,6 +227789,13 @@ TS_PUBLIC const TSLanguage *tree_sitter_rust(void) { tree_sitter_rust_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, + .name = "rust", + .max_reserved_word_set_size = 0, + .metadata = { + .major_version = 0, + .minor_version = 23, + .patch_version = 2, + }, }; return &language; }